gpt4 book ai didi

python - legend() 如何处理动态数据集?

转载 作者:行者123 更新时间:2023-12-01 06:10:06 26 4
gpt4 key购买 nike

我需要一个从字典生成数据的代码的图例。我不知道字典中有多少键有没有办法对此进行“动态”图例?

import matplotlib.pyplot as plt

for host in d.keys():
plt.plot(range(100),d[host])

plt.show()

最佳答案

如果我理解你的意思,那么当然:你只需要以某种方式将键变成标签,即使它像调用 str 一样简单。

import matplotlib.pyplot as plt
import numpy

x = numpy.arange(10.)
d = dict((i, numpy.sin(x+i)) for i in range(5))

for k in sorted(d): # sort purely to make deterministic
plt.plot(x,d[k],label=str(k))

plt.legend(loc=2)
plt.draw()

enter image description here

关于python - legend() 如何处理动态数据集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6334506/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com