From multiple projectInfos, generate one combined GPF
generate_GPFFromProjectInfoList.Rd
From multiple projectInfos, generate one combined GPF
generate_GPFFromProjectInfoList(
projectInfoList,
filename = NULL,
FLAGdropErrParams = TRUE
)
Arguments
- projectInfoList
list(GPFprojectInfo,...)
- filename
file.path for final xls-file
- 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_GPFFromProjectInfo()
,
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_GPFFromProjectInfo()
,
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)
# Duplicate the model, add _X1 as suffix
pars <- getPopParameters_IQRnlmeProject(projPath)
projectInfo_x1 <- GPFprojectInfo(projPath,
indPars_select = setNames(names(pars),
paste0(names(pars), "_X1")))
xls_fromTwoProjects <- generate_GPFFromProjectInfoList(list(projectInfo, projectInfo_X1))
} # }