我正在使用seaborn根据this example创建情节。
import numpy as np
import pandas as pd
import seaborn as sns
sns.set(style="white")
rs = np.random.RandomState(5)
mean = [0, 0]
cov = [(1, .5), (.5, 1)]
x1, x2 = rs.multivariate_normal(mean, cov, 500).T
x1 = pd.Series(x1, name="$X_1$")
x2 = pd.Series(x2, name="$X_2$")
g = sns.jointplot(x1, x2, kind="kde", size=7, space=0)
但是,当我将代码的最后一行更改为
g = sns.jointplot(x1, x2, kind="kde", size=7, space=0, xlim=(-5,5), ylim=(-5,5))
背景颜色未正确更改:
如何固定背景色,使其充满整个图样?
最佳答案
您需要告诉基础函数(kdeplot
)将其KDE估计进一步扩展。这是通过cut
参数完成的,该参数是KDE带宽的函数。它的默认值为3,并且没有明显的方法可以确切地告诉您需要如何设置它,但是尝试并找到有效的值并不难。使用jointplot
时,您需要在joint_kws
字典中传递它,以便将其发送到适当的绘图功能。
sns.jointplot(x1, x2, kind="kde", size=7, space=0,
joint_kws={"cut": 10},
xlim=(-5,5), ylim=(-5,5))
瞧:
关于python - 将背景色图的大小设置为Seajointplot中的轴大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25937624/