原文:statsmodels.tsa.arima_model預測時報錯TypeError: int() argument must be a string, a bytes-like object or a number, not 'Timestamp'

在 python 中用 statsmodels創建 ARIMA 模型進行預測時間序列: 運行后報錯: 這種情況的原因是,讀入的時間序列數據的時間沒有統一的間隔,例如打印mod. index的結果是 其中 是距離前一個時間 天,其它間隔為 天。可以看到這個 DatetimeIndex 的 freq 是 None 類型。 而如果將最后一天修改為 ,那么mod. index的結果是: 但是此時還會報錯 ...

2019-01-19 01:09 0 7593 推薦指數:

查看詳情

TypeError: expected string or bytes-like object

在寫Python代碼的時候,遇到了“TypeError: a bytes-like object is required, not 'str'”錯誤,此處實驗機器的Python環境為Python 3.6.6,如下所示 >>> import base64 > ...

Tue Aug 20 19:47:00 CST 2019 0 5621
TypeError: expected string or bytes-like object

記錄下編寫代碼過程中遇到的錯誤原因; 正則匹配findall函數返回的是列表,匹配對象也應為str 借帖百度經驗; https://jingyan.baidu.com/article/e52 ...

Tue Dec 11 18:18:00 CST 2018 0 1080
 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM