Skip to content
Prev 381315 / 398502 Next

Surprising Symbolic Model Formula Evaluations

Rich:
Call:
lm(formula = y ~ 1:x)

Coefficients:
(Intercept)
      0.477
Call:
lm(formula = y ~ x:1)

Coefficients:
(Intercept)
      0.477
Call:
lm(formula = y ~ 1 * x)

Coefficients:
(Intercept)
      0.477
Call:
lm(formula = y ~ x * 1)

Coefficients:
(Intercept)            x
   0.493927    -0.003079

Cheers,
Bert


Bert Gunter

"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )


On Fri, Oct 11, 2019 at 10:59 AM Richard M. Heiberger <rmh at temple.edu>
wrote: