Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

create dataframe or table in r

#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)
 
PREVIOUS NEXT
Tagged: #create #dataframe #table
ADD COMMENT
Topic
Name
1+4 =