> > Hi Michael, > > Thanks for the reply, but still the problem exists. When I list the objects > and return the result, they get printed on the console but the objects do > not get created. I am really baffled and clueless as to what the problem is.
I bet you do not understand basic operations in R. See chapter 2.1 in R-Intro manual coming with you R installation. Object any.object does not exist untill you create it or assign a value to it. x <- 1:10 y <- x*5+10+rnorm(10) any.object <- lm(y~x) Regards Petr > > Divya > > -- > View this message in context: http://r.789695.n4.nabble.com/Problem- > executing-function-tp3894359p3897092.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 > and provide commented, minimal, self-contained, reproducible code. ______________________________________________ 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 and provide commented, minimal, self-contained, reproducible code.