Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Assign data frame name to list elements using name vector

I have a data frame, 'mydata':

head(mydata)

ID      MDC
000001  21A
000002  5
000003  8
...

I've split my data frame by one of it's column values, namely 'MDC'. This created a list, subdivided into further lists by the column value 'MDC':

mylist <- split(mydata, mydata$MDC, drop=TRUE)
summary(mylist)

    Length Class      Mode
0   75     data.frame list
1   75     data.frame list
10  75     data.frame list
11  75     data.frame list
12  75     data.frame list
21A 75     data.frame list
...

I now want to create a data frame for each MDC with the corresponding name, e.g. 'MDC1'. How can I assign the MDC values to the list elements?

Thanks

like image 522
saju Avatar asked May 12 '26 21:05

saju


1 Answers

It seems like this should work

MDC <- paste0("MDC", sort(unique(mydata$MDC)))
names(mylist) <- MDC
list2env(mylist, .GlobalEnv)
ls() # Checking environment
## [1] "MDC"    "MDC21A" "MDC5"   "MDC8"   "mydata" "mylist"

Edit: Per @flodel's comment- In case you want to make further operations on these data frames, you shouldn't copy them into the global environment. You should leave them in mylist and do all your operation on that list using functions such as lapply and rapply

like image 61
David Arenburg Avatar answered May 15 '26 10:05

David Arenburg



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!