legend() 如何处理动态数据集?
我需要一个从字典生成数据的代码的图例。我不知道字典中有多少键有没有办法对此进行“动态”图例?
import matplotlib.pyplot as plt
for host in d.keys():
plt.plot(range(100),d[host])
plt.show()
I need a legend for a code which generates data from a dict. I don't know how much keys exist in the dict is there a way to do 'dynamic' a legend on this?
import matplotlib.pyplot as plt
for host in d.keys():
plt.plot(range(100),d[host])
plt.show()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解你的意思,那么当然:你只需要以某种方式将密钥变成标签,即使它就像在其上调用 str 一样简单。
If I understand you, then sure: you simply need to turn the key into a label somehow, even if it's as simple as calling str on it.