Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e24f90 commit e31c214Copy full SHA for e31c214
1 file changed
doc/users/pyplot_tutorial.rst
@@ -75,7 +75,7 @@ several ways to set line properties
75
one line so it is a list of length 1. I use tuple unpacking in the
76
``line, = plot(x, y, 'o')`` to get the first element of the list::
77
78
- line, = plt.plot(x, y, '-')
+ line, = plt.plot(x, y, '-')
79
line.set_antialiased(False) # turn off antialising
80
81
* Use the :func:`~matplotlib.pyplot.setp` command. The example below
0 commit comments