mpl_custom_basic
- popurri.plotutils.mpl_custom_basic()
Customize basic appearance: - ticks in all axis - tick direction in, size major 6 minor 3, width 1.2 all - axes line width 1.2 - marker size 7 and line width 2 - custom colorcycle: black, orange, blue…
To activate just call this function:
` import plotutils plotutils.mpl_custom_basic() `Can call different styles to control different aspects of the plot:
` plotutils.mpl_custom_basic() plotutils.mpl_size_same() `To return to matplotlib defaults run:
` import matplotlib as mpl mpl.rcdefaults() `