Gnuplot: Plotting graphs

From Define Wiki
Revision as of 10:30, 30 July 2012 by David (talk | contribs) (Created page with "Simple example plotting the performance of gromacs. Two files each with two columns (step / ns/day). Commands below plot the performance over execution time. <syntaxhighlight> gnuplot> ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Simple example plotting the performance of gromacs. Two files each with two columns (step / ns/day). Commands below plot the performance over execution time.

gnuplot> title "AMD 6272 ns/day"
gnuplot> set title "Hinditron Gromacs Tests" 
gnuplot> set xlabel "Step"
gnuplot> set ylabel "ns/day"
gnuplot> plot 'amd.gunplot.dat' using 1:2 title "AMD 6274", './intel.gnuplot.dat' using 1:2 title "Intel E5-2670"