I have two df and would like to bind the value from df1 with the value from df2. dfs have same variables and rows. How should I do it?
df1<-structure(list(c1 = 750, c2 = 21, c3 = 65), row.names = c(NA,
-1L), class = c("tbl_df", "tbl", "data.frame"))
df2<- structure(list(c1 = "Student Enrollment", c2 = "Faculty Number",
c3 = "Graduated"), row.names = c(NA, -1L), class = c("tbl_df",
"tbl", "data.frame"))
