R 在其中一些为空的数据帧上执行 r rbind
R performing r rbind on dataframes some of which are empty
我有许多数据框要连接在一起。问题是其中一些有时可能是空的,这会产生一条错误消息
例如,如果 df3 为空
rbind(df1, df2, df3)
给出错误信息
Error: object 'df3' not found
如何让 rbind 忽略空数据帧并只绑定存在的数据帧。
感谢您的帮助。
我们可以将数据集加载到 list
中并使用 bind_rows
。优点是只有那些在全局环境中创建的数据集才会被加载
library(dplyr)
mget(ls(pattern ='^df\d+$')) %>%
bind_rows
或者另一种选择是使用 exists
创建条件
do.call(rbind, lapply(paste0("df", 1:3), function(x)
if(exists(x, .GlobalEnv)) get(x) else NULL))
我有许多数据框要连接在一起。问题是其中一些有时可能是空的,这会产生一条错误消息
例如,如果 df3 为空
rbind(df1, df2, df3)
给出错误信息
Error: object 'df3' not found
如何让 rbind 忽略空数据帧并只绑定存在的数据帧。 感谢您的帮助。
我们可以将数据集加载到 list
中并使用 bind_rows
。优点是只有那些在全局环境中创建的数据集才会被加载
library(dplyr)
mget(ls(pattern ='^df\d+$')) %>%
bind_rows
或者另一种选择是使用 exists
do.call(rbind, lapply(paste0("df", 1:3), function(x)
if(exists(x, .GlobalEnv)) get(x) else NULL))