powered by
Combine two data.frame by columns by filling in missing rows from each other based on rownames.
rownames
cbinds(F1, F2, fill = 0)
data.frame.
character/numeric. Default 0
a combined data.frame
# NOT RUN { F1 = data.frame(A = seq(10), B = seq(10), row.names = seq(10)) F2 = data.frame(C = seq(5), D = seq(5), row.names = 3:7) cbinds(F1, F2) # }
Run the code above in your browser using DataLab