我目前正在为Python中的股票预测程序设置SVR。 尝试在使用split方法将日期添加到数据框的同时尝试将日期追加到列表中时,出现了AttributeError:“ Timespamp”对象没有属性“ split”。我实际上不知道为什么会发生此错误。 提前致谢。
for date in df_dates:
dates.append( [int(date.split('-')[2])] )
for open_price in df_open:
prices.append(float(open_price))
AttributeError Traceback (most recent call last)
<ipython-input-34-0e5560a092c8> in <module>()
1 for date in df_dates:
----> 2 dates.append( [int(date.split('-')[2])] )
3
4 #Create the dependent data set 'y' as prices
5 for open_price in df_open:
AttributeError: 'Timestamp' object has no attribute 'split'