如何在 R 中反转 unnest_token
how to reverse unnest_token in R
我想知道如何反转 unnest_token 函数以导出推文并在 python 中工作。
这是我的数据集
ID DATE TWEETS
1 2020-02-29 people tends stay home reach customer directly bulk email
这是我应用的
flood_tweet_messages <- df %>%
dplyr::select(ID, cleaned_tweets) %>%
unnest_tokens(word, cleaned_tweets) %>%
我明白了
ID word
1 people
1 tends
1 stay
1 home
我怎样才能逆转这个过程,回到数据集的原始形式?
是否可以将日期保留在未嵌套的数据集中?怎么样?
感谢大家的帮助!
这解决了问题!
df %>% group_by(ID) %>% summarize(cleaned_tweets = str_flatten(word, " "))
感谢用户@Phil
我想知道如何反转 unnest_token 函数以导出推文并在 python 中工作。
这是我的数据集
ID DATE TWEETS
1 2020-02-29 people tends stay home reach customer directly bulk email
这是我应用的
flood_tweet_messages <- df %>%
dplyr::select(ID, cleaned_tweets) %>%
unnest_tokens(word, cleaned_tweets) %>%
我明白了
ID word
1 people
1 tends
1 stay
1 home
我怎样才能逆转这个过程,回到数据集的原始形式? 是否可以将日期保留在未嵌套的数据集中?怎么样?
感谢大家的帮助!
这解决了问题!
df %>% group_by(ID) %>% summarize(cleaned_tweets = str_flatten(word, " "))
感谢用户@Phil