matplotlibrc
配置文件可以选择设置各种title
设置:
axes.titlesize : medium # fontsize of the axes title
axes.titlepad : 6.0 # pad between axes and title in points
是否可以选择将标题默认放在左侧,可以手动完成:
import matplotlib.pylab as pl
pl.figure()
pl.title('Title....', loc='left')
例如legend
有一个选项:
legend.loc : best
但我找不到类似标题的位置。