| MLZ_model-class {MLZ} | R Documentation |
MLZ_model
Description
An S4 class for storing model results.
Method functions summary and plot are available for this class (see examples).
Slots
StockName of stock (obtained from an object of class
MLZ_data).ModelName of model used for mortality estimation.
time.seriesA data frame summarizing observed time series data and predicted values from model.
estimatesA matrix of parameter estimates and derived values and their standard errors, from
sdreport.negLLThe negative log-likelihood from the model.
n.changepointThe number of change points in the model.
n.speciesThe number of species/stocks in the model.
grid.searchA data frame reporting the log-likelihood values from a grid search over change points. See
profile_ML,profile_MLCR, andprofile_MLmulti.objA list with components from
MakeADFun.optA list with components from calling
optimtoobj.sdrepA class
sdreportlist with components from callingsdreporttoobj.length.unitsUnit of measurement for lengths, i.e. "cm" or "mm".
Examples
## Not run:
data(Goosefish)
goose.model <- ML(Goosefish, ncp = 2, grid.search = FALSE, figure = FALSE)
class(goose.model)
summary(goose.model)
plot(goose.model, residuals = FALSE)
## End(Not run)