matplotlib 如何更改子图的刻度标签的旋转

j2datikz  于 2023-04-07  发布在  其他
关注(0)|答案(1)|浏览(148)

我想改变xtick的旋转,但是我以x和ytick旋转结束。我如何只旋转xtick?
下面是我的代码:

# Plot mit Sidestepped 0/1

sns.set(style="darkgrid")

fig, ax = plt.subplots(1,2, figsize=(14,5))

for i in range(len(ax)):
    ax[i].tick_params(labelsize=15)
    ax[i].set_xlabel('label', fontsize=17, position=(.5,20))
    ax[i].set_ylabel('label', fontsize=17)

sns.countplot(x="page_name", hue="successful", data=mainDf, ax=ax[0]); 
sns.countplot(x="industry", hue="successful", data=mainDf, ax=ax[1]);

fig.suptitle('Categorical Features Count', position=(.5,1.1), fontsize=20)
ax[0].set_title('Type by Industry', fontsize=18)
ax[0].set_xlabel('Industry')
ax[0].tick_params(rotation=50)
ax[1].set_title('Success by Industry',  fontsize=18)
ax[1].set_xlabel('Industry')
fig.tight_layout()

fig.show()

下面是我得到的结果(x,但不幸的是yticks也旋转了!看看左边ax[0]处的图!我想旋转左边图的xticks!):

ippsafx7

ippsafx71#

您可以使用tick_paramsaxis参数来指定特定轴的旋转:

ax[0].tick_params(axis="x", rotation=50)

相关问题