mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-09-15 22:10:22 +00:00
Switch R install instructions back to CRAN
This commit is contained in:
parent
3ccbd0e0e9
commit
a3bf6c4cdc
2 changed files with 4 additions and 5 deletions
|
|
@ -21,11 +21,10 @@ Prophet is [open source software](https://code.facebook.com/projects/) released
|
|||
|
||||
## 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
|
||||
# install.packages("remotes")
|
||||
remotes::install_github("facebook/prophet", subdir = "R")
|
||||
install.packages('prophet')
|
||||
```
|
||||
|
||||
After installation, you can [get started!](https://facebook.github.io/prophet/docs/quick_start.html#r-api)
|
||||
|
|
|
|||
|
|
@ -14,11 +14,11 @@ Prophet has two implementations: [R](#installation-in-r) and [Python](#installat
|
|||
|
||||
<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
|
||||
> devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3")
|
||||
> install.packages('prophet')
|
||||
```
|
||||
|
||||
After installation, you can [get started!](quick_start.html#r-api)
|
||||
|
|
|
|||
Loading…
Reference in a new issue