Nothing
test_that("unnest_ptb works", {
d <- tibble(txt = janeaustenr::prideprejudice)
r <- unnest_ptb(d, out, txt)
s <- unnest_tokens(d, out, txt, token = "ptb")
expect_equal(r, s)
r <- unnest_ptb(skspr, out, txt)
s <- unnest_tokens(skspr, out, txt, token = "ptb")
expect_equal(r, s)
})
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.