Working to get textual data converted into numerical can be done in
many different ways. The steps included in textrecipes
should hopefully give you the flexibility to perform most of your
desired text preprocessing tasks. This vignette will showcase examples
that combine multiple steps.
This vignette will not do any modeling with the processed text as its
purpose it to showcase the flexibility and modularity. Therefore the
only packages needed will be recipes
and
textrecipes
. Examples will be performed on the
tate_text
data-set which is packaged with
modeldata
.
library(recipes)
library(textrecipes)
library(modeldata)
data("tate_text")
Sometimes it is enough to know the counts of a handful of specific
words. This can be easily be achieved by using the arguments
custom_stopword_source
and keep = TRUE
in
step_stopwords
.
<- c("or", "and", "on")
words
<- recipe(~ ., data = tate_text) %>%
okc_rec step_tokenize(medium) %>%
step_stopwords(medium, custom_stopword_source = words, keep = TRUE) %>%
step_tf(medium)
<- okc_rec %>%
okc_obj prep()
bake(okc_obj, tate_text) %>%
select(starts_with("tf_medium"))
#> # A tibble: 4,284 × 3
#> tf_medium_and tf_medium_on tf_medium_or
#> <dbl> <dbl> <dbl>
#> 1 1 0 1
#> 2 0 1 0
#> 3 0 1 0
#> 4 0 1 0
#> 5 0 1 0
#> 6 0 1 0
#> 7 0 1 0
#> 8 0 1 0
#> 9 1 1 0
#> 10 0 1 0
#> # … with 4,274 more rows
You might know of certain words you don’t want included which isn’t a
part of the stop word list of choice. This can easily be done by
applying the step_stopwords
step twice, once for the stop
words and once for your special words.
<- c("was", "she's", "who", "had", "some", "same", "you", "most",
stopwords_list "it's", "they", "for", "i'll", "which", "shan't", "we're",
"such", "more", "with", "there's", "each")
<- c("sad", "happy")
words
<- recipe(~ ., data = tate_text) %>%
okc_rec step_tokenize(medium) %>%
step_stopwords(medium, custom_stopword_source = stopwords_list) %>%
step_stopwords(medium, custom_stopword_source = words) %>%
step_tfidf(medium)
<- okc_rec %>%
okc_obj prep()
bake(okc_obj, tate_text) %>%
select(starts_with("tfidf_medium"))
#> # A tibble: 4,284 × 951
#> tfi…¹ tfi…² tfi…³ tfi…⁴ tfi…⁵ tfi…⁶ tfi…⁷ tfi…⁸ tfi…⁹ tfi…˟ tfi…˟ tfi…˟ tfi…˟
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 2 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 3 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 4 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 5 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 6 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 7 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 8 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 9 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 10 0 0 0 0 0 0 0 0 0 0 0 0 0
#> # … with 4,274 more rows, abbreviated variable names ¹tfidf_medium_1,
#> # ²tfidf_medium_10, ³tfidf_medium_100, ⁴tfidf_medium_11, ⁵tfidf_medium_12,
#> # ⁶tfidf_medium_13, ⁷tfidf_medium_133, ⁸tfidf_medium_14, ⁹tfidf_medium_15,
#> # ˟tfidf_medium_151, ˟tfidf_medium_16, ˟tfidf_medium_160, ˟tfidf_medium_16mm,
#> # and 938 more variables: tfidf_medium_18 <dbl>, tfidf_medium_19 <dbl>,
#> # tfidf_medium_2 <dbl>, tfidf_medium_20 <dbl>, tfidf_medium_2000 <dbl>,
#> # tfidf_medium_201 <dbl>, tfidf_medium_21 <dbl>, tfidf_medium_22 <dbl>, …
Another thing one might want to look at is the use of different
letters in a certain text. For this we can use the built-in character
tokenizer and keep only the characters using the
step_stopwords
step.
<- recipe(~ ., data = tate_text) %>%
okc_rec step_tokenize(medium, token = "characters") %>%
step_stopwords(medium, custom_stopword_source = letters, keep = TRUE) %>%
step_tf(medium)
<- okc_rec %>%
okc_obj prep()
bake(okc_obj, tate_text) %>%
select(starts_with("tf_medium"))
#> # A tibble: 4,284 × 26
#> tf_…¹ tf_…² tf_…³ tf_…⁴ tf_…⁵ tf_…⁶ tf_…⁷ tf_…⁸ tf_…⁹ tf_…˟ tf_…˟ tf_…˟ tf_…˟
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 1 0 2 3 4 0 0 0 3 1 0 1 1
#> 2 1 0 1 0 2 0 1 1 1 0 0 0 0
#> 3 1 0 1 0 2 0 1 1 1 0 0 0 0
#> 4 1 0 1 0 2 0 1 1 1 0 0 0 0
#> 5 3 0 1 0 0 0 0 0 2 0 0 1 0
#> 6 3 0 1 0 0 0 0 0 2 0 0 1 0
#> 7 3 0 2 0 1 0 0 0 2 0 0 1 0
#> 8 1 0 1 1 1 0 0 0 0 0 0 0 0
#> 9 5 0 1 1 0 0 0 0 2 0 0 1 0
#> 10 1 0 0 0 1 0 0 0 1 0 0 0 0
#> # … with 4,274 more rows, abbreviated variable names ¹tf_medium_a,
#> # ²tf_medium_b, ³tf_medium_c, ⁴tf_medium_d, ⁵tf_medium_e, ⁶tf_medium_f,
#> # ⁷tf_medium_g, ⁸tf_medium_h, ⁹tf_medium_i, ˟tf_medium_j, ˟tf_medium_k,
#> # ˟tf_medium_l, ˟tf_medium_m, and 13 more variables: tf_medium_n <dbl>,
#> # tf_medium_o <dbl>, tf_medium_p <dbl>, tf_medium_q <dbl>, tf_medium_r <dbl>,
#> # tf_medium_s <dbl>, tf_medium_t <dbl>, tf_medium_u <dbl>, tf_medium_v <dbl>,
#> # tf_medium_w <dbl>, tf_medium_x <dbl>, tf_medium_y <dbl>, …
Sometimes fairly complicated computations. Here we would like the
term frequency inverse document frequency (TF-IDF) of the most common
500 ngrams done on stemmed tokens. It is quite a handful and would
seldom be included as a option in most other libraries. But the
modularity of textrecipes
makes this task fairly easy.
First we will tokenize according to words, then stemming those words.
We will then paste together the stemmed tokens using
step_untokenize
so we are back at string that we then
tokenize again but this time using the ngram tokenizers. Lastly just
filtering and tfidf as usual.
<- recipe(~ ., data = tate_text) %>%
okc_rec step_tokenize(medium, token = "words") %>%
step_stem(medium) %>%
step_untokenize(medium) %>%
step_tokenize(medium, token = "ngrams") %>%
step_tokenfilter(medium, max_tokens = 500) %>%
step_tfidf(medium)
<- okc_rec %>%
okc_obj prep()
bake(okc_obj, tate_text) %>%
select(starts_with("tfidf_medium"))
#> # A tibble: 4,284 × 499
#> tfi…¹ tfi…² tfi…³ tfi…⁴ tfi…⁵ tfi…⁶ tfi…⁷ tfi…⁸ tfi…⁹ tfi…˟ tfi…˟ tfi…˟ tfi…˟
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 2 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 3 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 4 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 5 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 6 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 7 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 8 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 9 0 0 0 0 0 0 0 0 0 0 0 0 0
#> 10 0 0 0 0 0 0 0 0 0 0 0 0 0
#> # … with 4,274 more rows, abbreviated variable names
#> # ¹`tfidf_medium_100 digit print`, ²`tfidf_medium_16 mm black`,
#> # ³`tfidf_medium_16 mm project`, ⁴`tfidf_medium_16 mm shown`,
#> # ⁵`tfidf_medium_16mm shown a`, ⁶`tfidf_medium_2 aluminium panel`,
#> # ⁷`tfidf_medium_2 digit print`, ⁸`tfidf_medium_2 lithograph on`,
#> # ⁹`tfidf_medium_2 monitor colour`, ˟`tfidf_medium_2 photograph black`,
#> # ˟`tfidf_medium_2 photograph colour`, ˟`tfidf_medium_2 project black`, …