Nothing
dataset <- data.frame(
outcome = c( 1,2,3, 2,3,4, 5,6,7 ),
group = factor(c( "a","a","a", "b","b","b","c","c","c"))
)
anova1 <- aov(outcome ~ group, data = dataset)
test_that("posthocPairwiseT example works", {
expect_equal(
posthocPairwiseT(anova1),
with(dataset, pairwise.t.test(outcome, group))
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.