我有两个数组:
.htaccess
和
array([[Timestamp('2016-04-05 00:00:00'), 5],
[Timestamp('2016-10-05 00:00:00'), 5],
[Timestamp('2017-04-05 00:00:00'), 5]], dtype=object)
我想从这些创建一个如下所示的数组:
array([[Timestamp('2016-04-05 00:00:00'), 3],
[Timestamp('2017-04-05 00:00:00'), 3],
[Timestamp('2018-04-05 00:00:00'), 3]], dtype=object)
数组是numpy数组,时间戳来自pandas。
感谢您的帮助