seaborn在次要情节中产生单独的数字

时间:2015-11-25 20:06:15

标签: python matplotlib seaborn

我试图用seaborn制作一个2x1的子情节图:

data = pandas.DataFrame({"x": [1, 2, 4],
                        "y": [10,20,40],
                        "s": [0.01,0.1,1.0]})

plt.figure()
plt.subplot(2, 1, 1)
sns.pointplot(x="x", y="y", data=data)
plt.errorbar(np.arange(len(data["x"])), data["y"], yerr=data["s"])
plt.subplot(2, 1, 2)
sns.factorplot(x="x", y="y", data=data)
plt.show()

它产生两个独立的数字而不是一个带有两个子图的单个数字。为什么它会这样做?如何为多个单独的子图调用seaborn?

我试着查看下面引用的帖子但是我看不到即使首先调用factorplot也可以添加子图。有人能举例说明吗?这会有所帮助。我的尝试:

data = pandas.DataFrame({"x": [1, 2, 4],
                        "y": [10,20,40],
                        "s": [0.01,0.1,1.0]})

fig = plt.figure()
sns.pointplot(x="x", y="y", data=data)
ax = sns.factorplot(x="x", y="y", data=data)
fig.add_subplot(212, axes=ax)
plt.errorbar(np.arange(len(data["x"])), data["y"], yerr=data["s"])
plt.show()

1 个答案:

答案 0 :(得分:14)

问题是factorplot创建了一个新的FacetGrid实例(后者又创建了自己的图),它将应用绘图函数(默认情况下为pointplot)。因此,如果你想要的只是pointplot,那么只使用pointplot而不是factorplot是有意义的。

如果您真的想要,无论出于何种原因,请告诉factorplot哪个Axes执行其绘图,以下是一个黑客攻击。正如@mwaskom在评论中指出的那样,这不是受支持的行为,因此虽然它现在可能有效,但未来可能不会。

您可以告诉factorplot使用Axes kwarg在给定的ax上进行投标,并将其传递给matplotlib,因此链接的答案可以回答您的查询。但是,由于factorplot调用,它仍然会创建第二个数字,但该数字将为空。这里有一个解决方法,可以在调用plt.show()

之前关闭那个额外的数字

例如:

import matplotlib.pyplot as plt
import pandas
import seaborn as sns
import numpy as np

data = pandas.DataFrame({"x": [1, 2, 4],
                        "y": [10,20,40],
                        "s": [10,10,10]}) # I increased your errors so I could see them

# Create a figure instance, and the two subplots
fig = plt.figure()
ax1 = fig.add_subplot(211)
ax2 = fig.add_subplot(212)

# Tell pointplot to plot on ax1 with the ax argument
sns.pointplot(x="x", y="y", data=data, ax=ax1)

# Plot the errorbar directly on ax1
ax1.errorbar(np.arange(len(data["x"])), data["y"], yerr=data["s"])

# Tell the factorplot to plot on ax2 with the ax argument
# Also store the FacetGrid in 'g'
g=sns.factorplot(x="x", y="y", data=data, ax=ax2)

# Close the FacetGrid figure which we don't need (g.fig)
plt.close(g.fig)

plt.show()

enter image description here