Data Frames in R
Data Frames
Data frames are the most commonly used data structure in R for storing tabular data.
r
data <- data.frame(
name=c("John","Alice"),
age=c(25,30)
)
Next Tutorial: R Programming Best Practices

