Comment on A Better Default Colormap for MatplotlibComments−stared10yWhen it comes to plot colors in matplotlib, it's why I start withimport seaborn as snsto get a nice plot theme, not "good old 90s" style. See: https://speakerdeck.com/pmigdal/teaching-machine-learning?sl...−serialx10yThis, changes everything.The theme seaborn uses is actually a direct clone from ggplot2 from R−stared10yYes. Though, I think that 'whitegrid' is a cleaner theme (if there were axes).For ggplot theme, in matplotlib there isplt.style.use('ggplot')(see also: http://pandas.pydata.org/pandas-docs/stable/visualization.ht...).−gammarator10y'ticks' plus sns.despine() is my favorite.
Comments
When it comes to plot colors in matplotlib, it's why I start with
import seaborn as sns
to get a nice plot theme, not "good old 90s" style. See: https://speakerdeck.com/pmigdal/teaching-machine-learning?sl...
This, changes everything.
The theme seaborn uses is actually a direct clone from ggplot2 from R
Yes. Though, I think that 'whitegrid' is a cleaner theme (if there were axes).
For ggplot theme, in matplotlib there is
plt.style.use('ggplot')
(see also: http://pandas.pydata.org/pandas-docs/stable/visualization.ht...).
'ticks' plus sns.despine() is my favorite.