Answers for "in r how to combine contents of two columns from a data.frame"

R
1

combine columns in r

df.1 <- data.frame("Name" = c("Jill","Jack","John"))
df.2 <- data.frame("Age" = c(42,16,63))
df.comb <- cbind(df.1,df.2)
Posted by: Guest on July-10-2020

Code answers related to "in r how to combine contents of two columns from a data.frame"

Browse Popular Code Answers by Language