Class initializaer for NlmePmlModel object
NlmePmlModel-class.RdThe following class represents an NLME/PML model object.
Slots
isPopulationIs this a population model (TRUE) or individual (FALSE)?
modelTypeTaken from NlmeModelType
isTimeBasedIs model time-based?
linearModelTypeType of linear model
isLinearFrozenIs linear model frozen?
pkModelAttrsTaken from NlmePkParameters
indirectModelAttrsTaken from NlmeIndirectParameters
emaxModelAttrsTaken from NlmeEmaxParameters
hasEffectsCompartmentIs there data available for an effects compartment?
errorModelTaken from NlmeErrorModel
structuralParamsList of structural parameters
outputParamsList of output parameters
diffEquationsList of differential equations
statementsList of PML statements
dosePointsList of dosepoints
covariateListList of covariates
columnMappingTaken from NlmeColumnMapping
doseMappingTaken from NlmeDoseMapping
paramsMappingTaken from NlmeParamsMapping
randParamsMappingTaken from NlmeRandParamsMapping
inputDataInput data source
doseDataDose data source
fixedParamDataFixed effect parameter data source
randParamDataRandom effect parameter data source
isTextualIs model textual (TRUE) or graphical (FALSE)?
pmloutputList of PML output to generate
modelInfoTaken from NlmePmlModelInfo
objectsdeprecated
objectsNeedRegeneratingdeprecated
randomEffectsStatementsCustom random effects statements
randomOccasionalEffectsStatementsCustom random occasional effects statements
userDefinedExtraDefsCustom definition for extra column and table generation
Examples
# \donttest{
# helper class
setClass("NlmePmlModelInfo",
slots = c(modelName = "character",
workingDir = "character"))
Model <-
new("NlmePmlModel",
modelInfo = new("NlmePmlModelInfo", modelName = "Model", workingDir = "."))
# }