0

我正在尝试生成一个 numpy 类型的系列datetime64[ns, UTC]但没有成功。

这是我尝试过的:

test = np.array(np.datetime64('2005-01-03 14:30:00.000000000'))
test
>array('2005-01-03T14:30:00.000000000', dtype='datetime64[ns]')

并转换,但没有成功:

test = np.array(np.datetime64('2005-01-03 14:30:00.000000000').tz_localize('UTC'))
test
>>>
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-23-0efefc078d50> in <module>
----> 1 test = np.array(np.datetime64('2005-01-03 14:30:00.000000000').tz_localize('UTC'))
      2 test

AttributeError: 'numpy.datetime64' object has no attribute 'tz_localize'
4

1 回答 1

1

我能够达到这个结果:

0   2005-01-03 14:30:00+00:00
dtype: datetime64[ns, UTC]

使用下面的代码:

import numpy as np
import pandas as pd
s = pd.Series(np.datetime64('2005-01-03 14:30:00.000000000'))
s.dt.tz_localize('UTC')
于 2021-01-31T12:27:02.880 回答