Basic Beginners' Introduction To Plotting in Python: Sarah Blyth July 23, 2009
Basic Beginners' Introduction To Plotting in Python: Sarah Blyth July 23, 2009
Sarah Blyth
1 Introduction
Welcome to a very short introduction on getting started with plotting in Python!
I would highly recommend that you refer to the official Matplotlib documentation
which can be found at:
http://matplotlib.sourceforge.net/contents.html.
You can also download the Matplotlib manual from the Astronomy Department Vula
repository (faster) or directly from the Matplotlib website (slower).
There are all sorts of examples and further very important and useful details
listed and explained there. The aim of this document is merely to start you off on
Day 1 - how to make a plot from scratch.
• Python
• Numpy - this is the module which does most array and mathematical manip-
ulation
You can check these are installed by going to a terminal and typing:
$ python
>>> import numpy as np
>>> import pylab as pl
If you get no errors, then they are installed. If they are not installed, speak to the
department SysAdmin to help you install them.
You can also check which versions you have installed by doing:
1
$ python
>>> import numpy
>>> numpy.__version__
’1.2.1’
Typing:
’0.98.5.2’
3 Basic plots
Two basic plot types which you will find are used very often are (x,y) line and scatter
plots and histograms. Some code for making these two types of plots is included in
this section.
****************************************************
# lineplot.py
import numpy as np
import pylab as pl
2
Figure 1: Line plot made with lineplot.py
****************************************************
# scatterplot.py
import numpy as np
import pylab as pl
3
Figure 2: Plot made with scatterplot.py
pl.plot(x, y)
to
pl.plot(x, y, ’r’)
This should give you the same line as before, but it should now be red.
The other colours you can easily use are:
character color
b blue
g green
r red
c cyan
m magenta
y yellow
k black
w white
4
3.2.2 Changing the line style
You can also change the style of the line e.g. to be dotted, dashed, etc. Try:
plot(x,y, ’--’)
plot(x,y, ’b*’)
This should give you blue star-shaped markers. The table below gives some more
options for setting marker types:
You can change the x and y ranges displayed on your plot by:
pl.xlim(x_low, x_high)
pl.ylim(y_low, y_high)
5
****************************************************
#lineplotAxis.py
import numpy as np
import pylab as pl
****************************************************
3.2.5 Plotting more than one plot on the same set of axes
It is very easy to plot more than one plot on the same axes. You just need to define
the x and y arrays for each of your plots and then:
****************************************************
#lineplot2Plots.py
import numpy as np
import pylab as pl
6
Figure 3: Plot made with lineplotAxis.py
x2 = [1, 2, 4, 6, 8]
y2 = [2, 4, 8, 12, 16]
7
Figure 4: Plot made with lineplot2Plots.py
The first parameter is a list of the plots you want labelled. The second parameter is
the list of labels. The third parameter is where you would like matplotlib to place
your legend. Other optiions are:
‘upper right’, ‘upper left’, ‘center’, ‘lower left’, ‘lower right’.
‘best’ means that matplotlib will try to choose the position on your plot where the
legend will interfere least with what is plotted (i.e. avoid overlaps etc.).
Have a look at Fig. 5 which is made using the macro below:
****************************************************
# lineplotFigLegend.py
import numpy as np
import pylab as pl
x2 = [1, 2, 4, 6, 8]
y2 = [2, 4, 8, 12, 16]
8
# use pylab to plot x and y : Give your plots names
plot1 = pl.plot(x1, y1, ’r’)
plot2 = pl.plot(x2, y2, ’go’)
# make legend
pl.legend([plot1, plot2], (’red line’, ’green circles’), ’best’, numpoints=1)
3.3 Histograms
Histograms are very often used in science applications and it is highly likely that
you will need to plot them at some point! They are very useful to plot distributions
9
e.g. what is the distribution of galaxy velocities in my sample? etc. In Matplotlib
you use the hist command to make a histogram. Take a look at the short macro
below which makes the plot shown in Fig. 6:
****************************************************
# histplot.py
import numpy as np
import pylab as pl
pl.show()
****************************************************
If you don’t want to see the black outlines between the bars in the histogram,
try:
pl.hist(data, histtype=’stepfilled’)
10
3.3.1 Setting the width of the histogram bins manually
You can also set the width of your histogram bins yourself. Try adding the following
lines to the macro histplot.py and you should get the plot shown in Fig. 8.
fig1 = pl.figure(1)
pl.subplot(211)
subplot(211) means that you will have a figure with 2 rows, 1 column, and you’re
going to draw in the top plot as shown in Fig. 9. If you want to plot something in
the lower section (as shown in Fig. 10), then you do:
pl.subplot(212)
You can play around with plotting a variety of layouts. For example, Fig. 11 is
created using the following commands:
11
Figure 9: Showing subplot(211) Figure 10: Showing subplot(212)
f1 = pl.figure(1)
pl.subplot(221)
pl.subplot(222)
pl.subplot(212)
You can play with the sizes of the margins and gaps between the subplots using the
command:
12
5 Plotting data contained in files
Often you will have data in ascii (text) format which you will need to plot in some
way. In this section we will briefly discuss how to open, read from, and write to,
files.
****************************************************
# fakedata.txt
0 0
1 1
2 4
3 9
4 16
5 25
6 36
7 49
8 64
9 81
0 0
1 1
2 4
3 9
4 16
5 25
6 36
7 49
8 64
9 81
****************************************************
We can read this into a numpy 2D array and plot the second column against the
first using the macro readFileAndPlot.py and shown in Fig. 12:
****************************************************
#readFileAndPlot.py
import numpy as np
13
import pylab as pl
pl.show()
****************************************************
****************************************************
# writeToFile.py
14
import numpy as np
print ’x = ’, x
print ’y = ’, y
You should then check that the file you created looks as you would expect! A
quick way to do this on the Linux/Unix terminal command line is:
$ more testdata.txt
This command will print out the contents of your file to the screen and you will
quickly be able to check if things look right!
15