pwc <- df %>%
group_by(group) %>%
pairwise_t_test(
value ~ variable1, paired = TRUE,
p.adjust.method = "bonferroni", detailed = TRUE
)
pwc does include statistic or dfs. This only happens when I combine group_by and pairwise_t_test. Why is that?
This only happens when I combine group_by and pairwise_t_test. Why is that?