diff --git a/README.md b/README.md index baf12ce..bb47b63 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,10 @@ 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. -Prophet is [open source software](https://code.facebook.com/projects/) released by Facebook's [Core Data Science team](https://research.fb.com/category/data-science/). It is available for download on [CRAN](https://cran.r-project.org/package=prophet) and [PyPI](https://pypi.python.org/pypi/fbprophet/). +Prophet is [open source software](https://code.facebook.com/projects/) released by Facebook's [Core Data Science team](https://research.fb.com/category/data-science/). It is available for download on [CRAN](https://cran.r-project.org/package=prophet) and [PyPI](https://pypi.python.org/pypi/fbprophet/). ## Important links - - Homepage: https://facebook.github.io/prophet/ - HTML documentation: https://facebook.github.io/prophet/docs/quick_start.html - Issue tracker: https://github.com/facebook/prophet/issues @@ -31,7 +30,7 @@ After installation, you can [get started!](https://facebook.github.io/prophet/do ### Windows -On Windows, R requires a compiler so you'll need to [follow the instructions](https://github.com/stan-dev/rstan/wiki/Installing-RStan-on-Windows) provided by `rstan`. The key step is installing [Rtools](http://cran.r-project.org/bin/windows/Rtools/) before attempting to install the package. +On Windows, R requires a compiler so you'll need to [follow the instructions](https://github.com/stan-dev/rstan/wiki/Installing-RStan-on-Windows) provided by `rstan`. The key step is installing [Rtools](http://cran.r-project.org/bin/windows/Rtools/) before attempting to install the package. If you have custom Stan compiler settings, install from source rather than the CRAN binary. @@ -44,7 +43,7 @@ Prophet is on PyPI, so you can use pip to install it: $ pip install fbprophet ``` -The major dependency that Prophet has is `pystan`. PyStan has its own [installation instructions](http://pystan.readthedocs.io/en/latest/installation_beginner.html). Install pystan with pip before using pip to install fbprophet. +The major dependency that Prophet has is `pystan`. PyStan has its own [installation instructions](http://pystan.readthedocs.io/en/latest/installation_beginner.html). Install pystan with pip before using pip to install fbprophet. After installation, you can [get started!](https://facebook.github.io/prophet/docs/quick_start.html#python-api) @@ -52,7 +51,7 @@ If you upgrade the version of PyStan installed on your system, you may need to r ### Windows -On Windows, PyStan requires a compiler so you'll need to [follow the instructions](http://pystan.readthedocs.io/en/latest/windows.html). The key step is installing a recent [C++ compiler](http://landinghub.visualstudio.com/visual-cpp-build-tools). +On Windows, PyStan requires a compiler so you'll need to [follow the instructions](http://pystan.readthedocs.io/en/latest/windows.html). The key step is installing a recent [C++ compiler](https://visualstudio.microsoft.com/visual-cpp-build-tools/). ### Linux diff --git a/docs/_docs/installation.md b/docs/_docs/installation.md index 0717b7c..d0147c5 100644 --- a/docs/_docs/installation.md +++ b/docs/_docs/installation.md @@ -10,7 +10,7 @@ subsections: title: Using Python --- -Prophet has two implementations: [R](#installation-in-r) and [Python](#installation-in-python). Note the slight name difference for the Python package. +Prophet has two implementations: [R](#installation-in-r) and [Python](#installation-in-python). Note the slight name difference for the Python package. @@ -27,7 +27,7 @@ After installation, you can [get started!](quick_start.html#r-api) ### Windows -On Windows, R requires a compiler so you'll need to [follow the instructions](https://github.com/stan-dev/rstan/wiki/Installing-RStan-on-Windows) provided by `rstan`. The key step is installing [Rtools](http://cran.r-project.org/bin/windows/Rtools/) before attempting to install the package. +On Windows, R requires a compiler so you'll need to [follow the instructions](https://github.com/stan-dev/rstan/wiki/Installing-RStan-on-Windows) provided by `rstan`. The key step is installing [Rtools](http://cran.r-project.org/bin/windows/Rtools/) before attempting to install the package. If you have custom Stan compiler settings, install from source rather than the CRAN binary. @@ -42,13 +42,13 @@ Prophet is on PyPI, so you can use pip to install it: $ pip install fbprophet ``` -The major dependency that Prophet has is `pystan`. PyStan has its own [installation instructions](http://pystan.readthedocs.io/en/latest/installation_beginner.html). Install pystan with pip before using pip to install fbprophet. +The major dependency that Prophet has is `pystan`. PyStan has its own [installation instructions](http://pystan.readthedocs.io/en/latest/installation_beginner.html). Install pystan with pip before using pip to install fbprophet. After installation, you can [get started!](quick_start.html#python-api) ### Windows -On Windows, PyStan requires a compiler so you'll need to [follow the instructions](http://pystan.readthedocs.io/en/latest/windows.html). The key step is installing a recent [C++ compiler](http://landinghub.visualstudio.com/visual-cpp-build-tools). +On Windows, PyStan requires a compiler so you'll need to [follow the instructions](http://pystan.readthedocs.io/en/latest/windows.html). The key step is installing a recent [C++ compiler](https://visualstudio.microsoft.com/visual-cpp-build-tools/). ### Linux diff --git a/python/README.md b/python/README.md index 19de97f..c3bb4ea 100644 --- a/python/README.md +++ b/python/README.md @@ -25,7 +25,7 @@ pip install fbprophet ``` Note: Installation requires PyStan, which has its [own installation instructions](http://pystan.readthedocs.io/en/latest/installation_beginner.html). On Windows, PyStan requires a compiler so you'll need to [follow the instructions](http://pystan.readthedocs.io/en/latest/windows.html). - The key step is installing a recent [C++ compiler](http://landinghub.visualstudio.com/visual-cpp-build-tools) + The key step is installing a recent [C++ compiler](https://visualstudio.microsoft.com/visual-cpp-build-tools/) ### Example usage