Open genkioffice opened 5 years ago
To fix KeyError in prettyplotlib/colors.py, I have modified following;
prettyplotlib/colors.py
Use axes.prop_cycle instead of axes.color_cycle since rcParams of matplotlib requires prop_cycle.
axes.prop_cycle
axes.color_cycle
Use cycler library to be consistent with the matplotlibrc official template. https://github.com/matplotlib/matplotlib/blob/master/matplotlibrc.template
Use hex_colors instead of mpl_colors to be consistent with the matplotlibrc official template too.
hex_colors
mpl_colors
To fix KeyError in
prettyplotlib/colors.py
, I have modified following;Use
axes.prop_cycle
instead ofaxes.color_cycle
since rcParams of matplotlib requires prop_cycle.Use cycler library to be consistent with the matplotlibrc official template. https://github.com/matplotlib/matplotlib/blob/master/matplotlibrc.template
Use
hex_colors
instead ofmpl_colors
to be consistent with the matplotlibrc official template too.