Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
935 views
in Technique[技术] by (71.8m points)

r - 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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...