Used to stack results (e.g. dfSummary
) from a list of analysis pipeline
output formatted like the result of RunWorkflows()
. Also adds study level
metadata when provided.
Usage
BindResults(
lAnalysis,
strName,
dSnapshotDate = Sys.Date(),
strStudyID = NULL,
bUselData = FALSE
)
Arguments
- lAnalysis
Named List of analysis results in the format returned by
RunWorkflows()
.- strName
Name of the object to stack. Pulled from
lAnalysis
(or fromlAnalysis$lData
whenbUselData
isTRUE
).- dSnapshotDate
Date of the snapshot. Default is
Sys.Date()
.- strStudyID
Study ID.
- bUselData
Should the function bind results from an
lData
object (or look directly in the root elements oflAnalysis
)? Default isFALSE.