python绘图matplotlib 图例legend形状和位置设置

如果想把所有图例摆在一行, 用ncol控制列数,用bbox_to_anchor=(num1, num2)控制相对于左侧和下侧的位置。可以是正的(num1正则向右移动)或负的(num2负数则向下),注意取值区间一般为(-1,1),因为移动幅度为比例。

plt.legend(['Merge', 'SOLO', 'MCP', 'TMCP', 'CMCP-Lasso'], fontsize=16, ncol=5,bbox_to_anchor=(0.5, -0.05))

python绘图matplotlib 图例legend形状和位置设置_第1张图片

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