Nothing
library(testthat)
library(numspellR)
test_that("numspellr works on numeric vector wrapped in data frame", {
df <- data.frame(x = c(1, 1, 1, 2, 2, 2, 2))
res <- numspellr(df, lang = "english")
expect_true(is.data.frame(res))
expect_true("avg_spell" %in% names(res))
expect_true(is.numeric(res$avg_spell))
})
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.