|
From: Hans-Bernhard B. <br...@ph...> - 2005-05-24 15:07:33
|
Matt Kopeck wrote: > # Sessions | Time > ----------------------- > 15 | 07:00 > 29 | 08:00 [...] > Is this possible to plot this with the first line being "# Sessions | > Time", the "------------------" line, and the "|" between the number and > the time? It would be a bit more reliable if the second line also started with a '#', but yes, this can be plotted. set timefmt '%H:%M' set xdata time plot 'file' using 3:1 gnuplot knows to ignore lines that don't look like valid data. > 15 07:00 > 29 08:00 > 65 09:00 Same way, except that it'd be "using 2:1" |