【发布时间】:2015-09-24 08:10:17
【问题描述】:
我正在尝试使用 python 来制作情节。以下是导致错误的代码的简化版本。
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
matplotlib.use("AGG")
distance = np.array('f')
depth = np.array('f')# make sure these two arrays store float type value
with open('Line671.txt','r') as datafile:
for line in datafile:
word_count = 0
for word in line.split():
word = float(word)#convert string type to float
if word_count == 0:
distance = np.append(distance, word)
elif word_count == 1:
depth = np.append(depth, word)
else:
print 'Error'
word_count += 1
datafile.closed
print depth
print distance #outputs looks correct
# original data is like this: -5.3458000e+00
# output of the array is :['f' '-5.3458' '-5.3463' ..., '-5.4902' '-5.4912' '-5.4926']
plt.plot(depth, distance)# here comes the problem
错误消息表明 plt.plot(depth, distance): ValueError: could not convert string to float: f
我不明白这一点,因为似乎我将所有字符串值都转换为浮点类型。我试图在stackoverflow上搜索这个问题,但是一旦将所有字符串值转换为float或int,它们似乎都解决了这个问题。任何人都可以就这个问题提出任何建议吗?如果您能提供任何帮助,我将不胜感激。
【问题讨论】:
标签: python numpy matplotlib