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)
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)
create a table from dataframe in r
#R dataframe syntax
data.frame(x = c(1, 2, 3) , y = c(1.5, 5.5, 7.5))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us