http://gnuplot.sourceforge.net/demo_4.3/ - Page Layout/multiplot layout Gnuplot - Logscale > set log x (set X axis to log scale) > plot "simpdata" notitle with yerrorbars, "simpdata" with lines, "simpdata2" with lines > plot "../Workshop/simpdata" notitle with yerrorbars, "../Workshop/simpdata" with lines, "../Workshop/simpdata2" with lines > set xlabel "X Axis" // Add a label for the X Axis > set ylabel "Y Axis" // Add a label for the Y Axis > set title "TINYPLOT Title" // Add a title for the overall plot > set key 2.25,3.5 // Choose a location for the Key. > set xtics 1.5,0.5,3 // Control the start, end and increment of the X tics. > set ytics -1,1.0,4 // Control the start, end and increment of the Y tics > plot [1.5:3] "tiny2col.dat" with lines // Plot the data file and connect the points > set terminal postscript color solid > set output "gnuplotexample.ps" > plot "tiny2col.dat" with lines