From d0683b887391dad0887c71f31cccb165c30c4895 Mon Sep 17 00:00:00 2001 From: Dmitry Vinnik Date: Fri, 25 Feb 2022 14:56:30 -0800 Subject: [PATCH] docs: adding ELI5 video to the home page (#2122) * Adding ELI5 video * Fixing lint warnings --- docs/css/main.scss | 4 ++++ docs/index.md | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/docs/css/main.scss b/docs/css/main.scss index ab3c4f3..7366154 100644 --- a/docs/css/main.scss +++ b/docs/css/main.scss @@ -147,3 +147,7 @@ h5:hover .header-link, h6:hover .header-link { opacity: 1; } + +.videoBlock { + text-align: center; +} diff --git a/docs/index.md b/docs/index.md index 693e958..fe16238 100644 --- a/docs/index.md +++ b/docs/index.md @@ -3,6 +3,11 @@ layout: home title: Prophet id: home --- +## Watch Introductory Video + +
+ +
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.