R/summary_methods.R
getMeanWeight.Rd
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.
getMeanWeight(sim, species = 1:nrow(sim@params@species_params), ...)
sim | A MizerSim object |
---|---|
species | Numeric or character vector of species to include in the calculation. |
... | Arguments passed on to
|
A vector containing the mean weight of the community through time
Other functions for calculating indicators:
getCommunitySlope()
,
getMeanMaxWeight()
,
getProportionOfLargeFish()
if (FALSE) { data(NS_species_params_gears) data(inter) params <- newMultispeciesParams(NS_species_params_gears, inter) sim <- project(params, effort=1, t_max=10) getMeanWeight(sim) getMeanWeight(sim, species=c("Herring","Sprat","N.pout")) getMeanWeight(sim, min_w = 10, max_w = 5000) }