我有一个包含四个子情节的图。我想将所有子图的xticks
旋转45度。
根据this question,我相信这可以用plt.setp()
来完成。
# Create subplots
fig, ax = plt.subplots(2, 2, figsize=(10,5), sharex=True, sharey=True)
# Try to rotate the xticks of all axes
plt.setp(plt.xticks()[1], rotation=45) # Close attempt
# Show
plt.show()
1条答案
按热度按时间i5desfxk1#
您可以循环遍历每个子图,将其设置为当前轴,并对每个子图调用
plt.xticks()
。结果: