- Optification is done by auto builder now
[gnuplot] / demo / timedat.dem
1 #
2 # $Id: timedat.dem,v 1.7 2003/10/28 05:35:54 sfeam Exp $
3 #
4
5 set title "Fsteps plot\nwith date and time as x-values"
6 set style data fsteps
7 set xlabel "Date\nTime"
8 set timefmt "%d/%m/%y\t%H%M"
9 set yrange [ 0 : ]
10 set xdata time
11 set xrange [ "1/6/93":"1/11/93" ]
12 set ylabel "Concentration\nmg/l"
13 set format x "%d/%m\n%H:%M"
14 set grid
15 set key left
16 plot 'timedat.dat' using 1:3 t '', \
17      'timedat.dat' using 1:3 t 'Total P' with points, \
18      'timedat.dat' using 1:4 t '', \
19      'timedat.dat' using 1:4 t 'PO4' with points 
20 pause -1 "Hit return to continue"
21
22 reset
23