如果我要进行一系列绘图,例如:
fig,axes = plt.subplots(1,3,figsize=(20,5))
#First Batch of plots
axes[0].hist(...)
axes[1].hist(...)
axes[2].hist(...)
#Second Batch of plots
axes[0].hist(...)
axes[1].hist(...)
axes[2].hist(...)
#Third Batch of plots
axes[0].hist(...)
axes[1].hist(...)
axes[2].hist(...)
plt.show()
,我希望一个批次中的所有图都具有相同的样式(例如,相同的标签,相同的颜色,...),我可以手动将它们添加到.hist
命令中,但是有没有一种设置“临时默认值”的方法,可以使每批绘图的样式相同?