FLIndex | R Documentation |
A class for modelling abundance indices.
FLIndex(object, ...)
## S4 method for signature 'FLQuant'
FLIndex(object, plusgroup = dims(object)$max, ...)
## S4 method for signature 'missing'
FLIndex(object, ...)
The FLIndex
object holds data and parameters related to abundance
indices.
Type of index (character
).
Statistical distribution of the index values
(character
).
Index values (FLQuant
).
Variance of the index (FLQuant
).
Catch numbers used to create the index (FLQuant
).
Catch weight of the index (FLQuant
).
Effort used to create the index (FLQuant
).
Selection pattern for the index (FLQuant
).
Catchability of the index (FLQuant
).
Name
of the stock (character
).
General description of the
object (character
).
Named numeric vector containing the
quant and year ranges, the plusgroup, and the period of the year, expressed
as proportions of a year, that corresponds to the index (numeric
).
The FLR Team
computeCatch, dims, iter, plot, propagate, summary, transform, trim, window, FLComp
# Create an FLIndex object.
fli <- FLIndex(index=FLQuant(rnorm(8), dim=c(1,8)), name="myTestFLindex")
summary(fli)
index(fli)
# Creat an FLIndex object using an existing FLQuant object.
data(ple4)
# Create a perfect index of abundance from abundance at age
fli2 <- FLIndex(index=stock.n(ple4))
# Add some noise around the signal
index(fli2) <- index(fli2)*exp(rnorm(1, index(fli2)-index(fli2), 0.1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.