plot_settings.py 578 B

12345678910111213141516
  1. from matplotlib import cm
  2. import matplotlib.pyplot as plt
  3. from itertools import cycle
  4. import matplotlib.legend as mlegend
  5. from matplotlib.legend_handler import HandlerBase
  6. # all the common imports and settings for plotting
  7. plt.rcParams['text.usetex'] = True
  8. plt.rcParams["font.family"] = "Times New Roman"
  9. COLOR_LIST = [cm.cividis(0.15), cm.autumn(0.5), cm.summer(0),
  10. cm.gist_heat(0.5), cm.cool(0.65), cm.gray(0.5), cm.winter(0.2)]
  11. plt.rcParams['axes.prop_cycle'] = plt.cycler(color=COLOR_LIST)
  12. COLORS = cycle(plt.rcParams['axes.prop_cycle'].by_key()['color'])