如果字符串,Matplotlib xticks字体大小

时间:2016-08-29 17:16:57

标签: python matplotlib

我正在尝试更改x轴的字体大小,恰好是字符串而不是数字。我使用以下方法更改了其他具有整数的图表:

plt.xticks(size=10)

然而,这个剂量不适用于我的一些图表,它们有几个月代替整数。请记住,我没有使用子图。

1 个答案:

答案 0 :(得分:1)

尝试使用fontsize关键字参数设置fontsize,或者如果要通过将rcParams更新为

来全局将其更改为脚本中的每个绘图
import matplotlib 
matplotlib.rc('xtick', labelsize=20)

另请看这个答案:How to change the font size on a matplotlib plot

或者在这里:How can I change the font size of ticks of axes object in matplotlib