forked from vegandevs/vegan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanosim.Rd
131 lines (118 loc) · 5.41 KB
/
anosim.Rd
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
\name{anosim}
\alias{anosim}
\alias{summary.anosim}
\alias{plot.anosim}
\title{ Analysis of Similarities }
\description{
Analysis of similarities (ANOSIM) provides a way to test statistically
whether there is a significant difference between two or more groups
of sampling units.
}
\usage{
anosim(x, grouping, permutations = 999, distance = "bray", strata = NULL,
parallel = getOption("mc.cores"))
}
\arguments{
\item{x}{Data matrix or data frame in which rows are samples and
columns are response variable(s), or a dissimilarity object or a
symmetric square matrix of dissimilarities.}
\item{grouping}{Factor for grouping observations.}
\item{permutations}{a list of control values for the permutations
as returned by the function \code{\link[permute]{how}}, or the
number of permutations required, or a permutation matrix where each
row gives the permuted indices.}
\item{distance}{Choice of distance metric that measures the
dissimilarity between two observations. See \code{\link{vegdist}} for
options. This will be used if \code{x} was not a dissimilarity
structure or a symmetric square matrix.}
\item{strata}{An integer vector or factor specifying the strata for
permutation. If supplied, observations are permuted only within the
specified strata.}
\item{parallel}{Number of parallel processes or a predefined socket
cluster. With \code{parallel = 1} uses ordinary, non-parallel
processing. The parallel processing is done with \pkg{parallel}
package.}
}
\details{
Analysis of similarities (ANOSIM) provides a way to test statistically
whether there is a significant difference between two or more groups
of sampling units. Function \code{anosim} operates directly on a
dissimilarity matrix. A suitable dissimilarity matrix is produced by
functions \code{\link{dist}} or \code{\link{vegdist}}. The
method is philosophically allied with NMDS ordination
(\code{\link{monoMDS}}), in that it uses only the rank order of
dissimilarity values.
If two groups of sampling units are really different in their species
composition, then compositional dissimilarities between the groups
ought to be greater than those within the groups. The \code{anosim}
statistic \eqn{R} is based on the difference of mean ranks between
groups (\eqn{r_B}) and within groups (\eqn{r_W}):
\deqn{R = (r_B - r_W)/(N (N-1) / 4)}
The divisor is chosen so that \eqn{R} will be in the interval
\eqn{-1 \dots +1}, value \eqn{0} indicating completely random
grouping.
The statistical significance of observed \eqn{R} is assessed by
permuting the grouping vector to obtain the empirical distribution
of \eqn{R} under null-model. See \code{\link{permutations}} for
additional details on permutation tests in Vegan. The distribution
of simulated values can be inspected with the \code{\link{permustats}}
function.
The function has \code{summary} and \code{plot} methods. These both
show valuable information to assess the validity of the method: The
function assumes that all ranked dissimilarities within groups
have about equal median and range. The \code{plot} method uses
\code{\link{boxplot}} with options \code{notch=TRUE} and
\code{varwidth=TRUE}.
}
\value{
The function returns a list of class \code{"anosim"} with following
items:
\item{call }{Function call.}
\item{statistic}{The value of ANOSIM statistic \eqn{R}}
\item{signif}{Significance from permutation.}
\item{perm}{Permutation values of \eqn{R}. The distribution of
permutation values can be inspected with function \code{\link{permustats}}.}
\item{class.vec}{Factor with value \code{Between} for dissimilarities
between classes and class name for corresponding dissimilarity
within class.}
\item{dis.rank}{Rank of dissimilarity entry.}
\item{dissimilarity}{The name of the dissimilarity index: the
\code{"method"} entry of the \code{dist} object.}
\item{control}{A list of control values for the permutations
as returned by the function \code{\link[permute]{how}}.}
}
\references{
Clarke, K. R. (1993). Non-parametric multivariate analysis of changes
in community structure. \emph{Australian Journal of Ecology} 18,
117--143.
Warton, D.I., Wright, T.W., Wang, Y. 2012. Distance-based multivariate
analyses confound location and dispersion effects. \emph{Methods in
Ecology and Evolution}, 3, 89--101
}
\author{Jari Oksanen, with a help from Peter R. Minchin.}
\note{
The \code{anosim} function can confound the differences between groups
and dispersion within groups and the results can be difficult to
interpret (cf. Warton et al. 2012). The function returns a lot of
information to ease studying its performance. Most \code{anosim}
models could be analysed with \code{\link{adonis2}} which seems to be a
more robust alternative.
}
\seealso{\code{\link{mrpp}} for a similar function using original
dissimilarities instead of their ranks.
\code{\link{dist}} and \code{\link{vegdist}} for obtaining
dissimilarities, and \code{\link{rank}} for ranking real values. For
comparing dissimilarities against continuous variables, see
\code{\link{mantel}}. Function \code{\link{adonis2}} is a more robust
alternative that should preferred. }
\examples{
data(dune)
data(dune.env)
dune.dist <- vegdist(dune)
dune.ano <- with(dune.env, anosim(dune.dist, Management))
summary(dune.ano)
plot(dune.ano)
}
\keyword{multivariate }
\keyword{ nonparametric }
\keyword{ htest }