Nothing
context("Design")
test_that("transpose works", {
ps = ParamSet_legacy$new(list(
ParamFct$new("f", levels = c("a", "b")),
ParamInt$new("i", lower = 1, upper = 5)
))
ps$add_dep("i", on = "f", CondEqual("a"))
data = data.table(f = c("a", "b"), i = c(1L, NA))
d = Design$new(ps, data, remove_dupl = FALSE)
xs = d$transpose(filter_na = FALSE)
expect_equal(xs, list(list(f = "a", i = 1L), list(f = "b", i = NA_integer_)))
xs = d$transpose(filter_na = TRUE)
expect_equal(xs, list(list(f = "a", i = 1L), list(f = "b")))
xs2 = d$transpose(filter_na = TRUE, trafo = TRUE)
expect_equal(xs, xs2)
# now a trafo, with a dep
ps$extra_trafo = function(x, param_set) {
if (!is.null(x$i)) {
x$i = x$i + 10
}
return(x)
}
xs = d$transpose(trafo = TRUE, filter_na = FALSE)
expect_equal(xs, list(list(f = "a", i = 11L), list(f = "b", i = NA_integer_)))
xs = d$transpose(trafo = TRUE, filter_na = TRUE)
expect_equal(xs, list(list(f = "a", i = 11L), list(f = "b")))
})
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.