使用Matplotlib的strpdate2num和Python 3.2时的TypeError

时间:2013-05-11 10:12:55

标签: numpy python-3.x matplotlib

在我目前的项目中,我想使用以下代码从文本文件中将一些实验数据读入Python:

import numpy as np
from matplotlib.dates import strpdate2num

data = np.recfromtxt('example.txt',
                 comments='#',
                 delimiter=';',
                 names=('time', 't_ref', 't_s', 't_amb1', 't_amb2', 't_amb3')
                 ,converters={'time': strpdate2num('"%d.%m.%Y %H:%M:%S"')}
                 )

example.txt看起来像

"04.10.2012 08:15:27";14.4;16;12.78;12.65;12.52
"04.10.2012 08:15:37";14.4;16;12.78;12.65;12.5
"04.10.2012 08:15:47";14.4;16;12.78;12.62;12.5
"04.10.2012 08:15:57";14.4;15.9;12.78;12.65;12.52
...

在Python 2.7中,一切都很好,但是当我尝试在3.2中传输代码时,我从TypeError得到strpdate2num()

TypeError: strptime() argument 0 must be str, not <class 'bytes'>

我对Python很新,但我的理论是NumPy以某种方式将时间数组内部存储为字节而不是字符串,这与Python 3以来对两者的更严格处理相冲突。

长话短说,您是否知道如何解决这个问题的原因是什么?

3 个答案:

答案 0 :(得分:6)

unutbu的解决方法完美无缺。与此同时,issue似乎得到了解决。使用bytespdate2num()代替strpdate2num()对我有用。

答案 1 :(得分:5)

这是一种解决方法:

import numpy as np
import matplotlib.dates as mdates

def bytedate2num(fmt):
    def converter(b):
        return mdates.strpdate2num(fmt)(b.decode('ascii'))
    return converter

date_converter = bytedate2num("%d.%m.%Y %H:%M:%S")

data = np.recfromtxt('example.txt',
                     comments='#',
                     delimiter=';',
                     names=('time', 't_ref', 't_s', 't_amb1', 't_amb2', 't_amb3'),
                     converters={'time': date_converter})

答案 2 :(得分:-1)

我必须从示例文本中删除引号。 (使用python3.4)

ValueError: time data '"04.10.2012 08:15:27"' does not match format '%d.%m.%Y %H:%M:%S'