将不同长度的列堆成一个数组

时间:2016-03-08 10:38:37

标签: python arrays python-2.7

我有两个数组:

.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。

感谢您的帮助

0 个答案:

没有答案