I am looking for options (preferably using base R) for binding different length data frames starting from bottom. The remaining/missing rows should be NA
d out. Example:
set.seed(1212)
a = as.data.frame(rnorm(1, 0, 1))
b = as.data.frame(rnorm(4, 0, 1))
c = as.data.frame(rnorm(3, 0, 1))
Expected output:
rnorm(1, 0, 1) rnorm(4, 0, 1) rnorm(3, 0, 1)
1 NA 1.8374224 NA
2 NA 0.3436815 0.03719874
3 NA -1.3600955 -1.92311898
4 -0.6290858 0.5358145 0.41087971