Christopher Parks
Results
2
issues of
Christopher Parks
When composing plots using `wrap_plots()` or plot arithmetic operators in an R Markdown or Quarto document, and assigning the resulting patchwork to an object using `
rstatix::t_test() doesen't work with unused factor levels while stats::t.test() accommodates them.
3
In the following example, base R `stats::t.test()` works, but `rstatix::t_test()` doesn't. I think the reason for the error is because of unused factor levels. ``` r # Import libraries. library(tidyverse)...