I have a data.frame with several columns that I would like to combine into one column in a new data.frame.
df1 <- data.frame(col1 = 1:3, col2 = 4:6, col3 = 7:9)
how can i create a new data.frame with one column which is 1: 9?
vector r rbind
screechOwl
source share