R - Csv

Card Puncher Data Processing

R - Csv

About

csv

Management

Read

read.csv is identical to read.table except that the default separator is a comma

con = file("foo.txt", "r")
data = read.csv(con)
close(con)

is the same as

data <- read.csv("foo.txt")

Write

write.csv(myDataFrame, file = "MyData.csv")

Documentation / Reference







Share this page:
Follow us:
Task Runner