Remove arg-highlight on calculate
[reinteract.git] / examples / plot2.rws
blobf85c3eb30fde0d4a76502e125d30ac4508aa60af
1 import replot
2 from numpy import *
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
8 # matplotlib API
9 #   http://matplotlib.sourceforge.net/api/axes_api.html
10 p = replot.Axes()
11 p.plot(x, sin(x), 'bo')
12 p.plot(x, cos(x))
13 p.set_xlabel("X axis")
14 p.set_ylabel("Y Axis")
17 p.set_xlim(0, 2*pi)
20 help(p.set_xlim)