I have four data frames with different headers and different no of rows. I want to append all four data frames in one data frame leaving few rows empty between data frames in R. For example:
DF1:
| Column A | Column B |
|---|---|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
DF2:
DF3:
DF4:
Result DataFrame:
I tried rbind and bind_rows functions, but it did not give what I am looking for.
I want the following result after appending/concatenating the four data frames.




bind_rows()is actually what you're wanting and then you would have to deal with theNAs from the missing columns that are not in all 4 dataframesIf you're wanting whats in your image then you would just make a list of dataframes