Nothing
hpc <- hpc_data[1:150, c(2:5, 8)] %>% as.data.frame()
test_that('bad input', {
expect_snapshot(error = TRUE, translate(null_model(mode = "regression") %>% set_engine()))
expect_snapshot(error = TRUE, translate(null_model() %>% set_engine("wat?")))
expect_warning(
translate(
null_model(mode = "regression") %>% set_engine("parsnip", x = hpc[,1:3], y = hpc$class)
),
class = "parsnip_protected_arg_warning"
)
})
# ------------------------------------------------------------------------------
num_pred <- names(hpc)[1:3]
hpc_bad_form <- as.formula(class ~ term)
# ------------------------------------------------------------------------------
test_that('nullmodel execution', {
expect_no_condition(
res <- fit(
null_model(mode = "regression") %>% set_engine("parsnip"),
compounds ~ log(input_fields) + class,
data = hpc
)
)
expect_no_condition(
res <- fit(
null_model(mode = "regression"),
compounds ~ log(input_fields) + class,
data = hpc
)
)
expect_no_condition(
res <- fit_xy(
null_model(mode = "regression") %>% set_engine("parsnip"),
x = hpc[, num_pred],
y = hpc$num_pending
)
)
expect_no_condition(
res <- fit_xy(
null_model(mode = "regression"),
x = hpc[, num_pred],
y = hpc$num_pending
)
)
expect_snapshot(
error = TRUE,
res <- fit(
null_model(mode = "regression") %>% set_engine("parsnip"),
hpc_bad_form,
data = hpc
)
)
## multivariate y
expect_no_condition(
res <- fit(
null_model(mode = "regression") %>% set_engine("parsnip"),
cbind(compounds, input_fields) ~ .,
data = hpc
)
)
expect_no_condition(
res <- fit(
null_model(mode = "regression"),
cbind(compounds, input_fields) ~ .,
data = hpc
)
)
})
test_that('nullmodel prediction', {
uni_pred <- tibble(.pred = rep(30.1, 5))
inl_pred <- rep(30.1, 5)
mw_pred <- tibble(gear = rep(3.6875, 5),
carb = rep(2.8125, 5))
res_xy <- fit_xy(
null_model(mode = "regression") %>% set_engine("parsnip"),
x = hpc[, num_pred],
y = hpc$num_pending
)
expect_equal(uni_pred,
predict(res_xy, new_data = hpc[1:5, num_pred]),
tolerance = .01)
res_form <- fit(
null_model(mode = "regression") %>% set_engine("parsnip"),
num_pending ~ log(compounds) + class,
data = hpc
)
expect_equal(inl_pred,
predict(res_form, hpc[1:5, ])$.pred,
tolerance = .01)
# Multivariate y
res <- fit(
null_model(mode = "regression") %>% set_engine("parsnip"),
cbind(gear, carb) ~ .,
data = mtcars
)
expect_equal(
setNames(mw_pred, paste0(".pred_", names(mw_pred))),
predict(res, mtcars[1:5, ])
)
})
# ------------------------------------------------------------------------------
test_that('classification', {
expect_no_condition(
null_model <- null_model(mode = "classification") %>%
set_engine("parsnip") %>%
fit(class ~ ., data = hpc)
)
expect_true(!is.null(null_model$fit))
})
# ------------------------------------------------------------------------------
test_that('null_model printing', {
expect_snapshot(print(null_model(mode = "classification")))
expect_snapshot(
print(
null_model(mode = "classification") %>%
set_engine("parsnip") %>%
translate()
)
)
})
test_that("check_args() works", {
# Here for completeness, no checking is done
expect_true(TRUE)
})
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.