Nothing
test_that("PipeOpFDASmooth - basic properties", {
pop = po("fda.smooth")
expect_pipeop(pop)
expect_identical(pop$id, "fda.smooth")
})
test_that("PipeOpFDASmooth", {
po_smooth = po("fda.smooth")
# regular
task1 = tsk("fuel")
task1$col_roles$feature = "NIR"
# irregular
task2 = tsk("dti")
task2$col_roles$feature = "cca"
test_cca = function(method, args) {
x = task2$data(cols = "cca")$cca
po_smooth$param_set$set_values(method = method, args = args)
observed_train = po_smooth$train(list(task2))[[1L]]$data(cols = "cca")[[1L]]
observed_predict = po_smooth$predict(list(task2))[[1L]]$data(cols = "cca")[[1L]]
expected = suppressMessages(invoke(tf::tf_smooth, x = x, method = method, .args = args))
expect_equal(observed_train, expected)
expect_equal(observed_predict, expected)
}
test_nir = function(method, args) {
x = task1$data(cols = "NIR")$NIR
po_smooth$param_set$set_values(method = method, args = args)
observed_train = po_smooth$train(list(task1))[[1L]]$data(cols = "NIR")[[1L]]
observed_predict = po_smooth$predict(list(task1))[[1L]]$data(cols = "NIR")[[1L]]
expected = suppressMessages(invoke(tf::tf_smooth, x = x, method = method, .args = args))
expect_equal(observed_train, expected)
expect_equal(observed_predict, expected)
}
test_nir("lowess", list(f = 0.3))
test_cca("lowess", list(f = 0.2))
test_nir("rollmean", list(k = 5))
test_nir("rollmedian", list())
test_nir("savgol", list())
# verbose parameter is respected
po_smooth$param_set$set_values(verbose = TRUE)
expect_message(po_smooth$train(list(task1)), "using")
po_smooth$param_set$set_values(verbose = FALSE)
expect_message(po_smooth$train(list(task1)), NA)
})
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.