11.1 Calculate performance statistics
<- my_cool_model %>%
my_cool_model_rsq collect_metrics(summarize = FALSE) %>%
filter(.metric == "rsq") %>%
select(id, my_cool_model = .estimate)
## Repeat that for more models, then:
<- my_cool_model_rsq %>%
rsq_estimates inner_join(my_other_model_rsq) %>%
inner_join(my_other_other_model_rsq)