lightkurve.MPLSTYLE#
- lightkurve.MPLSTYLE = '/Users/tapritc2/tessgi/lightkurve_party/lightkurve/src/lightkurve/data/lightkurve.mplstyle'#
Lightkurve’s stylesheet for matplotlib.
It is useful for users who create their own figures and want their figures following Lightkurve’s style.
Examples
Create a scatter plot with a custom size using Lightkurve’s style.
>>> with plt.style.context(MPLSTYLE): >>> ax = plt.figure(figsize=(6, 3)).gca() >>> lc.scatter(ax=ax)