Skip to content

Commit

Permalink
Merge branch 'dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dramanica committed Nov 14, 2023
2 parents a888236 + 2235ae6 commit 42df1d9
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,24 @@ An overview of the capabilities of `tidysdm` is given in [Leonardi et al.

## Installation

`tidysdm` is still at the **beta** stage of development, and there is no official release on
CRAN yet.
`tidysdm` is on CRAN, and the easiest way to install it is with:

You can install the latest version of tidysdm from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("EvolEcolGroup/tidysdm")
```
install.packages("tidysdm")
```

For the development version of `tidysdm`, which includes experimental features
that might not be mature yet, use:
The version on CRAN is recommended for every day use. New features and
bug fixes appear first on the `dev` branch on GitHub, before they make
their way to CRAN. If you need to have early access to these new
features, you can install `tidysdm` directly from GitHub. To install
from GitHub, you will need to use `devtools`; if you haven't done so
already, get it from CRAN with `install.packages("devtools")`.


You can install the latest `dev` version of tidysdm from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("EvolEcolGroup/tidysdm", ref = "dev")
```

Expand Down

0 comments on commit 42df1d9

Please sign in to comment.