如何将传说从情节中剔除我有一系列的20个情节(而不是副片)要在一个数字。我希望传奇能被打破。同时,我不想改变的轴线,因为大小的数字减少。请帮助我进行以下查询:我想把传说盒放在情节范围之外。(我希望传说在地块的右侧)。我是否缩小了图例框内文字的字体大小,使图例框的大小变小。
4 回答
天涯尽头无女友
TA贡献1831条经验 获得超9个赞
from matplotlib.font_manager import FontPropertiesfontP = FontProperties()fontP.set_size('small')legend([plot1], "title", prop=fontP)
慕妹3242003
TA贡献1824条经验 获得超6个赞
legend()
plot()
# matplotlibplt.plot(...)plt.legend(loc='center left', bbox_to_anchor=(1, 0.5))# Pandasdf.myCol.plot().legend(loc='center left', bbox_to_anchor=(1, 0.5))
添加回答
举报
0/150
提交
取消