所以我试图设置x标签之间的间距,或者以某种方式在图表中的每个子图中的每个条之间创建空格,以便它们甚至可以相互重叠。我尝试过旋转,但有些x标签仍然重叠,看起来并不正确。我怎样才能让它更具视觉吸引力?
g=sns.factorplot(x='type1', col='type2',col_wrap=3, data=dframe, kind='count', sharex=False, sharey=False, palette=pokemon_color_palette)
for ax in g.axes.flat:
for label in ax.get_xticklabels():
label.set_rotation(60)
for ax in g.axes.flat:
ax.set_xlabel('type1', color='indianred')
plt.tight_layout()