当前位置: 首页 > 工具软件 > jiebaR > 使用案例 >

R语言 | jiebaR 词频统计

秦涵涤
2023-12-01

导入停用词表

library(dplyr)
stopwords <- readtext::readtext("data/stopwords.txt") %>% 
    as.character() %>% 
    stringr::str_split('\n') %>% 
    unlist()

#显示前50个停用词
head(stopwords, n
 类似资料: