what is meant by seasonality mode in prophet

Solutions on MaxInterview for what is meant by seasonality mode in prophet by the best coders in the world

showing results for - "what is meant by seasonality mode in prophet"
Marlene
04 Jan 2019
1# R
2df <- read.csv('../examples/example_air_passengers.csv')
3m <- prophet(df)
4future <- make_future_dataframe(m, 50, freq = 'm')
5forecast <- predict(m, future)
6plot(m, forecast)
7
Levi
13 Oct 2017
11
22
33
44
55
66
77
8# Python
9df = pd.read_csv('../examples/example_air_passengers.csv')
10m = Prophet()
11m.fit(df)
12future = m.make_future_dataframe(50, freq='MS')
13forecast = m.predict(future)
14fig = m.plot(forecast)
15
similar questions