I was trying to open up the workspace that you help me write last night, but for some reasons, when I tried to load the saved file R reads "load("C:\\Users\\Documents\\Statistical Learning\\HW1 #3 hint") and then it basically just stopped. I changed the file to a .Rdata file but the problem still persist, any ideas how to fix this? Thank you. -- View this message in context: http://r.789695.n4.nabble.com/I-cannot-load-my-workspace-in-R-tp3812774p3812774.html Sent from the R help mailing list archive at Nabble.com.
remove the comment from the filename argument and put it outside the statement. "load("C:\\Users\\Documents\\Statistical Learning\\HW1 #3 hint") "load("C:\\Users\\Documents\\Statistical Learning\\HW1") #3 hint On Wed, Sep 14, 2011 at 9:06 AM, tttcomrader <liverton11@gmail.com> wrote:> I was trying to open up the workspace that you help me write last night, > but for some reasons, when I tried to load the saved file R reads > "load("C:\\Users\\Documents\\Statistical Learning\\HW1 #3 hint") > and then it basically just stopped. > > I changed the file to a .Rdata file but the problem still persist, any > ideas how to fix this? > > Thank you. > > > > > > -- > View this message in context: > http://r.789695.n4.nabble.com/I-cannot-load-my-workspace-in-R-tp3812774p3812774.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html<http://www.r-project.org/posting-guide.html> > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]
On 14.09.2011 15:06, tttcomrader wrote:> I was trying to open up the workspace that you help me write last night, > but for some reasons, when I tried to load the saved file R reads > "load("C:\\Users\\Documents\\Statistical Learning\\HW1 #3 hint") > and then it basically just stopped. > > I changed the file to a .Rdata file but the problem still persist, any > ideas how to fix this?Yes, read the error message and if that does not solve the problem, rephrase your question including the output you got. In the first iteration you probably got something along the lines ".......... probable reason 'No such file or directory'" and since we do not know how you called the file, we cannot help. Uwe Ligges> > Thank you. > > > > > > -- > View this message in context: http://r.789695.n4.nabble.com/I-cannot-load-my-workspace-in-R-tp3812774p3812774.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.
Something is wrong with the image, here is the link to it: http://s749.photobucket.com/albums/xx136/liverton11/?action=view¤t=rproblemloading.jpg -- View this message in context: http://r.789695.n4.nabble.com/I-cannot-load-my-workspace-in-R-tp3812774p3813040.html Sent from the R help mailing list archive at Nabble.com.
Hi> > Re: [R] I cannot load my workspace in R > > It would not load that file, it just stopped there.I do not believe that. Anyway, if R stop to respond to your commands you probably has broken installation. What type of file you are trying to load? Is it saved workspace? Any errors. Here is the result when I start vanilla R ###No data, no objects> ls()character(0) ####Loading some workspace> load("D:\\data\\STAT\\povrch\\.RData")Loading required package: proto Loading required package: grid Loading required package: reshape Loading required package: plyr Attaching package: ?reshape? The following object(s) are masked from ?package:plyr?: rename, round_any #### Here you can see objects from loaded workspace> ls()[1] "alice" "dta" "dta.ag" "dta.tab" "fit" "komplet1" [7] "komplet2" "m" "p" "stand" "temp" "vyber">I recommend you to see R Intro manual. Regards Petr> > -- > View this message in context:http://r.789695.n4.nabble.com/I-cannot-load-> my-workspace-in-R-tp3812774p3813233.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.