matplotlib 画图的相关设置:坐标轴刻度字体、大小等
2020-03-15 本文已影响0人
无畏绽放
导入包
import matplotlib.pyplot as plt
设置坐标轴范围
plt.xlim((-5, 5))
plt.ylim((-2, 2))
设置坐标轴名称、字体、大小
plt.xlabel('xxxxxxxxxxx',fontdict={'family' : 'Times New Roman', 'size' : 16})
plt.ylabel('yyyyyyyyyyy',fontdict={'family' : 'Times New Roman', 'size' : 16})
设置坐标轴刻度、字体、大小
plt.xticks(np.arange(-5, 5, 0.5),fontproperties = 'Times New Roman', size = 10)
plt.yticks(np.arange(-2, 2, 0.3),fontproperties = 'Times New Roman', size = 10)
标题、字体、大小
plt.title('station', fontdict={'family' : 'Times New Roman', 'size' : 16})
图例、字体、大小
plt.legend(prop={'family' : 'Times New Roman', 'size' : 16})
设置xtick和ytick的方向:in、out、inout
plt.rcParams['xtick.direction'] = 'in'
plt.rcParams['ytick.direction'] = 'in'