Возвращение маркеров Twitter для каждой строки данных
Учитывая следующие данные кадра:
df <- as.data.frame(c("Testing @cspenn @test @hi","this is a tweet","this is a tweet with @mention of @twitter"))
names(df)[1] <- "content"
Я пытаюсь извлечь отдельные твиттерные дескрипторы для каждой строки, а не для всех сразу.
Из этого примера у меня есть эта функция, которая выплевывает их всех, но мне нужно, чтобы они оставались содержащимися в каждой строке.
df$handles <- plyr::ddply(df, c("content"), function(x){
mention <- unlist(stringr::str_extract_all(x$content, "@\\w+"))
# some tweets do not contain mentions, making this necessary:
if (length(mention) > 0){
return(data.frame(mention = mention))
} else {
return(data.frame(mention = NA))
}
})
Как мне извлечь маркеры только по ряду, а не по всем сразу?
2 ответа
Решение
library(tidyverse)
df %>%
mutate(mentions = str_extract_all(content, "@\\w+"))
Выход:
content mentions
1 Testing @cspenn @test @hi @cspenn, @test, @hi
2 this is a tweet
3 this is a tweet with @mention of @twitter @mention, @twitter
Вы можете сделать это так.
xy <- stringr::str_extract_all(df$content, "@\\w+")
xy <- sapply(xy, FUN = paste, collapse = ", ") # have all names concatenated
cbind(df, xy)
content xy
1 Testing @cspenn @test @hi @cspenn, @test, @hi
2 this is a tweet
3 this is a tweet with @mention of @twitter @mention, @twitter