Python_matplotlib画图时图例说明(legend)放到图像外侧

Posted 飞翔的南瓜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python_matplotlib画图时图例说明(legend)放到图像外侧相关的知识,希望对你有一定的参考价值。

https://blog.csdn.net/Poul_henry/article/details/82533569

 

    import matplotlib.pyplot as plt
    import numpy as np

    x = np.arange(10)
    print x
    fig = plt.figure()
    ax = plt.subplot(111)

    for i in xrange(5):
        #ax.plot(x, i * x, label=‘y=%dx‘ %i)
        ax.plot(x, i * x, label=‘$y = %ix$‘ % i)

    ax.legend()

    plt.show()

以上是关于Python_matplotlib画图时图例说明(legend)放到图像外侧的主要内容,如果未能解决你的问题,请参考以下文章

python_matplotlib改变横坐标和纵坐标上的刻度(ticks)sagemath-list_plot()调整图例(legend)中点的数量Matplotlib画各种论文图

R语言画图时 图例字体的大小可以改吗

如何在matlab中为图形加标注以及文字说明

matlab中画图线型怎么设置

python jupyter notebook画图图例中文乱码?

python_matplotlib作图中有多个Y轴