Skip to content

Commit

Permalink
#29 fix incorrect join method
Browse files Browse the repository at this point in the history
(was resulting in tibbles in list-column rather than list-column of models)
  • Loading branch information
egouldo committed Jul 31, 2024
1 parent 4eaacc6 commit aac5c51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/meta_analyse_datasets.R
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ meta_analyse_datasets <- function(MA_data, filter_vars = NULL){

by <- join_by("dataset", !!!filter_var_names)

out <- nest_join(out, multivar_mods, by) %>%
out <- left_join(out, multivar_mods, by) %>%
select(-ends_with("_colname"))

} else {
Expand Down

1 comment on commit aac5c51

@egouldo
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#63

Please sign in to comment.