Nothing
context("test select_model")
gam_tbl <- model_gam_ex
gamm_tbl <- model_gamm_ex
test <- select_model(gam_tbl, gamm_tbl)
test_that("check if merging of gam and gamm works", {
expect_equal(nrow(test), length(unique(model_gamm_ex$id)))
expect_equal(names(test), unique(names(gam_tbl),
names(gamm_tbl)))
expect_true(all(model_gamm_ex$aic[2:6] + c(2,
4, 4, 6, 6) > test$aic[1], na.rm = TRUE))
})
# Test error messages and warnings
gam_tbl2 <- gam_tbl
gam_tbl2$aic <- NULL
gamm_tbl2 <- gamm_tbl[4:7]
test_that("test error messages", {
expect_error(select_model(gamm_tbl = gamm_tbl),
"Argument gam_tbl is missing")
expect_error(select_model(gam_tbl), "Argument gamm_tbl is missing")
expect_error(select_model(gam_tbl2, gamm_tbl),
"The following variables")
expect_error(select_model(gam_tbl, gamm_tbl2),
"The following variables")
expect_error(select_model(gam_tbl2, gamm_tbl2))
})
gam_tbl3 <- model_gam_ex[model_gam_ex$id == 1:3, ]
gamm_tbl3 <- model_gamm_ex[model_gamm_ex$id == 43, ]
test_that("check warnings if ids are in gamm_tbl but not in gam_tbl", {
expect_error(select_model(gam_tbl3, gamm_tbl3))
})
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.