other:python:matplotlib_by_jyp
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revisionNext revisionBoth sides next revision | ||
other:python:matplotlib_by_jyp [2020/03/31 12:49] – [Misc Matplotlib tricks] Improved jypeter | other:python:matplotlib_by_jyp [2020/03/31 16:26] – [Starting (and more) with matplotlib] Improved offline plot creation jypeter | ||
---|---|---|---|
Line 104: | Line 104: | ||
- you can use **transparency** to partially show what is behind some markers or other objects. Many //artists// accept the '' | - you can use **transparency** to partially show what is behind some markers or other objects. Many //artists// accept the '' | ||
- sometimes the results of the python/ | - sometimes the results of the python/ | ||
- | - if your matplotlib is executed in a batch script, it will generate an error when trying to create ('' | + | - if your matplotlib is executed in a batch script, it will generate an error when trying to create ('' |
- | * Check how you can [[https:// | + | |
- the documentation may mention [[http:// | - the documentation may mention [[http:// | ||
- Read the [[https:// | - Read the [[https:// | ||
Line 186: | Line 185: | ||
===== Misc Matplotlib tricks ===== | ===== Misc Matplotlib tricks ===== | ||
+ | |||
+ | ==== Creating a plot offline ==== | ||
+ | |||
+ | You may need to create a plot offline when your network connection is not good enough, you don't have an X server running to display the plot (possibly because the script is running on a cluster), etc... This is easily done with the following code: | ||
+ | |||
+ | < | ||
+ | offline_plot = True | ||
+ | |||
+ | import matplotlib as mpl | ||
+ | if offline_plot: | ||
+ | # Define the graphic back-end BEFORE importing pyplot | ||
+ | mpl.use(' | ||
+ | | ||
+ | # Import the rest of the matplotlib based modules | ||
+ | import matplotlib.pyplot as plt | ||
+ | |||
+ | [ ...your actual code... ] | ||
+ | |||
+ | # Done at last! Save the result | ||
+ | my_page.savefig(out_name, | ||
+ | |||
+ | if not offline_plot: | ||
+ | # Enter the interactive mode to display the plot | ||
+ | plt.show()</ | ||
+ | |||
+ | Note: see also [[https:// | ||
==== Specifying the background color of a plot ==== | ==== Specifying the background color of a plot ==== |
other/python/matplotlib_by_jyp.txt · Last modified: 2023/10/26 10:39 by jypeter