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