This question already has an answer here:
I hope someone can help me here because I have exhausted all options. I am a total newb with R and I am trying to import CSV files to graph for a project. I'm using R 2.15.2 on a Mac OS X.
The first way tried
The script I'm trying to run to import the CSV file is this:
group4 <- read.csv("XXXX.csv", header=T)But I keep getting this error message:
Error in read.table(file = file, header = header, sep = sep, quote = quote, : object 'XXXXXX.csv' not found
The second way tried
I tried moving my working directory but got another error saying I can't move my working directory. So I went into
Preferencestab and changed the working directory to the file that has my CSV files. But I still get the same error(as the first way).The third way tried
Then I tried this script:
group4 <- read.table(file.choose(), sep="\t", header=T)And I get this error:
Warning message: In read.table(file.choose(), sep = "\t", header = T) : incomplete final line found by readTableHeader on '/Users/xxxxxx/Documents/Programming/R/xxxxxx/xxxxxx.csv'
I've searched on the R search site and all over the Internet, and nothing has gotten me to the point where I can import this simple CSV file into the R console.
group4look like? Does look like what you want, in spite of the warning? Check the end of it withtail(group4). If it looks good, you can just wrap the call toread.tablewithsuppressWarningsand be on your way. – Matthew Plourde Jan 17 at 12:24