use*_*909 32 python matplotlib
我正在尝试使用matplotlib创建一个带有图例的图表.我可以看到正在创建绘图,但图像边界不允许显示整个图例.
lines = []
ax = plt.subplot(111)
for filename in args:
lines.append(plt.plot(y_axis, x_axis, colors[colorcycle], linestyle='steps-pre', label=filename))
ax.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)
Run Code Online (Sandbox Code Playgroud)
这会产生:

str*_*ter 37
虽然现在已经晚了,但我想提到一个不错的最近推出的替代方案:
如果你对以下的输出文件感兴趣plt.savefig:在这种情况下,旗帜bbox_inches='tight'是你的朋友!
import matplotlib.pyplot as plt
fig = plt.figure(1)
plt.plot([1, 2, 3], [1, 0, 1], label='A')
plt.plot([1, 2, 3], [1, 2, 2], label='B')
plt.legend(loc='center left', bbox_to_anchor=(1, 0))
fig.savefig('samplefigure', bbox_inches='tight')
Run Code Online (Sandbox Code Playgroud)
我还想提一个更详细的答案:在轴外移动matplotlib图例使其被图框切断
plt.subplots其他人一样兼容!gca*_*tes 21
正如亚当指出的那样,你需要在图表的一侧留出空间.如果要微调所需的空间,可能需要查看matplotlib.pyplot.artist 的add_axes方法.
以下是一个快速示例:
import matplotlib.pyplot as plt
import numpy as np
# some data
x = np.arange(0, 10, 0.1)
y1 = np.sin(x)
y2 = np.cos(x)
# plot of the data
fig = plt.figure()
ax = fig.add_axes([0.1, 0.1, 0.6, 0.75])
ax.plot(x, y1,'-k', lw=2, label='black sin(x)')
ax.plot(x, y2,'-r', lw=2, label='red cos(x)')
ax.set_xlabel('x', size=22)
ax.set_ylabel('y', size=22)
ax.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)
plt.show()
Run Code Online (Sandbox Code Playgroud)
和结果图像: 
这是另一种制作空间的方法(缩小轴):
# get the current axis
ax = plt.gca()
# Shink current axis by 20%
box = ax.get_position()
ax.set_position([box.x0, box.y0, box.width * 0.8, box.height])
Run Code Online (Sandbox Code Playgroud)
其中0.8将轴的宽度缩放20%.在我的win7 64机器上,使用大于1的因子将为图例提供空间,如果它在图表之外.
此代码引用自:如何将图例放出图表
小智 5
只需使用 plt.tight_layout()
import matplotlib.pyplot as plt
fig = plt.figure(1)
plt.plot([1, 2, 3], [1, 0, 1], label='A')
plt.plot([1, 2, 3], [1, 2, 2], label='B')
plt.legend(loc='center left', bbox_to_anchor=(1, 0))
plt.tight_layout()
Run Code Online (Sandbox Code Playgroud)
这可能是在较新matplotlib版本中引入的,并且可以很好地完成这项工作。
| 归档时间: |
|
| 查看次数: |
34689 次 |
| 最近记录: |