Displaying 3 results from an estimated 3 matches for "r1902".
Did you mean:
1902
2009 Aug 04
1
[nut-commits] svn commit r1902 - branches/AsciiDoc/docs
> +[[commands]]
> Commands sent to the UPS drivers
> --------------------------------
If anyone has any suggestions on how to differentiate between the Unix
domain socket message command, and the TCP-to-upsd commands in the
Developers Guide, let me know.
--
- Charles Lepple
2023 Jul 07
1
printCoefmat() and zap.ind
...;>> on Thu, 6 Jul 2023 17:14:27 +0800 writes:
> Hi All,
> I would like to ask two questions about printCoefmat().
Good... this function, originally named print.coefmat(),
is 25 years old (in R) now:
--------------------------------------------------------------------
r1902 | maechler | 1998-08-14 19:19:05 +0200 (Fri, 14 Aug 1998) |
Changed paths:
M R-0-62-patches/CHANGES
M R-0-62-patches/src/library/base/R/anova.R
M R-0-62-patches/src/library/base/R/glm.R
M R-0-62-patches/src/library/base/R/lm.R
M R-0-62-patches/src/library/base/R/print.R...
2023 Jul 06
1
printCoefmat() and zap.ind
Hi All,
I would like to ask two questions about printCoefmat().
First, I found a behavior of printCoefmat() that looks strange to me,
but I am not sure whether this is an intended behavior:
``` r
set.seed(5689417)
n <- 10000
x1 <- rnorm(n)
x2 <- rnorm(n)
y <- .5 * x1 + .6 * x2 + rnorm(n, -0.0002366, .2)
dat <- data.frame(x1, x2, y)
out <- lm(y ~ x1 + x2, dat)
out_summary <-