|
From: Thomas S. <t.s...@fz...> - 2008-10-15 18:22:30
|
> However, since I do generate the input datafile myself > I could change to another format. > Do you have any suggestions of a better way of doing this? > I want to label the time axis in elapsed hours in a reasonably > common format. > I think "24:00" is more intuitive than "24.0" or "24". you could write the time values as hours in floating point format: e.g. '59.99139' instead of '59:59:29' and then plot with: set format x "%.0f:00" set xtics 6 plot 'test.dat' w l -- View this message in context: http://www.nabble.com/Plotting-a-time-series-%28elapsed-time%29-with-time-values-%3E-24-hours-tp19975946p19999320.html Sent from the Gnuplot - User mailing list archive at Nabble.com. |