Matplotlib整个传说左对齐

时间:2015-01-21 06:53:02

标签: matplotlib alignment legend

我想左对齐图例的所有元素(原生,只有标题左对齐)。 关于如何实现这一点的任何想法?

import matplotlib.pyplot as plt, matplotlib _plot = plt.plot(range(5), range(5), label = 'a') legend = plt.legend(loc = 'upper left', title = 'this is a long title')

1 个答案:

答案 0 :(得分:0)

你正在寻找类似的东西吗? enter image description here

如果是这样,你可以得到它:

x = arange(1.0, 15, 1.0)
plot(x,log(x),label=r'$y=log(x)$')
plot(x,5*x,label=r'$y=5x$')
plot(x,5*x+log(x),label=r'$y=5x+log(x)$')
plot(x,x**2,label=r'$y=x^2$')
legend(loc='upper left')
show()