pairwise_t_test not returning statistic

56 Views Asked by At
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?

0

There are 0 best solutions below