Nothing
fit <- lm(cbind(mpg, disp, hp) ~ factor(cyl), data = mtcars)
m <- aov(fit)
mp <- model_parameters(m)
test_that("model_parameters.maov", {
expect_equal(
mp$Sum_Squares,
as.vector(do.call(c, lapply(summary(m), function(i) as.data.frame(i)$`Sum Sq`))),
tolerance = 1e-3
)
expect_equal(
mp[["F"]],
as.vector(do.call(c, lapply(summary(m), function(i) as.data.frame(i)[["F value"]]))),
tolerance = 1e-3
)
})
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.