We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9724f3d commit0abbcf6Copy full SHA for 0abbcf6
doc/users/whats_new/2015-05_interactive_OO.rst
@@ -15,7 +15,8 @@ displayhook in the standard python REPL to automatically call
15
``plt.draw_all`` just before control is returned to the REPL. This ensures
16
that the draw command is deferred and only called once.
17
18
-The upshot of this is that for interactive backends (including notebook)
+The upshot of this is that for interactive backends (including
19
+``%matplotlib notebook``) in interactive mode (with ``plt.ion()``)
20
21
.. ipython :: python
22
@@ -30,8 +31,8 @@ The upshot of this is that for interactive backends (including notebook)
30
31
ln.set_color('g')
32
33
-will automatically update the plot to be green.Subsequent
34
-modifications to the `Artist` objects will do likewise.
+will automatically update the plot to be green.Any subsequent
35
+modifications to the ``Artist`` objects will do likewise.
36
37
This is the first step of a larger consolidation and simplification of
38
the pyplot internals.