Displaying 6 results from an estimated 6 matches for "hallgeir".
Did you mean:
haller
2005 Oct 05
8
R crashes for large formulas in lm() (PR#8180)
Full_Name: Hallgeir Grinde
Version: 2.1.1
OS: Windows XP
Submission from: (NULL) (144.127.1.1)
While using lm(y~(x*z*c*...*v)^2) R crashes/closes if the numbers of variables
are at least 8.
2005 Oct 05
0
Ad: Re: Ad: Re: R crashes for large formulas in lm() (PR#8181)
On Wed, 5 Oct 2005 Hallgeir.Grinde at elkem.no wrote:
> Yes.
> so (x1*x2*x3*x4*x5*x6*x7*x8)^2 = (x1+x2+x3+x4+x5+x6+x7+x8)^8 ?
Yes in the sense that the simplified formula given by terms() is the same.
> and there is a difference in
> (x1*x2*x3*x4*x5*x6*x7*x8)^2
> and
> (x1*x2*x3*x4*x5*x6*x7*x8)
> altho...
2005 Oct 05
0
Ad: Re: Ad: Re: R crashes for large formulas in lm() (PR#8180)
...4*x5*x6*x7*x8)
althoug the resulting formulas are the same, or?
This fikses my problem, but R still crashes for the large formula. It may
be due to stack owerflow, but i guess this can be altered maually?
Prof Brian Ripley <ripley at stats.ox.ac.uk>
05.10.2005 12:50
Til: Hallgeir.Grinde at elkem.no
cc: Uwe Ligges <ligges at statistik.uni-dortmund.de>,
R-bugs at biostat.ku.dk
Emne: Re: Ad: Re: [Rd] R crashes for large formulas in lm()
(PR#8180)
On Wed, 5 Oct 2005 Hallgeir.Grinde at elkem.no wrote:
> And some more informastion I forgot.
>...
2005 Oct 05
1
Ad: Re: R crashes for large formulas in lm() (PR#8180)
...+x5:x7+x5:x8
+x6:x7+x6:x8
+x7:x8)
-> R does not crash
This is the same formula, at least it should be.
Uwe Ligges <ligges at statistik.uni-dortmund.de>
05.10.2005 12:13
Til: Prof Brian Ripley <ripley at stats.ox.ac.uk>
cc: hallgeir.grinde at elkem.no, R-bugs at biostat.ku.dk
Emne: Re: [Rd] R crashes for large formulas in lm() (PR#8180)
Prof Brian Ripley wrote:
> On Wed, 5 Oct 2005 hallgeir.grinde at elkem.no wrote:
>
>
>>Full_Name: Hallgeir Grinde
>>Version: 2.1.1
>>OS: Windows XP
>...
2005 Oct 05
0
Ad: Re: R crashes for large formulas in lm() (PR#8180)
On Wed, 5 Oct 2005 Hallgeir.Grinde at elkem.no wrote:
> And some more informastion I forgot.
> R does not crash if I write out the formula:
>
> set.seed(123)
> x1 <- runif(1000)
> x2 <- runif(1000)
> x3 <- runif(1000)
> x4 <- runif(1000)
> x5 <- runif(1000)
> x6 <- runif(1000)...
2005 Oct 05
0
Ad: Re: R crashes for large formulas in lm() (PR#8180)
> From: Peter Dalgaard
>
> Hallgeir.Grinde at elkem.no writes:
>
> > Dette er en melding med flere deler i MIME-format.
> > --=_alternative 004613C000257091_=
> > Content-Type: text/plain; charset="US-ASCII"
> >
> > And some more informastion I forgot.
> > R does not crash if I write...