Skip to content

Commit

Permalink
Updated README install instructions to use pak instead of remotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
astamm committed Jan 6, 2025
1 parent ed4b957 commit 989985e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
13 changes: 8 additions & 5 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,21 @@ functional data or density-valued data.

## Installation

You can install the latest stable version of
[**flipr**](https://permaverse.github.io/flipr/) on CRAN with:
You can install the package from [CRAN](https://CRAN.R-project.org) with:

``` r
install.packages("flipr")
```

Or you can install the development version from [GitHub](https://github.com/) with:
Alternatively, You can install the development version of
[**flipr**](https://permaverse.github.io/flipr/) from
[GitHub](https://github.com/) with:

``` r
# install.packages("remotes")
remotes::install_github("permaverse/flipr")
# install.packages("pak")
pak::pak("permaverse/flipr")
```

## Example

```{r}
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,20 @@ data.

## Installation

You can install the latest stable version of
[**flipr**](https://permaverse.github.io/flipr/) on CRAN with:
You can install the package from [CRAN](https://CRAN.R-project.org)
with:

``` r
install.packages("flipr")
```

Or you can install the development version from
Alternatively, You can install the development version of
[**flipr**](https://permaverse.github.io/flipr/) from
[GitHub](https://github.com/) with:

``` r
# install.packages("remotes")
remotes::install_github("permaverse/flipr")
# install.packages("pak")
pak::pak("permaverse/flipr")
```

## Example
Expand Down

0 comments on commit 989985e

Please sign in to comment.