因此,目前我有一个scatterplot
和一个kdeplot
,我使用seaborn库进行了规划。
这是我绘制图表的方式:
# plot a graph to see the zipcodes vs the density
plt.figure(figsize=(16,8))
sns.kdeplot(king['zipcode'], shade=True, legend=False)
plt.xlabel('Zipcode')
plt.ylabel('Density')
plt.figure(figsize=(16,8))
sns.scatterplot(king['zipcode'],king['price'])
但是当我尝试做一个子图时,我的kdeplot似乎不见了: 我尝试过这样的方式:
f, axarr = plt.subplots(2, sharex=True)
sns.kdeplot(king['zipcode'], shade=True, legend=False)
sns.scatterplot(king['zipcode'],king['price'])
是否可以在子图中正确渲染两个图形?
答案 0 :(得分:-1)