Skip to content
Prev 78807 / 398502 Next

Reading # in file with read.csv

Michel Friesenhahn wrote:
From ?read.csv:

comment.char: character: a character vector of length one containing a
           single character or an empty string.  Use '""' to turn off
           the interpretation of comments altogether.

Thus, you should use:

read.csv("Raw Data\\test.csv", comment.char = "")

--sundar