matplotlib 海运显示,如何控制每个子情节的字体大小和旋转?[副本]

wkftcu5l  于 2023-03-13  发布在  其他
关注(0)|答案(1)|浏览(107)

此问题在此处已有答案

Inconsistent xticks rotation for seaborn displot when plotting of subsets of plot on different facets(1个答案)
How to set rotation for seaborn FacetGrid and figure-level xtick labels(1个答案)
How can I change the font size using seaborn FacetGrid?(5个答案)
3天前关闭。
我正在通过'col'参数绘制多个分布,并试图更改xticks的字体大小和旋转,但它只会对最后一个子图生效。我如何使它对两个子图都发生变化?

uelo1irk

uelo1irk1#

可使用以下命令设置所有轴的tick_params

g.tick_params(axis='x', labelsize=5)

或者迭代FacetGrid对象g中的轴:

for ax in g.axes.flatten():
  ax.tick_params(axis='x', labelsize=5)

相关问题