テキストクリーニングの基本

Rで学ぶ自然言語処理入門

Kasey Jones

Research Data Scientist

ロシアのツイートデータセット

ロシアのトロール投稿300万件

ロシアのトロール投稿データセットは fivethirtyeight により提供。2016年米国選挙期のボット生成ツイート300万件を含む。

  • 最初の20,000件を分析
  • ツイート本文、フォロワー数、フォロー数、投稿日時、アカウント種別などを含む
  • トピック分析、分類、固有表現抽出などに最適
1 https://github.com/fivethirtyeight/russian-troll-tweets
Rで学ぶ自然言語処理入門

出現頻度が高い語

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
 ...
Rで学ぶ自然言語処理入門

ストップワードの除去

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
Rで学ぶ自然言語処理入門

カスタム・ストップワード

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)
Rで学ぶ自然言語処理入門

最終結果

# 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
Rで学ぶ自然言語処理入門

ステミング

  • 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))
Rで学ぶ自然言語処理入門

ステミングの結果

# 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
Rで学ぶ自然言語処理入門

例で確認

Rで学ぶ自然言語処理入門

Preparing Video For Download...