# 需要導入模塊: from fbprophet import Prophet [as 別名]# 或者: from fbprophet.Prophet importmake_future_dataframe[as 別名]defadd_prophet_features(df_shop):df = df_shop[['day','pays_count']].rename(columns={'day':'ds','pays_count':'y'}) results = [] biweek_max = df_shop.biwe...