docs: adding ELI5 video to the home page (#2122)

* Adding ELI5 video

* Fixing lint warnings
This commit is contained in:
Dmitry Vinnik 2022-02-25 14:56:30 -08:00 committed by GitHub
parent f373d249c4
commit d0683b8873
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -147,3 +147,7 @@ h5:hover .header-link,
h6:hover .header-link {
opacity: 1;
}
.videoBlock {
text-align: center;
}

View file

@ -3,6 +3,11 @@ layout: home
title: Prophet
id: home
---
## Watch Introductory Video
<div class="videoBlock">
<iframe width="560" height="315" src="https://www.youtube.com/embed/eJrbKU09h-0" title="Explain Like I'm 5: Prophet" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen ></iframe>
</div>
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.