假设我有三个名为A1-pre,B3-pos,B4-pre的数据帧,我想合并这些数据帧。列具有相同的名称,因此我可以使用rbind。
newdf <- rbind(A1-pre, B3-pos, B4-pre) #this would work
但是,我不想自己手动输入数据帧的所有名称,我更喜欢使用通配符,所以像
newdf <- rbind(grep(-)) #but this does not work
知道我怎么能这样做吗?或者甚至更好,匹配任何名为“pre”或“pos”的数据帧并将它们全部绑定。
答案 0 :(得分:3)
您可以使用get()
和ls()
:
'A1-pre' <- matrix(rnorm(100), 5)
'B3-pos' <- matrix(rnorm(100), 5)
'B4-pre' <- matrix(rnorm(100), 5)
'C5-not' <- matrix(rnorm(100), 5)
names <- grep('pre|pos$', ls(), value=T)
newDF <- mapply(get, grep('pre|pos$', ls(), value=T))