gpt4 book ai didi

python - 我无法使用文件中的 matplotlib 值绘制图表

转载 作者:行者123 更新时间:2023-12-01 04:02:04 25 4
gpt4 key购买 nike

我想使用 matplotlib 绘制心电图。来自具有浮点值的文件的 y 值,并且 x 值递增(即 x 范围从 1 到 1000)。浏览了教程并找不到任何解决方案。

最佳答案

演示代码

import numpy as np
import matplotlib.pyplot as plt
import random
import pickle


#Y Axis : Generate 1000 random numbers
yAxisNumbers = np.random.uniform(1,100,1000)

#Save numbers to a file for demo purpose
with open('numpyData.txt', 'wb') as myFile:
pickle.dump(yAxisNumbers,myFile)


#X Axis :Generate 1000 random numbers
xNumbers = [ x for x in range(1000)]

#Load file data to a list
with open('numpyData.txt', 'rb') as aFile:
yNumbers = pickle.load(aFile)

#Plot and label Graph
plt.plot(xNumbers,yNumbers)
plt.ylabel("Random Float Numbers")
plt.xlabel("Number Count")
plt.title("ECG Graph")
plt.show()

图表

enter image description here

关于python - 我无法使用文件中的 matplotlib 值绘制图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36324288/

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