欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib的图表刻度尺寸、横纵轴label的尺寸设置

程序员文章站 2022-03-21 10:31:29
...

坐标刻度的尺寸,legend的尺寸,横纵轴的label的尺寸如下:

font1 = {'family' : 'Times New Roman',
'weight' : 'normal',
'size'   : 18,
}


plt.xlim([0.0, 1.0])
plt.ylim([0.0, 1.05])
plt.xlabel('False Positive Rate', font1)
plt.ylabel('True Positive Rate', font1)

# plt.title('ROC',font1)

plt.legend(loc=6, prop=font1)

plt.tick_params(labelsize=13) #刻度字体大小13

plt.show()

 

相关标签: OpenCV

上一篇: 颜色填充

下一篇: unity