mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-07-02 03:55:36 +00:00
Change R install instructions from CRAN to github
This commit is contained in:
parent
309035cb97
commit
59e374b1ad
2 changed files with 4 additions and 6 deletions
|
|
@ -21,11 +21,11 @@ Prophet is [open source software](https://code.facebook.com/projects/) released
|
|||
|
||||
## Installation in R
|
||||
|
||||
Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) so you can use `install.packages`. For OSX, be sure to specify a source install:
|
||||
Prophet is temporarily not on CRAN so you can use the `devtools` package to install it directly from github:
|
||||
|
||||
```
|
||||
# R
|
||||
> install.packages('prophet', type="source")
|
||||
> devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3")
|
||||
```
|
||||
|
||||
After installation, you can [get started!](https://facebook.github.io/prophet/docs/quick_start.html#r-api)
|
||||
|
|
|
|||
|
|
@ -14,13 +14,11 @@ Prophet has two implementations: [R](#installation-in-r) and [Python](#installat
|
|||
|
||||
<a href="#r"></a>
|
||||
|
||||
## Installation in R
|
||||
|
||||
Prophet is a [CRAN package](https://cran.r-project.org/package=prophet) and you can use `install.packages`. For OSX, be sure to choose a source install:
|
||||
Prophet is temporarily not on CRAN so you can use the `devtools` package to install it directly from github:
|
||||
|
||||
```
|
||||
# R
|
||||
> install.packages('prophet', type="source")
|
||||
> devtools::install_github("facebook/prophet", subdir='R', ref="8306ae3")
|
||||
```
|
||||
|
||||
After installation, you can [get started!](quick_start.html#r-api)
|
||||
|
|
|
|||
Loading…
Reference in a new issue