我正在嘗試追加日期到時間序列數據。向時間序列數據追加日期時出錯
以下是時間序列數據,命名爲timseries_data
的輸出:
timseries_data
<class 'pandas.tseries.index.DatetimeIndex'>
[2013-11-01 00:00:00, ..., 2014-02-15 00:00:00]
Length: 107, Freq: D, Timezone: None
我要附加到最新系列20140216
日期。目前我正在使用append命令來更新系列。代碼:
start_date=datetime.strptime(date_range[1],'%Y%m%d')
date.append(start_date)
但這種做法我打這個錯誤:
ValueError: all the input arrays must have same number of dimensions
有人可以給我建議什麼好方法能夠追加日期時間序列數據?
呀,'append'仍然沒有工作0.18.1。 '.insert'可以工作,但是用'insert',你不能在最後的地方插入 – jf328