CSV
Read CSV file into memory
data <- read.table("./rows.csv", sep=",", header=TRUE)
head(data)data <- read.csv("./rows.csv")
head(data)Last updated
data <- read.table("./rows.csv", sep=",", header=TRUE)
head(data)data <- read.csv("./rows.csv")
head(data)Last updated