show_tokens | R Documentation |
Returns the tokens as a list of character vector of a recipe. This function can be useful for diagnostics doing recipe construction but should not be used in final recipe steps. Note that this function will both prep() and bake() the recipe it is used on.
show_tokens(rec, var, n = 6L)
rec |
A recipe object |
var |
name of variable |
n |
Number of elements to return. |
A list of character vectors
text_tibble <- tibble(text = c("This is words", "They are nice!"))
recipe(~text, data = text_tibble) %>%
step_tokenize(text) %>%
show_tokens(text)
library(modeldata)
data(tate_text)
recipe(~., data = tate_text) %>%
step_tokenize(medium) %>%
show_tokens(medium)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.