Metadata-Version: 2.4
Name: proxirr
Version: 0.2.1
Summary: A package to calculate the Proximity to Irreplaceability family of metrics
Author-email: Daniele Baisero <daniele.baisero@gmail.com>
License-Expression: MIT
Project-URL: homepage, https://gitlab.com/daniele.baisero/proxirr
Project-URL: repository, https://gitlab.com/daniele.baisero/proxirr
Project-URL: bugtracker, https://gitlab.com/daniele.baisero/proxirr/issues
Keywords: proxirr,Proximity to Irreplaceability,Irreplaceability,Alpha,Beta,Gamma
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: tests
Requires-Dist: pytest; extra == "tests"
Requires-Dist: ruff; extra == "tests"
Dynamic: license-file

# proxirr

Library to calculate Proximity to Irreplaceability.

The methods for Alpha and Beta Irreplaceability were first described in:

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Baisero D., Schuster R. & Plumptre A.J.  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Redefining and Mapping Global Irreplaceability.  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Conservation Biology 2021;1-11.  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  [https://doi.org/10.1111/cobi.13806](https://doi.org/10.1111/cobi.13806)

## Installation

### Python

#### From PyPI

```bash
# bash
pip install proxirr
```
```python
# Python
import proxirr
```

### R

#### From CRAN

```r
# R
install.packages("proxirr")
library(proxirr)
```

#### From source code

Source code is available from [https://gitlab.com/daniele.baisero/proxirr](https://gitlab.com/daniele.baisero/proxirr).

```r
remotes::install_gitlab("daniele.baisero/proxirr", ref ="main", subdir = "R")
```
