我得到了这些海盗人物。正如你所看到的,它有点乱,因为y轴变量的长度是不同的。 如何将此图对齐? 这是我的代码。
for idx, feature in enumerate(['LANE_CODE', 'MOVEMENT_CODE','AREA_DAMAGED_CODE_MAIN']):
plt.figure(figsize = (10,5))
ax = sns.countplot(y = feature, hue = "cluster", data= analyzing_df)
plt.show()
答案 0 :(得分:0)
你不能将“图”对齐,因为你有3个不同的数字。
你可以
fig,axes = plt.subplots(nrows=3, figsize = (10,15))
for idx, feature in enumerate([...]):
sns.countplot(y = feature, hue = "cluster", data= analyzing_df, ax=axes[idx])
plt.show()
使用
%%HTML
<style>
img {float: right !important;}
</style>
将单元格的输出对齐。