Displaying 4 results from an estimated 4 matches for "hernandezno".
Did you mean:
hernandez
2016 Apr 24
4
Using read.csv() to import data
...file, "rt") :
? cannot open file 'C:/JPH_data.csv': No such file or directory
Aside from the obvious (how can it say "no such file or directory" when I just saved one such?), the "cannot open the connection" is also unexpected. What am I doing wrong here?
Jason Hernandezno current affiliation
[[alternative HTML version deleted]]
2016 Apr 24
0
Using read.csv() to import data
...uot;) :
> cannot open file 'C:/JPH_data.csv': No such file or directory
> Aside from the obvious (how can it say "no such file or directory" when I just saved one such?), the "cannot open the connection" is also unexpected. What am I doing wrong here?
> Jason Hernandezno current affiliation
By far the easiest ways to enter Windows file paths are using the
file.choose() and choose.files() functions. Do something like
filename <- file.choose() # navigate to the file
mammals <- read.csv(filename)
and you should be fine. The file.choose() function works on...
2016 Apr 26
1
Using read.csv() to import data
...uot;) :
>? ? cannot open file 'C:/JPH_data.csv': No such file or directory
> Aside from the obvious (how can it say "no such file or directory" when I just saved one such?), the "cannot open the connection" is also unexpected. What am I doing wrong here?
> Jason Hernandezno current affiliation
By far the easiest ways to enter Windows file paths are using the
file.choose() and choose.files() functions.? Do something like
filename <- file.choose() # navigate to the file
mammals <- read.csv(filename)
and you should be fine.? The file.choose() function works on...
2016 Apr 24
0
Fwd: Re: Using read.csv() to import data
...file, "rt") :
cannot open file 'C:/JPH_data.csv': No such file or directory
Aside from the obvious (how can it say "no such file or directory" when I just
saved one such?), the "cannot open the connection" is also unexpected. What am I
doing wrong here?
Jason Hernandezno current affiliation
[[alternative HTML version deleted]]
______________________________________________
R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
an...