On 11/3/06, Sarah White <[EMAIL PROTECTED]> wrote:
>
> I am using Windows XP, R version 2.4.
>
> The code works until I get to the fourth line starting
>
> model.effect
>
> and I receive the following Error message.
>
> Error in eval(expr, envir, enclos) : object "Centre" not found
>
It sounds like the variable names aren't what you think they are.
Try this:
mental <- read.csv("dataextract.csv")
colnames(mental)
If the names don't match exactly, R won't know what you mean.
Since this step works,
mental$Rx <- factor(mental$Rx, levels=c("VS","IPS"))
I think that some of the names are right, but perhaps that
one is spelled differently (Centre vs centre, maybe, since
R is case-sensitive?).
The easiest thing to do with no R knowledge is probably
to change the name in the csv file to match your code,
if that turns out to be the problem.
Sarah
--
Sarah Goslee
http://www.functionaldiversity.org
______________________________________________
[email protected] 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.