清脆溪流

文章
2
资源
0
加入时间
2年10月21天

# 使用Prophet预测manning未来365天的页面流量

# 从2007年12月10日开始import pandas as pdfrom fbprophet import Prophetimport matplotlib.pyplot as plt%matplotlib inline# 读入数据集df = pd.read_csv('./manning.csv')#print(df.head())#print(df.tail())# 拟合模型model = Prophet()model.fit(df)# 构建待预测日期数据框,period