Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tutorials/introductory/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
notebook. This has important implications for interactivity. For inline plotting, commands in
cells below the cell that outputs a plot will not affect the plot. For example,
changing the color map is not possible from cells below the cell that creates a plot.
However, for other backends, such as qt4, that open a separate window,
However, for other backends, such as Qt5, that open a separate window,
cells below those that create the plot will change the plot - it is a
live object in memory.

Expand Down Expand Up @@ -266,7 +266,7 @@
imgplot = plt.imshow(img, interpolation="nearest")

###############################################################################
# and bucibic:
# and bicubic:

imgplot = plt.imshow(img, interpolation="bicubic")

Expand Down