Select and, optionally, rename parameters and covariates in a GPF
select_FromGPF.Rd
Select and, optionally, rename parameters and covariates in a GPF
select_FromGPF(
obj,
parameters = NULL,
covariates = NULL,
FLAGdropErrParameters = TRUE,
filename = NULL
)
Arguments
- obj
a GPF object, or a filepath, or a IQRnlmeProject directory, from which a GPF object can be loaded or generated. If not a GPF object, the constructor GPF will be called.
- parameters
a (possibly named) character vector denoting model parameters to be selected. If NULL (default), all model parameters are selected.
- covariates
a (possibly named) character vector.
- FLAGdropErrParameters
Logical (default TRUE), indicating whether to drop error parameters such as "error_PROP1"
- filename
Character filename (default NULL) where the resulting GPF object can (optionally) be saved.
Value
A GPF object.
See also
Other Parameter sampling:
calcIndParamValues()
,
calcTypicalIndParamValues()
,
combineGPF()
,
generate_GPFFromIQRnlmeEst()
,
generate_GPFFromIQRnlmeProject()
,
generate_GPFFromProjectInfo()
,
generate_GPFFromProjectInfoList()
,
getCorMatrixUncertainty()
,
getCovMatrixIIV()
,
getCovMatrixUncertainty()
,
getNamesAllParameters()
,
getNamesCovariateParameters()
,
getNamesCovariates()
,
getNamesErrorParameters()
,
getNamesIIVCorrParameters()
,
getNamesIIVParameters()
,
getNamesModelParameters()
,
getParamEstimates()
,
getParamTransformationTypes()
,
imputeTYPEcol_GPF()
,
is_GPF()
,
is_IQRnlmeParamSpec()
,
read_GPFFromCSV()
,
read_GPFFromXLS()
,
sampleIDs()
,
sampleIndParamValues()
,
sampleParamFromUncertainty()
,
sampleRandomEffects()
,
sample_GPF()
,
specifyParamSampling()
,
transformParamToNormal()
,
untransformParamFromNormal()
Other GPF:
GPF()
,
addIIVCov_toGPF()
,
combineGPF()
,
export_GPF()
,
generate_GPFFromIQRnlmeEst()
,
generate_GPFFromIQRnlmeProject()
,
generate_GPFFromProjectInfo()
,
generate_GPFFromProjectInfoList()
,
imputeTYPEcol_GPF()
,
load_GPF()
,
read_GPFFromCSV()
,
read_GPFFromXLS()
,
sample_GPF()
Examples
if (FALSE) { # \dontrun{
GPF_A_PD <- select_FromGPF(
"../03-Models/A/PD/GPF_A_PD.xlsx",
parameters = c("EC50xA"="EC50",
"EMAXxA"="EMAX",
"hillxA"="hill")
)
} # }