Switch R install instructions back to CRAN

This commit is contained in:
Ben Letham 2020-05-05 14:13:58 -07:00
parent 3ccbd0e0e9
commit a3bf6c4cdc
2 changed files with 4 additions and 5 deletions

View file

@ -21,11 +21,10 @@ Prophet is [open source software](https://code.facebook.com/projects/) released
## Installation in R ## Installation in R
Prophet is temporarily not on CRAN so you can use the `devtools` package to install it directly from GitHub: Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) so you can use `install.packages`.
```R ```R
# install.packages("remotes") install.packages('prophet')
remotes::install_github("facebook/prophet", subdir = "R")
``` ```
After installation, you can [get started!](https://facebook.github.io/prophet/docs/quick_start.html#r-api) After installation, you can [get started!](https://facebook.github.io/prophet/docs/quick_start.html#r-api)

View file

@ -14,11 +14,11 @@ Prophet has two implementations: [R](#installation-in-r) and [Python](#installat
<a href="#r"></a> <a href="#r"></a>
Prophet is temporarily not on CRAN so you can use the `devtools` package to install it directly from github: Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) so you can use `install.packages`.
``` ```
# R # R
> devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3") > install.packages('prophet')
``` ```
After installation, you can [get started!](quick_start.html#r-api) After installation, you can [get started!](quick_start.html#r-api)