栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Python-用twinx()辅助轴:如何添加到图例?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Python-用twinx()辅助轴:如何添加到图例?

你可以通过添加以下行轻松添加第二个图例:

ax2.legend(loc=0)

你将获得:

但是,如果要将所有标签都放在一个图例上,则应执行以下操作:

import numpy as npimport matplotlib.pyplot as pltfrom matplotlib import rcrc('mathtext', default='regular')time = np.arange(10)temp = np.random.random(10)*30Swdown = np.random.random(10)*100-10Rn = np.random.random(10)*100-10fig = plt.figure()ax = fig.add_subplot(111)lns1 = ax.plot(time, Swdown, '-', label = 'Swdown')lns2 = ax.plot(time, Rn, '-', label = 'Rn')ax2 = ax.twinx()lns3 = ax2.plot(time, temp, '-r', label = 'temp')# added these three lineslns = lns1+lns2+lns3labs = [l.get_label() for l in lns]ax.legend(lns, labs, loc=0)ax.grid()ax.set_xlabel("Time (h)")ax.set_ylabel(r"Radiation ($MJ,m^{-2},d^{-1}$)")ax2.set_ylabel(r"Temperature ($^circ$C)")ax2.set_ylim(0, 35)ax.set_ylim(-20,100)plt.show()


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/402382.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号