Skip to content

Commit

Permalink
Prevent plpData from being evaluated during do.call
Browse files Browse the repository at this point in the history
  • Loading branch information
lhjohn committed Mar 27, 2024
1 parent ccf5a23 commit 2acedb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/RunMultiplePlp.R
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ runMultiplePlp <- function(
if(!analysisExists){
plpData <- PatientLevelPrediction::loadPlpData(file.path(saveDirectory, settings$dataLocation))
runPlpSettings <- list(
plpData = plpData,
plpData = quote(plpData),
outcomeId = modelDesign$outcomeId,
analysisId = settings$analysisId,
populationSettings = modelDesign$populationSettings,
Expand Down

0 comments on commit 2acedb9

Please sign in to comment.