停止seaborn改变matplotlib绘图风格

问题描述 投票:0回答:1

我已经找到了一个涉及类似主题的条目,但该建议在这里不起作用。

如何在不更改 matplotlib 默认值的情况下使用 seaborn?

如果我错过了一些东西,我很感激每个链接。

在使用 seaborn 创建绘图后,我想使用 matplotlib 创建绘图。然而,seaborn的设置似乎会影响matplotlib的外观(我意识到seaborn是matplotlib的扩展)。即使我清除、关闭情节等,也会发生这种情况。

    sns.reset_orig()
    plt.clf()
    plt.close()

完整示例代码:

import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np
# data
df = pd.DataFrame(np.array([[1, 1], [2, 2], [3, 3]]),columns=['x', 'y'])

###### seaborn plot #######
fig=sns.JointGrid(x=df['x'],
                  y=df['y'],
                  )
#fill with scatter and distribution plot
fig = fig.plot_joint(plt.scatter, color="b")                            
fig = fig.plot_marginals(sns.distplot, kde=False, color="b")

#axis labels
fig.set_axis_labels('x','y')        

#set title
plt.subplots_adjust(top=0.92)
title='some title'
fig.fig.suptitle(title)

#clear and close figure
sns.reset_orig()
plt.clf()
plt.close()        

###### matplotlib plot #######
#define data to plot
x = df['x']
y = df['y']

#create figure and plot
fig_mpl, ax = plt.subplots()
ax.plot(x,y,'.')
ax.grid(True)
ax.set_xlabel('x')
ax.set_ylabel('y')
title='some title'
ax.set_title(title)
plt.close()

seaborn 的情节看起来总是一样的: seaborn情节

但是 matplotlib 图的外观有所不同。正常的,没有在前面创建seaborn情节: mpl 绘图正常

如果使用所示代码,它会如何变化: mpl 前面有 sns

我该如何阻止这种行为,避免seaborn影响其他情节?

python matplotlib plot seaborn
1个回答
3
投票

当您导入seaborn时,默认样式会更改。

您可以使用

plt.style.use
命令更改 matplotlib 应用于绘图的样式。

要获取可用样式的列表,您可以使用

plt.style.available
。要改回经典的 matplotlib 样式,您需要使用
plt.style.use('classic')

© www.soinside.com 2019 - 2024. All rights reserved.