所以我是matplotlib的新手,我正在使用youtube视频并重新创建其代码,看看它是否适用于我。代码如下,
import numpy as np
import matplotlib.pyplot as plt
x=[]
y=[]
readFile = open('attempt2.txt', 'r')
sepFile= readFile.read().split('/n')
readFile.close()
for batman in sepFile:
xAndy = batman.split(',')
x.append(int(xAndy[0]))
y.append(int(xAndy[1]))
print x
print y
plt.plot(x,y)
plt.title('attempt 2')
plt.xlabel('attempt 2 x')
plt.ylabel('attempt 2 y')
plt.show()
当我运行此代码时,错误显示:
Traceback (most recent call last):
File "attempt_2.py", line 13, in <module>
y.append(int(xAndy[1]))
ValueError: invalid literal for int() with base 10: '5\n2'
我不确定我做错了什么以及这个错误意味着什么。任何帮助将不胜感激。
答案 0 :(得分:0)
您错误地忽略了\
和/
字符的错误。文件读取行应该看起来像sepFile = readFile.read().split('\n')
,因为它是\n
而不是/n
结束一行。
答案 1 :(得分:0)
所以我弄清楚发生了什么,数据末尾有一些空行,我只需要对xAndY的len进行修改
for plotpair in sepFile:
xandy = plotpair.split(',')
if len(xandy)>1:
x.append(int(float(xandy[0])))
y.append(int(float(xandy[1])))
这解决了问题