Skip to content

Commit

Permalink
- #42 update data extraction for plotting model means from `uni_mixed…
Browse files Browse the repository at this point in the history
…_effects` model

don't select `effects_analysis` only because `ManyEcoEvo*` are no longer grouped tibbles and selection drops required columns that were previously grouping columns.
  • Loading branch information
egouldo committed Sep 2, 2024
1 parent 217dc48 commit 41886b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -4007,8 +4007,8 @@ ManyEcoEvo_viz %>%
filter(model_name == "uni_mixed_effects",
dataset == "eucalyptus",
!!!filter_vars_main_analysis) %>%
left_join(ManyEcoEvo_results %>%
select(effects_analysis)) %>%
left_join(ManyEcoEvo_results,
by = join_by(exclusion_set, dataset, publishable_subset, expertise_subset, collinearity_subset, estimate_type)) %>%
ungroup() %>%
select(exclusion_set, dataset, estimate_type, effects_analysis, model) %>%
mutate(predictor_means = map(model, .f = ~ pluck(.x, "fit") %>%
Expand Down

0 comments on commit 41886b6

Please sign in to comment.