エポック以降の日付を浮動小数点数 ( time.time() から) としてソースしており、次のように変換してプロットしようとしています (line[0]):
x,y = [],[]
csv_reader = csv.reader(open(csvFile))
for line in csv_reader:
x.append(float(line[1]))
y.append(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(float(line[0]))))
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x,y,'o-')
fig.autofmt_xdate()
plt.show()
しかし、matplotlib は次のようにエラーを出し続けます:
ValueError: float() の無効なリテラル: 2013-07-08 15:04:50
適切にフォーマットする方法について何か考えはありますか?
乾杯