Gnuplot

From csml-wiki.northwestern.edu
Jump to navigation Jump to search

Overview

Gnuplot is a program for plotting scientific data. The resulting figures can be of very high quality, provided that attention is paid to detail. Impressive examples can be found on the gnuplot homepage. This page does not provide a detailed manual for gnuplot, but instead focuses on specific aspects typically encountered in the CSML when creating figures for manuscripts.

PDF terminal

The version of gnuplot installed on all local machines has been compiled with PDFlib, which makes it possible to directly produce PDF images. Such figures offer the important advantage that they are fully scalable and yet have a small file size. Choose this terminal via

 set term pdf enh [additional options]
 set output "filename.pdf"

Sometimes, fine-tuning of the resulting PDF figure is most conveniently done in Adobe Illustrator: each component of the figure will appear as an object that you can move, resize, etc.

Encapsulated PostScript terminal

Often when the output of a gnupot script requires further formatting it is easiest to do so using the Encapsulated PostScript (EPS) terminal. This is essentially the same as the PostScript terminal except that it contains some extra lines that allow it to interface with other programs. Invoke the EPS terminal via

 set term post eps enh color [additional options]
 set output "filename.eps"

For possible options see the instructions for the PostScript terminal on this page. One advantage of .eps files is that they can be edited directly in a text editor. See below for an example. Once the eps file has been formatted properly, you can convert it to PDF format using epstopdf. Executing the command

 epstopdf filename.eps

will create the PDF file filename.pdf.

Formatting labels

When choosing for instance an axis label via

 set xlabel "textlabel"

it is straightforward to use simple text, however often special formatting is necessary. A brief set of rules follows. For italic script place

 {/Helvetica-Oblique [text]}

inside the quotes, where [text] is what you wish to have in italics. All variables should be in italics. For greek letters use

 {/Symbol [text]}

where [text] is any character off of the list linked here. For italic Greek characters use

 {/Symbol-Oblique [text]}

In emacs, one can use the shorthand M-x ho for Helvetica-Oblique and M-x so for Symbol-Oblique by inserting the following lines into your .emacs file.

 (fset 'ho
    (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ("{/Helvetica-Oblique }^[OD" 0 "%d")) arg)))
 (fset 'so
    (lambda (&optional arg) "Keyboard macro." (interactive "p") (kmacro-exec-ring-item (quote ("{/Symbol-Oblique }^[OD" 0 "%d")) arg)))

More instructions are available here.

Sample usage script

The following is a sample gnuplot script. Everything in braces should be replaced. Again, see the gnuplot homepage or appropriate tutorial for more comprehensive usage.

set term post eps enh color {dashed|solid} lw 2
set output "filename.eps"
set encoding iso_8859_1
set key top right
set format x "%3.2f" #format tics to have max 3 digits and
set format y "%3.2f" #max 2 digits after the decimal
set xlabel "{xLabel}"
set ylabel "{yLabel}"
set xrange [{xmin}:{xmax}]
set yrange [{ymin}:{ymax}]
plot "datafile.dat" using 1:2:3 with errorbars

General usage tips

  • Journals typically prefer Helvetica as the typeface for figures.
  • The origin should be marked with '0', not '0.0'. If you produce a figure directly in PDF format, this can be fixed in Adobe Illustrator. However, it is easier to use the EPS terminal and then edit the resulting .eps file using sed:
    sed -i 's/(0.0)/(0)/g' filename.eps
    
  • Gnuplot accepts abbreviated commands: you just have to enter enough characters to uniquely resolve a command. For example, it is acceptable to write
    plot "file.dat" us 1:2:3 w err
    

    instead of

    plot "file.dat" using 1:2:3 with errorbars
    
  • Gnuplot can plot compressed data files by sending the data through a pipe:
    plot '< gzip -dc data.gz'
    
  • To plot the average of columns that are spread over multiple files (but have the same number of lines in each file), take advantage of the paste command in Unix to combine them in single file. For example, if three files each contain two columns (x y), use
    paste file1.dat file2.dat file3.dat > combined.dat
    

    and then within gnuplot

    plot "combined.dat" us 1:(($2+$4+$6)/3)
    

    This can even be done on the fly by using a pipe:

    plot '< paste file1.dat file2.dat file3.dat' using 1:(($2+$4+$6)/3)
    
  • Gnuplot can histogram data without the need for preprocessing:
    binwidth=[binwidth]
    bin(x,width)=width*floor(x/width) + binwidth/2.0
    set boxwidth binwidth
    plot "file.dat" using (bin($[colnum],binwidth)):(1.0) smooth freq with boxes
    

    where the user should replace [binwidth] with the desired bin width and [colnum] with the column number of the data to be binned.

Executable version for OS X

Precompiled versions of Gnuplot are provided here.