Nothing
# Test plotting functions
# Plot functions return gg objects? ----
test_that("Prediction interval plots work for simple linear example", {
skip_on_cran()
d <- expand.grid(fac1=LETTERS[1:5], grp=factor(1:10),
obs=1:100)
suppressMessages({
d$y <- simulate(~fac1+(1|grp),family = gaussian,
newdata=d,
newparams=list(beta=c(2,1,3,4,7), theta=c(.25),
sigma = c(.23)))[[1]]
})
subD <- d[sample(row.names(d), 1000),]
g1 <- lmer(y~fac1+(1|grp), data=subD)
FE1 <- FEsim(g1)
p1 <- plotFEsim(FE1)
expect_s3_class(p1, "gg")
p1 <- plotREsim(REsim(g1))
expect_s3_class(p1, "gg")
})
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.