Guest User

Untitled

a guest
Jun 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. set terminal postscript
  2. set output "plot.ps"
  3. # Gnuplot script file for plotting data in file "force.dat"
  4. # This file is called force.p
  5. set autoscale # scale axes automatically
  6. unset log # remove any log-scaling
  7. unset label # remove any previous labels
  8. set xtic auto # set xtics automatically
  9. set ytic auto # set ytics automatically
  10. set title "Time (last 4 minutes) vs. Temperature"
  11. set xlabel "Time from the last sample (Minutes)"
  12. set ylabel "Temperature (Celcius)"
  13. set xr [-5:1]
  14. set yr [85:110]
  15. # plot "data.dat" using 1:2 title 'Water' with linespoints , "data.dat" using 1:3 title 'Sodium Chloride' with linespoints ,"data.dat" using 1:4 title 'Sucrose' with linespoints ,"data.dat" using 1:5 title 'Magnesium sulfate heptahydrate' with linespoints ,"data.dat" using 1:6 title 'Unknown' with linespoints
  16.  
  17. plot "data.dat" using 1:2 title 'Water' with linespoints
Add Comment
Please, Sign In to add comment