pip怎么安装Prophet 安装了这个不行,要安装fbprophet
然后安装不起 哦豁
anaconda虚拟环境安装好将其导入pycharm
from fbprophet import Prophet
然后不报错了,很稀奇对吧,不报错了 但是运行还是给你显示 没有fbprophet 绝望了,找人吧
通过官方网站安装最新版Prophet,但是创建model不行又报错
from prophet import Prophet model = Prophet()
还是不行,继续找人吧
终于把环境匹配上了
然后又来 ValueError: Length of passed values is 551, index implies 26
可能是因为fbprophet的时间粒度默认是小时,虽然也可以调整为分钟,但如果你的numpy版本高于1.15.4就会出现错误:
ValueError: Length of passed values is ..., index implies ...
这说明数据格式的粒度没有安装你的设定来走,还是默认的
解决方案就是把numpy降版本到1.15.4就可以了不过还好,最后出来了
# future = list() # for i in range(1, 13): # date = '1968-%02d' % i # future.append([date]) # future = pd.DataFrame(future) # future.columns = ['ds'] # future['ds']= pd.to_datetime(future['ds'])
自动生成预测时间