我想左对齐图例的所有元素(原生,只有标题左对齐)。 关于如何实现这一点的任何想法?
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')
答案 0 :(得分:0)
如果是这样,你可以得到它:
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()