gpt4 book ai didi

python - 避免seaborn影响matplotlib图

转载 作者:太空宇宙 更新时间:2023-11-03 21:13:30 24 4
gpt4 key购买 nike

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

How can I use seaborn without changing the matplotlib defaults?

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

我想在使用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 plot

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

以及如果使用所示代码它会如何变化: mpl with sns in front

我如何阻止这种行为,避免seaborn影响其他地 block ?

最佳答案

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

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

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

关于python - 避免seaborn影响matplotlib图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54885636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com