'How to adjust the x labels on seasonal_decompose()

I'm trying to rotate and reduce the x label on seasonal_decompose(),

from statsmodels.tsa.seasonal. However, I only got the from the last chart to change. How can I edit all of them?

Please help me.

model_series = tsa.seasonal_decompose(y, model='additive')
fig = model_series.plot()
plt.xticks(fontsize=7)
# plt.show()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source