How can I use seaborn without changing the matplotlib defaults?

后端 未结 2 1463
终归单人心
终归单人心 2020-11-27 14:18

I am trying to use seaborn, because of its distplot function. But I prefer the default matplotlib settings. When I import seaborn, it changes automatically the appearance of

2条回答
  •  温柔的废话
    2020-11-27 14:47

    According to documentation reset_orig restore all RC params to original settings:

    import seaborn as sns
    # reset RC params to original
    sns.reset_orig()
    

提交回复
热议问题