Nothing
test_that("tokens_match works", {
txt <- c(doc1 = "aa bb BB cc DD ee",
doc2 = "aa bb cc DD ee")
toks <- tokens(txt) %>%
tokens_tolower()
toks_conf1 <- tokens_match(toks, c("aa", "zz", "xx", "bb"))
expect_equal(
as.list(toks_conf1),
list(doc1 = c("aa", "bb", "bb"),
doc2 = c("aa", "bb"))
)
expect_identical(
types(toks_conf1),
c("aa", "zz", "xx", "bb")
)
toks_conf2 <- tokens_match(toks, types(tokens("aa zz xx bb")))
expect_equal(
as.list(toks_conf2),
list(doc1 = c("aa", "bb", "bb"),
doc2 = c("aa", "bb"))
)
expect_identical(
types(toks_conf2),
c("aa", "zz", "xx", "bb")
)
toks_conf3 <- tokens_match(toks, character())
expect_equal(
as.list(toks_conf3),
list(doc1 = character(),
doc2 = character())
)
expect_identical(
types(toks_conf3), character()
)
})
test_that("tokens_match works with padding", {
toks <- tokens("aa bb !", padding = TRUE, remove_punct = TRUE)
expect_identical(
types(tokens_match(toks, c("aa", "bb", "cc", ""))),
c("aa", "bb", "cc", "")
)
})
test_that("tokens_match coerce non-character feature", {
txt <- c(doc1 = "TRUE TRUE FALSE",
doc2 = "1 2 100")
toks <- tokens(txt) %>%
tokens_tolower()
expect_equal(types(tokens_match(toks, c(TRUE, FALSE))),
c("TRUE", "FALSE"))
expect_equal(types(tokens_match(toks, c(100, 1))),
c("100", 1))
})
test_that("tokens_match verbose works", {
toks <- tokens(head(data_corpus_inaugural))
expect_message(
tokens_match(toks, c("this", "the", "all", "be"), verbose = TRUE),
"tokens_match() changed",
fixed = TRUE
)
})
test_that("tokens_match works with as.matrix()", {
txt <- c("a b c", "b b b a", "c c b")
toks <- tokens(txt)
xtoks <- as.tokens_xptr(toks)
mat <- rbind(text2 = c(2L, 2L, 2L, 1L),
text3 = c(3L, 3L, 2L, 0L))
# tokens
expect_identical(
as.matrix(tokens_match(toks, c("a", "b", "c", "x")))[2:3,],
mat
)
expect_identical(
as.matrix(tokens_match(toks, c("a", "b", "c", "x")), extract = 2:3),
mat
)
expect_identical(
as.matrix(tokens_match(toks[2:3], c("a", "b", "c", "x"))),
mat
)
# tokens_xptr
expect_identical(
as.matrix(tokens_match(xtoks, c("a", "b", "c", "x")))[2:3,],
mat
)
expect_identical(
as.matrix(tokens_match(xtoks, c("a", "b", "c", "x")), extract = 2:3),
mat
)
expect_identical(
as.matrix(tokens_match(xtoks[2:3], c("a", "b", "c", "x"))),
mat
)
})
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.