Good afternoon, Hope you all have a wonderful day. I am glad to be here. Hope you could help me with the following errors that i have been trying to figure it all out since last week. I am using Splus from Insightful, and as i read, R and Splus are very similar. So hope you could help me. I have been continously received these error messages after i ran my small program for couple of times. Can' access to file _nonfi Can't create file for assigning "last.dump" ("C:/WORKSPACE/DUNG/.Data/___bd40" It is frustrating since the program is so small , and as i look into my project, the _nonfi is there under the data folder. So i don't know what the compiler is complained about. Since i am new to Splus language, I have no clue what i need to do. for (i in 1: 1) { x <- rnorm (1000); y <- rnorm (1000) newx <- x newy <- y hist (newx) hist (newy) } If you happen to know what i need to do, please help me. Thank you so much, Min -- View this message in context: http://r.789695.n4.nabble.com/Can-t-read-write-to-nonfi-tp2331707p2331707.html Sent from the R help mailing list archive at Nabble.com.
I don't think I understand what the problem is... The code that you provided works just fine without the for loop statement. as for the can't access... The example that you provided doesn't address this. Unless I am totally misunderstanding. R is an interpreted language not compiled. Please, as to the instructions appended to the end of each email, provide a minimal self-contained reproducible example. Stephen On Thu, Aug 19, 2010 at 1:48 PM, minh <dtran7 at student.gsu.edu> wrote:> > Good afternoon, > ? Hope you all have a wonderful day. I am glad to be here. Hope you could > help me with the ?following errors that i have been trying to figure it ?all > out since last week. > > ?I am using Splus from Insightful, and as i read, R and Splus are very > similar. So hope you could help me. > > > ?I have been continously received these error messages after i ran my small > program for couple of times. > > > > Can' access to file _nonfi > Can't create file for assigning "last.dump" > ("C:/WORKSPACE/DUNG/.Data/___bd40" > > > > It is frustrating since the program is so small , and as i look into my > project, the _nonfi is there under the data folder. So i don't know what the > compiler is complained about. Since i am new to Splus language, I have no > clue what i need to do. > > for (i in 1: 1) > > { > > x <- rnorm (1000); > > y <- rnorm (1000) > > newx <- x > > newy <- y > > hist (newx) > > hist (newy) > > > } > > > > > > > > If you happen to know what i need to do, please help me. > > Thank you so much, > Min > -- > View this message in context: http://r.789695.n4.nabble.com/Can-t-read-write-to-nonfi-tp2331707p2331707.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. >-- Stephen Sefick ____________________________________ | Auburn University? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? | | Department of Biological Sciences? ? ? ? ?? | | 331 Funchess Hall? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | | Auburn, Alabama? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? | | 36849? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? | |___________________________________| | sas0025 at auburn.edu? ? ? ? ? ? ? ? ? ? ? ? ? ?? | | http://www.auburn.edu/~sas0025? ? ? ? ? ?? | |___________________________________| Let's not spend our time and resources thinking about things that are so little or so large that all they really do for us is puff us up and make us feel like gods.? We are mammals, and have not exhausted the annoying little problems of being mammals. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? -K. Mullis
Min, For S+-specific questions the S-news mailing list would be better. s-news at wubios.wustl.edu Unlike R, S+ stores its data objects in files, one file per object. The ___nonfi (___nonfiles) file contains a mapping for object names to file names, for those objects whose names cannot be unambiguously used as file names. The copies of the error messages look garbled to me. They are definitely missing some characters and I don't see the "Can't access to ..." message in the S+ source code, but perhaps I'm not looking in the right version > Can' access to file _nonfi > Can't create file for assigning "last.dump" > ("C:/WORKSPACE/DUNG/.Data/___bd40" What version of S+ are you using and what are the precise error messages? Do you own the C:/WORKSPACE/DUNG directory or is it someone else's? If it is someone else's and it is sufficiently protected, you may not be able write files into it. Can you create any other data objects? E.g., can you successfully execute the following? qaz <- 1:10 print(qaz) and Q.A.Z. <- log(qaz) print(Q.A.Z) Bill Dunlap Spotfire, TIBCO Software wdunlap tibco.com> -----Original Message----- > From: r-help-bounces at r-project.org > [mailto:r-help-bounces at r-project.org] On Behalf Of minh > Sent: Thursday, August 19, 2010 11:48 AM > To: r-help at r-project.org > Subject: [R] Can't read/write to _nonfi > > > Good afternoon, > Hope you all have a wonderful day. I am glad to be here. > Hope you could > help me with the following errors that i have been trying to > figure it all > out since last week. > > I am using Splus from Insightful, and as i read, R and > Splus are very > similar. So hope you could help me. > > > I have been continously received these error messages after > i ran my small > program for couple of times. > > > > Can' access to file _nonfi > Can't create file for assigning "last.dump" > ("C:/WORKSPACE/DUNG/.Data/___bd40" > > > > It is frustrating since the program is so small , and as i > look into my > project, the _nonfi is there under the data folder. So i > don't know what the > compiler is complained about. Since i am new to Splus > language, I have no > clue what i need to do. > > for (i in 1: 1) > > { > > x <- rnorm (1000); > > y <- rnorm (1000) > > newx <- x > > newy <- y > > hist (newx) > > hist (newy) > > > } > > > > > > > > If you happen to know what i need to do, please help me. > > Thank you so much, > Min > -- > View this message in context: > http://r.789695.n4.nabble.com/Can-t-read-write-to-nonfi-tp2331707p2331707.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. >