When compiling R 1.9.1 on a Linux system with the environment variable
LANG=3Dno_NO, I get a similar error as reported in PR#6958:
## FACTS:
$ locale
LANG=3Dno_NO
LC_CTYPE=3D"no_NO"
LC_NUMERIC=3D"no_NO"
LC_TIME=3D"no_NO"
LC_COLLATE=3D"no_NO"
LC_MONETARY=3D"no_NO"
LC_MESSAGES=3D"no_NO"
LC_PAPER=3D
Prof Brian Ripley <[EMAIL PROTECTED]> writes:
> I believe you are right, but can you please explain why anyone would want=
=20
> to fit this model?
When analysing data from mixture designs, the variables add up to a
constant, and it is often preferrable to fit models without intercept
term. We o
I think there are two bugs in aov() that shows up when the right hand
side of `formula' contains both `-1' and an Error() term, e.g.,
aov(y ~ a + b - 1 + Error(c), ...). Without `-1' or `Error()' there
is no problem. I've included and example, and the source of aov()
with suggested fixes below.