matplotlib 设置手动设置图例的位置大小

如果你的英语好,可以看官网,官网写的很详细

matplotlib.legend — Matplotlib 3.6.2 documentation

图例背景\位置\大小

plt.legend(frameon=False,loc="upper right",fontsize='small') #分别为图例无边框、图例放在右上角、图例大小

图例位置
图例位置一般系统会默认最好的位置(best),不过有些情况需要自己调。将一块平面分为九个方向,分别为:
右上“upper right”,右下“lower right”,正右“right”,左上“upper left”,左下“lower left”,中央偏左“center left”,中央偏上“upper center”,中央偏下“lower center”,正中央“center”
 

 matplotlib 设置手动设置图例的位置大小_第1张图片

图例大小

图例大小有几种,如果不设置系统默认偏小,自调可以用:‘xx-small’, ‘x-small’, ‘small’, ‘medium’, ‘large’, ‘x-large’, ‘xx-large’

图例字体类型

font3 = {'family' : 'Arial',
         'weight' : 'normal'}
plt.legend(frameon=False,loc="upper right",fontsize='small',prop=font3) #分别为图例无边框、图例放在右上角、图例大小

线类型
官方参考链接:https://matplotlib.org/gallery/lines_bars_and_markers/linestyles.html#sphx-glr-gallery-lines-bars-and-markers-linestyles-py
linestyle=‘此处放左边名字的下方小字’,如:linestyle=‘solid’,linestyle=(0, (1, 10));
 

点形状(marker)
官方参考:https://matplotlib.org/gallery/lines_bars_and_markers/marker_reference.html#sphx-glr-gallery-lines-bars-and-markers-marker-reference-py
https://matplotlib.org/gallery/lines_bars_and_markers/marker_fillstyle_reference.html#sphx-glr-gallery-lines-bars-and-markers-marker-fillstyle-reference-py
marker=‘形状代码’,形状大小可以用代码:markersize=4
matplotlib 设置手动设置图例的位置大小_第2张图片

参考:

(18条消息) 【python学习】-matplotlib图形设置(线宽、标签、颜色、图框、线类型、图例大小位置、图框大小及像素等)_electrochemjy的博客-CSDN博客_matplotlib 线宽

你可能感兴趣的:(python,matplotlib,python,开发语言)