Forecasting population with fbprophet
y(t) = g(t) + s(t) + h(t) + e(t)
Prophet
, was set to exclude daily and weekly seasonality while staying alert when identifying year-to-year trends and shifts in those trends over time. This was achieved;
# use fbprophet to make Prophet model
place_prophet = fbprophet.Prophet(changepoint_prior_scale=0.15,
daily_seasonality=False,
weekly_seasonality=False,
yearly_seasonality=True,
n_changepoints=10)