Thursday, November 21, 2019

Previous Work 3: Prophet


Prophet is a procedure for forecasting time series data based on an additive model where non-linear trends are fit with yearly, weekly, and daily seasonality, plus holiday effects. It works best with time series that have strong seasonal effects and several seasons of historical data. Prophet is robust to missing data and shifts in the trend, and typically handles outliers well.


Reference: https://www.kaggle.com/headsortails/wiki-traffic-forecast-exploration-wtf-eda
Learn more about Prophet:  https://facebook.github.io/prophet/

No comments:

Post a Comment

Working Progress 8: Random Forest

Random Forest: It technically is an ensemble method (based on the divide-and-conquer approach) of decision trees generated on a randomly ...