|
From: <HBB...@t-...> - 2007-04-11 20:55:08
|
seb_kramm wrote: > From the demos, it seems that it can only build that type of chart with multicolumn > data files. And what I have is several 2 columns data files, produced by an app, with > a parameter setting that changes between them. [...] > Is there a way I can build an bar chart (histogram) out of these files ? But you can quite easily combine your three files into a single one, if you've collected some needful tools about your work place. Using the usual Unix tools, e.g., it would be as simple as: plot '< paste file1 file2 file3' For more complex, use 'join' instead of 'paste', or write yourself a little data processing script. And it may be preferrable to do it once, instead of each time you need a fresh plot: ! paste file1 file2 file2 > files_1_2_3 |