Nothing
test_that("Blurer works", {
#' @importFrom checkmate expect_character expect_data_frame
n <- 40
df <- data.frame(
A = sample(LETTERS[1:4], n, T),
B = rnorm(n)
)
blur <- list(A = "Up", B = "Down")
.tra <- Blurer$new(blur)
expect_character(.tra$transform(df$A))
expect_equal(length(.tra$transform(df$A)), n)
.mut <- .tra$mutate(df, A)
expect_data_frame(.mut)
expect_equal(nrow(.mut), n)
})
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.