Skip to content

Commit

Permalink
Factor out function
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Jul 25, 2023
1 parent 0263938 commit 638e765
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions R/brm_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ brm_data <- function(
levels_time = NULL
)
brm_data_validate(data = out)
brm_data_preprocess(out)
}

brm_data_preprocess <- function(out) {
out <- brm_data_level(out)
out <- brm_data_fill(out)
out <- brm_data_select(out)
Expand Down

0 comments on commit 638e765

Please sign in to comment.