pairwise_t_test不返回统计信息

pairwise_t_test not returning statistic

提问人:mehtam 提问时间:9/14/2023 最后编辑:neilfwsmehtam 更新时间:9/14/2023 访问量:33

问:

pwc <- df %>%
  group_by(group) %>%
  pairwise_t_test(
    value ~ variable1, paired = TRUE,
    p.adjust.method = "bonferroni", detailed = TRUE
  )

普华永道确实包括统计或DFS。只有当我将group_by和pairwise_t_test结合起来时,才会发生这种情况。为什么?

只有当我将group_by和pairwise_t_test结合起来时,才会发生这种情况。为什么?

r rstatix

评论

2赞 neilfws 9/14/2023
欢迎来到 Stack Overflow。如果你通过以纯文本格式包含一个小型的代表性数据集来使这个问题可重现,那么帮助会更容易 - 例如,如果它不是太大,则输出 。dput(df)
0赞 Paulb 9/14/2023
你的问题更适合这里 stats.stackexchange.com。你可能会更快地得到答案。

答: 暂无答案