I'm sorry if I'm just too much of an idiot, and am blind to boot. This might be related to #1346 but this is on non-empty data frames. What's plexing me is that do.call works, but bind_rows doesn't:
df <- lapply(1, function(x) data.frame(id=x, data=runif(5)))
df2 <- lapply(2:3, function(x) data.frame(id=x, data=runif(5)))
#doesn't work
bind_rows(df, df2)
#works
do.call(rbind, c(df, df2))
Am I doing something wrong here?
I'm sorry if I'm just too much of an idiot, and am blind to boot. This might be related to #1346 but this is on non-empty data frames. What's plexing me is that
do.callworks, butbind_rowsdoesn't:Am I doing something wrong here?