代码内容:

from fbprophet import Prophet

prophet = Prophet()

prophet.fit(df)

future = prophet.make_future_dataframe(periods=365)

forecast = prophet.predict(future)

forecast.plot()