#R data frame is made up of two or more vectors names <- c("Mark", "Luke", "John", "Matt") age <- c(25, 30, 35, 40) people <- data.frame(names, age)
#R dataframe syntax data.frame(x = c(1, 2, 3) , y = c(1.5, 5.5, 7.5))