|
From: sad f. <lal...@ya...> - 2007-04-07 02:26:58
|
My data look like this :
# title1 title2 title3
title4 time title6
1 22 333
4444 55.0123 666666
"time" in coloumn 5 is in seconds.
I would like to plot my data into a very simple graph..
axis-x ~ column 5 ("time")
axis-y ~ column 6
Question :
How do i set my axis-x ("time") from the fifth column?
Below is the script that i use.
Can anyone tell me what command to set the axis-x from the fifth column5
("time")?
gnuplot> set xdata time
gnuplot> set timefmt "%s"
gnuplot> plot [*:*] [0:30] "abc.out" using 1:7 with linespoints title "xyz"
--
View this message in context: http://www.nabble.com/how-to-set-axis-x-data-from-fifth-column-in-a-table--tf3539583.html#a9880742
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|