我正在尝试基于http://tidytextmining.com/sentiment.html#the-sentiments-dataset执行情绪分析。在执行情绪分析之前,我需要将我的数据集转换为整洁的格式。
我的数据集是形式:
x <- c( "test1" , "test2")
y <- c( "this is test text1" , "this is test text2")
res <- data.frame( "url" = x, "text" = y)
res
url text
1 test1 this is test text1
2 test2 this is test text2
为了将每行转换为一个观察值,需要处理文本列并添加包含单词和该 url 出现次数的新列。相同的 url 将出现在多行中。
这是我的尝试:
library(tidyverse)
x <- c( "test1" , "test2")
y <- c( "this is test text1" , "this is test text2")
res <- data.frame( "url" = x, "text" = y)
res
res_1 <- data.frame(res$text)
res_2 <- as_tibble(res_1)
res_2 %>% count(res.text, sort = TRUE)
返回:
# A tibble: 2 x 2
res.text n
<fctr> <int>
1 this is test text1 1
2 this is test text2 1
如何计算 res$text 数据框中的单词并维护 url 以执行情感分析?
更新 :
x <- c( "test1" , "test2")
y <- c( "this is test text1" , "this is test text2")
res <- data.frame( "url" = x, "text" = y)
res
res %>%
group_by(url) %>%
transform(text = strsplit(text, " ", fixed = TRUE)) %>%
unnest() %>%
count(url, text)
返回错误:
Error in strsplit(text, " ", fixed = TRUE) : non-character argument
我正在尝试转换为 tibble,因为这似乎是 tidytextmining 情绪分析所需的格式:http: //tidytextmining.com/sentiment.html#the-sentiments-dataset