-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathgetMeanWeight.Rd
55 lines (53 loc) · 1.99 KB
/
getMeanWeight.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/summary_methods.R
\name{getMeanWeight}
\alias{getMeanWeight}
\title{Calculate the mean weight of the community}
\usage{
getMeanWeight(sim, species = NULL, ...)
}
\arguments{
\item{sim}{A \linkS4class{MizerSim} object}
\item{species}{The species to be selected. Optional. By default all target
species are selected. A vector of species names, or a
numeric vector with the species indices, or a logical vector indicating for
each species whether it is to be selected (TRUE) or not.}
\item{...}{
Arguments passed on to \code{\link[=get_size_range_array]{get_size_range_array}}
\describe{
\item{\code{min_w}}{Smallest weight in size range. Defaults to smallest weight in
the model.}
\item{\code{max_w}}{Largest weight in size range. Defaults to largest weight in the
model.}
\item{\code{min_l}}{Smallest length in size range. If supplied, this takes
precedence over \code{min_w}.}
\item{\code{max_l}}{Largest length in size range. If supplied, this takes precedence
over \code{max_w}.}
}}
}
\value{
A vector containing the mean weight of the community through time
}
\description{
Calculates the mean weight of the community through time. This is simply the
total biomass of the community divided by the abundance in numbers. You can
specify minimum and maximum weight or length range for the species. Lengths
take precedence over weights (i.e. if both min_l and min_w are supplied, only
min_l will be used). You can also specify the species to be used in the
calculation.
}
\examples{
mean_weight <- getMeanWeight(NS_sim)
years <- c("1967", "2010")
mean_weight[years]
getMeanWeight(NS_sim, species = c("Herring", "Sprat", "N.pout"))[years]
getMeanWeight(NS_sim, min_w = 10, max_w = 5000)[years]
}
\seealso{
Other functions for calculating indicators:
\code{\link{getCommunitySlope}()},
\code{\link{getMeanMaxWeight}()},
\code{\link{getProportionOfLargeFish}()}
}
\concept{functions for calculating indicators}
\concept{summary_function}