-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.Rmd
108 lines (74 loc) · 3.86 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
mFD <img src="man/figures/hexasticker_mFD.png" align="right" style="float:right; height:120px;"/>
=========================================================
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/mFD)](https://CRAN.R-project.org/package=mFD/)
[![R CMD check](https://github.com/CmlMagneville/mFD/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/CmlMagneville/mFD/actions/workflows/R-CMD-check.yaml)
[![Website deployment](https://github.com/CmlMagneville/mFD/actions/workflows/pkgdown.yaml/badge.svg)](https://github.com/CmlMagneville/mFD/actions/workflows/pkgdown.yaml)
[![License: GPL-2)](https://img.shields.io/badge/License-GPL%202-blue.svg)](https://choosealicense.com/licenses/gpl-2.0/)
[![LifeCycle](man/figures/lifecycle/lifecycle-stable.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![Project Status: Active](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![](http://cranlogs.r-pkg.org/badges/grand-total/mFD?color=blue)](https://cran.r-project.org/package=mFD)
<!-- badges: end -->
The `mFD` package provides a **"user friendly" interface** to compute a
**global assessment of functional diversity** by gathering computation of alpha
and beta functional indices. As no package before, it guides users through
functional analysis with one function per action to complete, several arguments
that can be changed and allows personalized graphical outputs. Various tutorials
are available on the mFD website to guide the user through the functional
workflow.
## Installation
You can install the stable version from [CRAN](https://cran.r-project.org/) with:
```{r, eval = FALSE}
# Install stable version of < mFD > from CRAN ----
install.packages("mFD")
```
Or you can install the development version from [GitHub](https://github.com/) with:
```{r, eval = FALSE}
## Install < remotes > package (if not already installed) ----
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}
## Install dev version of < mFD > from GitHub ----
remotes::install_github("CmlMagneville/mFD", build_vignettes = TRUE)
```
## Get started
```{r, eval = FALSE}
library("mFD")
```
To compute functional diversity indices, users need:
- a data frame summarizing species traits (species in rows, traits in columns).
The `mFD` package works with all kind of traits: quantitative, ordinal, nominal,
circular, and fuzzy-coded.
- a matrix summarizing species gathering into assemblages (assemblages in rows,
species in columns). All assemblages must at least contain one species.
- a data frame summarizing traits category (first column with traits name,
second column with traits type, third column with fuzzy name of fuzzy traits -
if no fuzzy traits: NA).
For a complete understanding of the functional workflow and the package
possibilities, please refer to the
[mFD General Workflow](https://cmlmagneville.github.io/mFD/articles/mFD_general_workflow.html) and other tutorial on the [mFD website](https://cmlmagneville.github.io/mFD/).
## Citation
Please cite this package as:
_Magneville, C., Loiseau, N., Albouy, C., Casajus, N., Claverie, T., Escalas, A., Leprieur, F., Maire, E., Mouillot, D., Villéger, S._ (2022).
mFD: an R package to compute and illustrate the multiple facets of functional diversity.
_Ecography_ https://onlinelibrary.wiley.com/doi/10.1111/ecog.05904
You can also run:
```{r, eval = FALSE}
citation("mFD")
```
## Contributions
SV, NL, CA, FL and CM coded the functions and their help.
SV and CM led tutorial writings. All authors tested the functions
and contributed to writing of helps and tutorials.
NC optimized the package and made it ready for CRAN submission.