From multiple projectInfos, generate one combined GPF

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

GPF

Author

Daniel Lill (IntiQuan)

Examples

if (FALSE) {
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))
}