4 x = linspace(0, 2*pi, 100)
6 # In addition to using plot() to create simple figures,
7 # you can also build up more complex plots using the
9 # http://matplotlib.sourceforge.net/api/axes_api.html
11 p.plot(x, sin(x), 'bo')
13 p.set_xlabel("X axis")
14 p.set_ylabel("Y Axis")