英文:
Seaborn displot. How to control font size and rotation for each subplot?
问题
我正在使用 'col' 参数绘制多个分布,并尝试更改 xticks 的字体大小和旋转,但它只会对最后一个子图生效。如何使它对两个子图都生效?
英文:
I am plotting multiple distributions via the 'col' parameter and trying to change the fontsize and rotation for xticks but it will only take effect on the last subplot. How do I make it so that it changes for both subplots?
答案1
得分: 2
你可以使用以下代码为所有坐标轴设置 tick_params
:
g.tick_params(axis='x', labelsize=5)
或者在你的 FacetGrid 对象 g
中迭代处理各个坐标轴:
for ax in g.axes.flatten():
ax.tick_params(axis='x', labelsize=5)
英文:
You can set the tick_params
for all axes with:
g.tick_params(axis='x', labelsize=5)
Or iterate over the Axes in your FacetGrid object g
:
for ax in g.axes.flatten():
ax.tick_params(axis='x', labelsize=5)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论