October 2018
Beginner to intermediate
676 pages
18h 30m
English
We can also set the property cycler in the global parameters rcParams file, which then becomes the default cycler for a given session.
Here is the code to achieve this:
import matplotlib as mplfrom cycler import cyclermpl.rc('axes', prop_cycle=cycler('color', ['r', 'orange', 'c', 'y']) +\ cycler('hatch', ['x', 'xx-', '+O.', '*']))
Read now
Unlock full access