Split a huge dataframe in many smaller dataframes to create a corpus in r

ε祈祈猫儿з 提交于 2019-12-02 02:48:13

We can split the dataset ('df1') into a list

lst <- split(df1, df1$username)

Usually, it is better to stop here and do all the calculations/analysis within the list itself. But, if we want to create l000's of objects in the global environment, one way is using list2env after naming the list elements with the object names we desire.

list2env(setNames(lst, paste0('DataFrame', 
                 seq_along(lst)), envir=.GlobalEnv)

DataFrame1
DataFrame2 

Another way of keeping the data would be to nest it

library(dplyr)
library(tidyr)
df1 %>% 
     nest(-username)
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!