gpt4 book ai didi

python-3.x - 优雅地将int64的numpy数组转换为datetime64的numpy数组

转载 作者:行者123 更新时间:2023-12-04 01:14:45 30 4
gpt4 key购买 nike

我有一个 numpy 数组 x dtype np.int64代表纳秒。我可以将其转换为 dtype np.datetime64 的 numpy 数组使用以下代码:np.array([np.datetime64(int(a), 'ns') for a in x])有没有更好的方法可以避免python列表理解?

最佳答案

你可以做:

x = np.array([1e9, 5e9, 1e10], dtype=np.int64)

x.astype('datetime64[ns]')
输出:
array(['1970-01-01T00:00:01.000000000', '1970-01-01T00:00:05.000000000',
'1970-01-01T00:00:10.000000000'], dtype='datetime64[ns]')

关于python-3.x - 优雅地将int64的numpy数组转换为datetime64的numpy数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63726557/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com