Social Media Research

02 R Data Analysis


Question

agenames <- c(16,16,19, "Johanna", "Mark", "Sophia")

create a matrix with this vector, where age and names are in 2 seperate columns.


Answer

matrix(agenames, ncol =2)




Comments