Displaying 2 results from an estimated 2 matches for "tianxu03".
2017 Aug 03
2
rnorm is not truly random used in the lm function
To whom it may concern,
I happened to run the following R code just to check the layout of the
output, but found that the code doesn't work the way I thought it should
work.
''
> lm(rnorm(100) ~ rnorm(100))
Call:
lm(formula = rnorm(100) ~ rnorm(100))
Coefficients:
(Intercept)
-0.07966
Warning messages:
1: In model.matrix.default(mt, mf, contrasts) :
the response appeared
2017 Aug 03
0
rnorm is not truly random used in the lm function
>>>>> Victor Tian <tianxu03 at gmail.com>
>>>>> on Thu, 3 Aug 2017 09:49:57 -0400 writes:
> To whom it may concern,
> I happened to run the following R code just to check the layout of the
> output, but found that the code doesn't work the way I thought it should
> work....