Just one small remark:

why don´t you try ("C:\\dados10.txt") ? It seems to me that the double "\\" is important!

Cheers
Chris



Christoph Lange wrote:

(Reply to Margarida Júlia Rodrigues Igreja)

Hello!



When i print:


a<-read.table(file="C:/dados10.txt")


The next error appears:
Error in file(file, "r") : unable to open connection
In addition: Warning message:
cannot open file `C:/dados10.txt'
Can you help me?



Contrary to what Professor Ripley wrote, this file name is of course totally valid under unixoid systems.

But 'C:' looks like a windows hard drive mounted under a Unix
directory named 'C:'. Usually this is done directly under '/', so just
try:

 a<-read.table(file="/C:/dados10.txt")

-cl




______________________________________________ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to