One of my packages is slated to be archived from CRAN due to failures when
the ATLAS BLAS is used. I am unable to replicate the error on my machine
under R 3.6.1 using the atlas library from ubuntu (seems to be 3.10.2-9,
while the good professor is using 3.10.3 per
https://www.stats.ox.ac.uk/pub/bd
l 20, 2018 at 9:06 AM, Martin Maechler wrote:
> >>>>> steven pav
> >>>>> on Thu, 19 Jul 2018 21:51:07 -0700 writes:
>
> > It seems that confint.default returns an empty data.frame
> > for objects of class mlm. For example:
>
> &g
It seems that confint.default returns an empty data.frame for objects of
class mlm. For example:
```
nobs <- 20
set.seed(1234)
# some fake data
datf <-
data.frame(x1=rnorm(nobs),x2=runif(nobs),y1=rnorm(nobs),y2=rnorm(nobs))
fitm <- lm(cbind(y1,y2) ~ x1 + x2,data=datf)
confint(fitm)
# returns: