I have two data frames df1 and df2. I want to append all the rows of df2 into df1 in their respective columns. See the desired output.
df1<-data.frame("Marks 1"= c(1,2), "Marks 2"=c(5,6),"Marks 3"=c(1,2),"Marks 4"=c(7,8))
df2<-data.frame("Marks 2"= c(7,8), "Marks 3"=c(3,4))