Rename/pick parameters and covariates in a GPF
generate_GPFFromProjectInfo.RdRename/pick parameters and covariates in a GPF
generate_GPFFromProjectInfo(
projectInfo,
filename = NULL,
FLAGdropErrParams = TRUE
)Arguments
- projectInfo
A GPFprojectInfo, i.e. a list(projectPath, indPars_select, popPars_select, cov_select)
- filename
File to write the GPF to
- FLAGdropErrParams
Flag whether to drop error parameters such as "error_PROP1" (defaults to TRUE)
Value
See also
Other Parameter sampling:
calcIndParamValues(),
calcTypicalIndParamValues(),
combineGPF(),
generate_GPFFromIQRnlmeEst(),
generate_GPFFromIQRnlmeProject(),
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(),
select_FromGPF(),
specifyParamSampling(),
transformParamToNormal(),
untransformParamFromNormal()
Other GPF:
GPF(),
addIIVCov_toGPF(),
combineGPF(),
export_GPF(),
generate_GPFFromIQRnlmeEst(),
generate_GPFFromIQRnlmeProject(),
generate_GPFFromProjectInfoList(),
imputeTYPEcol_GPF(),
load_GPF(),
read_GPFFromCSV(),
read_GPFFromXLS(),
sample_GPF(),
select_FromGPF()
Examples
if (FALSE) { # \dontrun{
projPath <- system.file("examples/GPFExamples/project3_Epo", package = "IQRtools")
projectInfo <- GPFprojectInfo(projPath)
xls_fromProject <- generate_GPFFromProjectInfo(projectInfo, FLAGdropErrParams = TRUE)
# Rename parameters to parameter_X1 with indPars_select
pars <- getPopParameters_IQRnlmeProject(projPath)
projectInfo <- GPFprojectInfo(projPath,
indPars_select = setNames(names(pars),
paste0(names(pars), "_X1")))
xls_fromProject <- generate_GPFFromProjectInfo(projectInfo, FLAGdropErrParams = TRUE)
} # }
