Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

(ax=self.canv.axes ,style="ro--")

plot(x, y)        # plot x and y using default line style and color
>>> plot(x, y, 'bo')  # plot x and y using blue circle markers
>>> plot(y)           # plot y using x as index array 0..N-1
>>> plot(y, 'r+')     # ditto, but with red plusses
Source by matplotlib.org #
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
3+8 =