Skip to content

Commit

Permalink
Merge pull request #565 from yjunechoe/align-validation_step-to-report
Browse files Browse the repository at this point in the history
Better alignment of `agent$validation_step` to rows of `get_agent_report(agent)`
  • Loading branch information
rich-iannone authored Sep 10, 2024
2 parents 5a00f4b + 2ce7f67 commit a48b998
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/get_agent_report.R
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,8 @@ get_agent_report <- function(

# nocov start

validation_set <- validation_set[report_tbl$i, ]
validation_set <- validation_set %>%
dplyr::filter(.data$i %in% report_tbl$i)
eval <- eval[report_tbl$i]
extracts <-
agent$extracts[
Expand Down

0 comments on commit a48b998

Please sign in to comment.