Skip to content

Commit

Permalink
fix seq_along bug
Browse files Browse the repository at this point in the history
  • Loading branch information
egillax committed Jul 2, 2024
1 parent 1f0da9a commit b3b7ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Main.R
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ execute <- function(jobContext) {
modelInfo <- getModelInfo(modelSaveLocation)

designs <- list()
for (i in seq_along(modelInfo)) {
for (i in seq_len(nrow(modelInfo))) {
df <- modelInfo[i, ]

design <- PatientLevelPrediction::createValidationDesign(
Expand Down

0 comments on commit b3b7ead

Please sign in to comment.