I'm solving one time series problem with facebook prophet,in which i'm not able to understand what is 'trend','yhat_lower','yhat_upper','trend_lower','trend_upper','additive_terms','additive_terms_lower','additive_terms_upper','multiplicative_terms','multiplicative_terms_lower','multiplicative_terms_upper' which comes after the prediction.
Thankyou
From Quick Start:
The
predict
method will assign each row infuture
a predicted value which it namesyhat
. If you pass in historical dates, it will provide an in-sample fit. Theforecast
object here is a new dataframe that includes a columnyhat
with the forecast, as well as columns for components and uncertainty intervals.
Thus
yhat
: forecastyhat_lower
, yhat_upper
: uncertainty interval