Message-ID: <OF3C83727F.C48A0CF5-ONC1257927.00350734-C1257927.00357E1C@precheza.cz>
Date: 2011-10-12T09:43:39Z
From: PIKAL Petr
Subject: Problem executing function
In-Reply-To: <1318405626318-3897092.post@n4.nabble.com>
>
> 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 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.