library(mlr3learners.fnn)
test_that("regr.fnn", {
learner = lrn("regr.fnn")
fun = FNN::knn.reg # replace!
exclude = c(
"train", # handled by mlr
"test", # handled by mlr
"y" # handled by mlr
)
ParamTest = run_paramtest(learner, fun, exclude)
expect_true(ParamTest, info = paste0(
"
Missing parameters:
",
paste0("- '", ParamTest$missing, "'", collapse = "
")))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.