home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gp371os2.zip / demo / timedat.dem < prev    next >
Text File  |  1999-10-11  |  482b  |  18 lines

  1. set title "Fsteps plot\nwith date and time as x-values"
  2. set data style fsteps
  3. set xlabel "Date\nTime"
  4. set timefmt "%d/%m/%y\t%H%M"
  5. set yrange [ 0 : ]
  6. set xdata time
  7. set xrange [ "1/6/93":"1/11/93" ]
  8. set ylabel "Consentration\nmg/l"
  9. set format x "%d/%m\n%H:%M"
  10. set grid
  11. set key left
  12. plot 'timedat.dat' using 1:3 t '' \
  13. , 'timedat.dat' using 1:3 t 'Total P' with points \
  14. , 'timedat.dat' using 1:4 t '' \
  15. , 'timedat.dat' using 1:4 t 'PO4' with points 
  16. pause -1 'Test <Return> '
  17. reset
  18.