Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e5be0f7

Browse files
author
Pastafarianist
authored
Mention Jupyter in matplotlib usage
1 parent 8a27054 commit e5be0f7

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tutorials/introductory/usage.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -296,11 +296,13 @@ def my_plotter(ax, data1, data2, param_dict):
296296
# to the "backend" and many new users are confused by this term.
297297
# matplotlib targets many different use cases and output formats. Some
298298
# people use matplotlib interactively from the python shell and have
299-
# plotting windows pop up when they type commands. Some people embed
300-
# matplotlib into graphical user interfaces like wxpython or pygtk to
301-
# build rich applications. Others use matplotlib in batch scripts to
302-
# generate postscript images from some numerical simulations, and still
303-
# others in web application servers to dynamically serve up graphs.
299+
# plotting windows pop up when they type commands. Some people run
300+
# Jupyter notebooks and draw inline plots for quick data analysis.
301+
# Others embed matplotlib into graphical user interfaces like wxpython
302+
# or pygtk to build rich applications. Some people use matplotlib in
303+
# batch scripts to generate postscript images from numerical
304+
# simulations, and still others run web application servers to
305+
# dynamically serve up graphs.
304306
#
305307
# To support all of these use cases, matplotlib can target different
306308
# outputs, and each of these capabilities is called a backend; the

0 commit comments

Comments
 (0)