Basi del cleaning del testo

Introduzione all'Elaborazione del Linguaggio Naturale in R

Kasey Jones

Research Data Scientist

Il dataset dei tweet russi

3 milioni di tweet di troll russi

Il dataset Russian Troll Tweets è fornito da fivethirtyeight e contiene 3 milioni di tweet generati da bot durante le elezioni USA 2016.

  • Esploreremo i primi 20.000 tweet
  • Dati: testo, follower, following, data, tipo account, ecc.
  • Ottimo per topic modeling, classificazione, NER, ecc.
1 https://github.com/fivethirtyeight/russian-troll-tweets
Introduzione all'Elaborazione del Linguaggio Naturale in R

Parole più frequenti

library(tidytext); library(dplyr)
russian_tweets %>%
  unnest_tokens(word, content) %>%
  count(word, sort = TRUE)
# A tibble: 44,318 x 2
   word      n
   <chr> <int>
 1 t.co  18121
 2 https 16003
 3 the    7226
 4 to     5279
 ...
Introduzione all'Elaborazione del Linguaggio Naturale in R

Rimuovere le stop word

tidy_tweets <- russian_tweets %>%
  unnest_tokens(word, content) %>%
  anti_join(stop_words)
tidy_tweets %>%
  count(word, sort = TRUE)
 1 t.co             18121
 2 https            16003
 3 http              2135
 4 blacklivesmatter  1292
 5 trump             1004
 ...
# A tibble: 1,149 x 2
   word        lexicon
   <chr>       <chr>  
 1 a           SMART  
 2 a's         SMART  
 3 able        SMART  
 4 about       SMART  
 5 above       SMART
Introduzione all'Elaborazione del Linguaggio Naturale in R

Stop word personalizzate

custom <- add_row(stop_words, word = "https", lexicon = "custom")
custom <- add_row(custom, word = "http", lexicon = "custom")
custom <- add_row(custom, word = "t.co", lexicon = "custom")
russian_tweets %>%
  unnest_tokens(word, content) %>%
  anti_join(custom) %>%
  count(word, sort = TRUE)
Introduzione all'Elaborazione del Linguaggio Naturale in R

Risultati finali

# A tibble: 43,663 x 2
   word                 n
   <chr>            <int>
 1 blacklivesmatter  1292
 2 trump             1004
 3 black              781
 4 enlist             764
 5 police             745
 6 people             723
  7 cops               693
Introduzione all'Elaborazione del Linguaggio Naturale in R

Stemming

  • enlisted ---> enlist
  • enlisting ---> enlist
library(SnowballC)
tidy_tweets <- russian_tweets %>%
  unnest_tokens(word, content) %>%
  anti_join(custom)
# Stemming
stemmed_tweets <- tidy_tweets %>%
  mutate(word = wordStem(word))
Introduzione all'Elaborazione del Linguaggio Naturale in R

Risultati dello stemming

# A tibble: 38,907 x 2
   word               n
   <chr>          <int>
 1 blacklivesmatt  1301
 2 cop             1016
 3 trump           1013
 4 black            848
  5 enlist           809
 6 polic            763
 7 peopl            730
Introduzione all'Elaborazione del Linguaggio Naturale in R

Esempio.

Introduzione all'Elaborazione del Linguaggio Naturale in R

Preparing Video For Download...