| FLModel {FLCore} | R Documentation |
The FLModel class provides a virtual class that developers of various statistical models can use to implement classes that allow those models to be tested, fitted and presented.
Slots in this class attempt to map all the usual outputs for a modelling
exercise, together with the standard inputs. Input data is stored in slots
created by each of those classes based on FLModel.See, for example
FLSR-class for a class used for stock-recruitment models.
Various fitting algorithms, similar to those present in the basic R packages are
currently available for FLModel, including fmle, nls-FLCore
and glm.
character.character.numeric.FLQuant.FLQuant.formula.function.function.function.FLPar.logLik.array.list. signature(object=FLModel,k=numeric) signature(object=FLModel,k=missing) signature(object=missing) signature(object=missing,start=missing) signature(formula=FLModel,data=missing,start=missing,control=missing,algorithm=missing,trace=missing,subset=missing,weights=missing,na.action=missing,model=missing,lower=missing,upper=missing) The FLR Team