| MLZ_data-class {MLZ} | R Documentation |
MLZ_data
Description
An S4 class for storing data and life history parameters for a single stock.
Method functions summary and plot are available for this class (see examples).
Slots
StockName of stock.
YearA vector of years to be considered in the model. Missing years are permitted.
Len_binsA vector of midpoints of length bins for
Len_matrix.Len_matrixA matrix of size data. The i-th row corresponds to the i-th year in
MLZ_data@Year. The j-th column indexes the j-th length inMLZ_data@Len_bins.Len_dfA data frame containing individual length observations. The first column should be the Year and the second column should be the length.
vbLinfL-infinity from the von Bertalanffy growth function.
vbKParameter K from the von Bertalanffy growth function.
vbt0Parameter t0 from the von Bertalanffy growth function.
LcLength of full selectivity.
MNatural mortality rate. If specified, this is also the lower limit for Z.
lwbExponent
bfrom the allometric length-weight functionW = aL^b.MeanLengthVector of mean lengths of animals larger than Lc. The i-th entry corresponds to the i-th year in
MLZ_data@Year.ssVector of annual sample sizes for MeanLength. The i-th entry corresponds to the i-th year in
MLZ_data@Year.CPUEVector of catch-per-unit-effort data. The i-th entry corresponds to the i-th year in
MLZ_data@Year.EffortVector of effort data. The i-th entry corresponds to the i-th year in
MLZ_data@Year.length.unitsUnit of measurement for lengths, i.e. "cm" or "mm".
Examples
data(Goosefish); Goosefish
summary(Goosefish)
plot(Goosefish)
new("MLZ_data")