码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-01-29 21:48:33      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:pre   detail   csdn   legend   gen   numpy   range   sub   bsp   

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)放到图像外侧

标签:pre   detail   csdn   legend   gen   numpy   range   sub   bsp   

原文地址:https://www.cnblogs.com/flying-pumpkin/p/12241212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!