Skip to content

Commit

Permalink
docs: move magic command forward since it restarts interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
lhrotk authored and mhamilton723 committed Sep 15, 2022
1 parent 3a160b3 commit ca358e3
Showing 1 changed file with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,26 @@
"We will build up a model to forcast monthly volume of property trade based on history data. In order to forecast, we will use [Facebook Prophet](https://facebook.github.io/prophet/), which provides fast and automated forecast procedure and handles seasonality well."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Install Prophet\n",
"\n",
"Let's first install [Facebook Prophet](https://facebook.github.io/prophet/). It uses a decomposable time series model which consist of three main components: trend, seasonality and holidays. \n",
"For the trend part, Prophet assumes piece-wise constant rate of growth with automatic chagne point selection.\n",
"For seasonality part, Prophet models weekly and yearly seasonality using Fourier Series. Since we are using monthly data, so we won't have weekly seasonality and won't considering holidays."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"!pip install prophet"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -248,26 +268,6 @@
"## Step 3: Model Training and Evaluation"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Install Prophet\n",
"\n",
"Now let's install [Facebook Prophet](https://facebook.github.io/prophet/). It uses a decomposable time series model which consist of three main components: trend, seasonality and holidays. \n",
"For the trend part, Prophet assumes piece-wise constant rate of growth with automatic chagne point selection.\n",
"For seasonality part, Prophet models weekly and yearly seasonality using Fourier Series. Since we are using monthly data, so we won't have weekly seasonality and won't considering holidays."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"%pip install prophet"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down

0 comments on commit ca358e3

Please sign in to comment.