是否可以将条形图堆叠在countplot
中,所以每个条形图包含两种颜色。
到目前为止,我的代码:
fig, axes = plt.subplots(4, 4, figsize=(15,13), sharex=True)
axes = axes.flatten()
object_bol = df.dtypes == 'object'
for ax, catplot in zip(axes, df.dtypes[object_bol].index):
sns.countplot(y=catplot, data=df, ax=ax, hue = "Attrition")
plt.tight_layout()
plt.show()
下面是我当前的可视化效果以及我要实现的堆叠图。
答案 0 :(得分:0)
plt.bar
到 You can pass keyword arguments到seaborn.countplot
。
因此,您可以使用bottom
参数。例如(使用plt.bar
):
x = np.arange(0,11,1)
y = x**2
plt.bar(x, y)
plt.bar(x, y, bottom=y)
plt.xlabel('x')
plt.ylabel('y')
礼物: