Skip to content

Commit

Permalink
Add r-universe installation code in README
Browse files Browse the repository at this point in the history
  • Loading branch information
TanguyBarthelemy committed Jul 9, 2024
1 parent b0639cc commit 2a9e1c6
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 3 deletions.
26 changes: 24 additions & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,32 @@ rjd3highfreq provides functions for seasonal adjustment of high-frequency data d

Running rjd3 packages requires **Java 17 or higher**. How to set up such a configuration in R is explained [here](https://jdemetra-new-documentation.netlify.app/#Rconfig)


### Latest release

To get the current stable version (from the latest release):

- From GitHub:

```{r, echo = TRUE, eval = FALSE}
# install.packages("remotes")
remotes::install_github("rjdverse/rjd3toolkit@*release")
remotes::install_github("rjdverse/rjd3sts@*release")
remotes::install_github("rjdverse/rjd3highfreq@*release")
```

- From [r-universe](https://rjdverse.r-universe.dev/rjd3highfreq):

```{r, echo = TRUE, eval = FALSE}
install.packages("rjd3highfreq", repos = c("https://rjdverse.r-universe.dev", "https://cloud.r-project.org"))
```


### Development version

You can install the development version of **rjd3highfreq** from [GitHub](https://github.com/) with:

```{r, eval = FALSE}
# Install development version from GitHub
```{r, echo = TRUE, eval = FALSE}
# install.packages("remotes")
remotes::install_github("rjdverse/rjd3highfreq")
```
Expand Down
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,31 @@ Running rjd3 packages requires **Java 17 or higher**. How to set up such
a configuration in R is explained
[here](https://jdemetra-new-documentation.netlify.app/#Rconfig)

### Latest release

To get the current stable version (from the latest release):

- From GitHub:

``` r
# install.packages("remotes")
remotes::install_github("rjdverse/rjd3toolkit@*release")
remotes::install_github("rjdverse/rjd3sts@*release")
remotes::install_github("rjdverse/rjd3highfreq@*release")
```

- From [r-universe](https://rjdverse.r-universe.dev/rjd3highfreq):

``` r
install.packages("rjd3highfreq", repos = c("https://rjdverse.r-universe.dev", "https://cloud.r-project.org"))
```

### Development version

You can install the development version of **rjd3highfreq** from
[GitHub](https://github.com/) with:

``` r
# Install development version from GitHub
# install.packages("remotes")
remotes::install_github("rjdverse/rjd3highfreq")
```
Expand Down

0 comments on commit 2a9e1c6

Please sign in to comment.