Skip to content
Prev 319409 / 398506 Next

How to read a *.csv file in R?

The data appear to be tab delimited with the decimal point being a comma (',').  So, try read.csv2()

heisenberg <- read.csv2(file="comprice.csv", header=TRUE, sep="\t")


Hope this is helpful,

Dan

Daniel Nordlund
Bothell, WA USA