gpt4 book ai didi

python - 带子图的猫图有限制吗?

转载 作者:行者123 更新时间:2023-12-01 00:48:06 26 4
gpt4 key购买 nike

Seaborn 的 catplot 似乎无法与 plt.subplots() 一起使用。我不确定这里有什么问题,但我似乎无法将它们并排放置。

#Graph 1
plt.subplot(121)
sns.catplot(x="HouseStyle",y="SalePrice",data=df,kind="swarm")

#Graph 2
plt.subplot(122)
sns.catplot(x="LandContour",y="SalePrice",data=df,kind="swarm")

输出: Weird no output Weird no output2 Finally output

最佳答案

Catplot 是图形级函数,但不能使用坐标轴。尝试使用 stripplot 代替。

fig, axs = plt.subplots (1, 2, figsize=(25, 15))
sns.stripplot(x='category_col', y='y_col_1', data=df, ax=axs[0])
sns.stripplot(x='category_col', y='y_col_2', data=df, ax=axs[1])

关于python - 带子图的猫图有限制吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56788245/

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