I have file located at two places.
a = "C:/Documents and Settings/tandona/Desktop/javaSummary2.txt"
b= "M:\CHR\Statistics\Projects\NIEHS-NTP_Task1\Work\Genomics\Dmitry_Gordenin\Final-R-Scripts\hg19.chrom.size
I can read the file at M drive but not the one at C drive, because there is space in "Documents and Settings". I get following error:
>read.csv(as.character(a),sep = "\t", header = TRUE, comment.char = "",check.names = FALSE, quote="")
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") :
cannot open file 'C:/Documents and Settings/tandona/Desktop/javaSummary2.txt': No such file or directory
How can I read the file having special characters?
My bad, it was two part of the code. Front end is in java and it had the bug. R is working fine now.
ais a path tohg19.chrom.sizeand error says aboutjavaSummary2.txt? – Marek Oct 15 '12 at 19:33read.csvwhen your code hasread.table? – Carl Witthoft Oct 15 '12 at 19:37