8000 Update old refs from IPython Notebook to Jupyter Notebook. · matplotlib/matplotlib@160e084 · GitHub
[go: up one dir, main page]

Skip to content

Commit 160e084

Browse files
committed
Update old refs from IPython Notebook to Jupyter Notebook.
1 parent 20c3061 commit 160e084

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tutorials/introductory/images.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
1313
First, let's start IPython. It is a most excellent enhancement to the
1414
standard Python prompt, and it ties in especially well with
15-
Matplotlib. Start IPython either at a shell, or the IPython Notebook now.
15+
Matplotlib. Start IPython either directly at a shell, or with the Jupyter
16+
Notebook (where IPython as a running kernel).
1617
1718
With IPython started, we now need to connect to a GUI event loop. This
1819
tells IPython where (and how) to display plots. To connect to a GUI
@@ -21,7 +22,7 @@
2122
event loops
2223
<https://ipython.readthedocs.io/en/stable/interactive/reference.html#gui-event-loop-support>`_.
2324
24-
If you're using IPython Notebook, the same commands are available, but
25+
If you're using Jupyter Notebook, the same commands are available, but
2526
people commonly use a specific argument to the %matplotlib magic:
2627
2728
.. sourcecode:: ipython
@@ -157,7 +158,7 @@
157158
#
158159
# .. note::
159160
#
160-
# However, remember that in the IPython notebook with the inline backend,
161+
# However, remember that in the Jupyter notebook with the inline backend,
161162
# you can't make changes to plots that have already been rendered. If you
162163
# create imgplot here in one cell, you cannot call set_cmap() on it in a later
163164
# cell and expect the earlier plot to change. Make sure that you enter these
@@ -208,7 +209,7 @@
208209
# imshow. You could also do this by calling the
209210
# :meth:`~matplotlib.image.Image.set_clim` method of the image plot
210211
# object, but make sure that you do so in the same cell as your plot
211-
# command when working with the IPython Notebook - it will not change
212+
# command when working with the Jupyter Notebook - it will not change
212213
# plots from earlier cells.
213214
#
214215
# You can specify the clim in the call to ``plot``.

0 commit comments

Comments
 (0)
0