search for: xxnames

Displaying 6 results from an estimated 6 matches for "xxnames".

Did you mean: xnames
2002 Feb 27
1
Bug in glm.fit? (PR#1331)
...y(mu < eps)) 151 warning("fitted rates numerically 0 occurred") 152 } 153 if (fit$rank != nvars) { 154 coef[seq(fit$rank + 1, nvars)] <- NA 155 dimnames(fit$qr) <- list(NULL, xnames) 156 } 157 coef[fit$pivot] <- coef 158 xxnames <- xnames[fit$pivot] 159 residuals <- rep(NA, nobs) 160 residuals[good] <- z - (eta - offset)[good] 161 fit$qr <- as.matrix(fit$qr) 162 nr <- min(sum(good), nvars) 163 if (nr < nvars) { 164 Rmat <- diag(nvars) 165 Rmat[1:nr, 1:nvars] &...
2016 Apr 12
2
net join fail
I am trying to reconfigure a samba server to use authentication from the University domain. * smbd seems to start OK * net ads testjoin is fine * net ads join -U xxUSERNAME createcomputer="xxCOMPUTER" fails with: Failed to join domain: failed to set machine spn: Constraint violation (where xxTEXT indicates redaction - sorry I'm not sure what's confidential and what isn't)
2000 Jan 10
5
bug in glm (PR#397)
Dear R-team As I didn't get any answer to my bug-report last week I have taken the effort and extracted a minimal data set from my data (see below) where the following bug occurs: > glm(SKR.ein.aus ~ ., family = binomial, data = bugdata, na.action = na.omit) Error in names<-.default(*tmp*, value = ynames) : names attribute must be the same length as the vector In addition: Warning
1999 Nov 09
3
Question on function "glm.fit"
I have a code that contains function "glm.fit" and it works in S-PLUS. But this same code (with some minor changes) does not work in R. I am supplying the part of the code. Can somebody help with this problem? The code *************************************************** x1 <- seq(from=-1,to=2, length=20) x2 <- (rep(1:5,4))/4 x <- cbind(1,x1,x2) y <-
2016 Apr 12
0
net join fail
On 12/04/16 12:09, John Rowe wrote: > I am trying to reconfigure a samba server to use authentication from the University domain. > > * smbd seems to start OK > * net ads testjoin is fine > * net ads join -U xxUSERNAME createcomputer="xxCOMPUTER" fails with: > Failed to join domain: failed to set machine spn: Constraint violation > > (where xxTEXT indicates
2000 Jan 05
0
bug in glm.fit (PR#395)
...`w' has no more "full" length: w <- sqrt((weights * mu.eta.val^2)[good]/variance(mu)[good]) which leads to problems close to the end of the function: names(w) <- ynames as `ynames' has "full" length. The same problem is with: names(fit$effects) <- c(xxnames[seq(fit$rank)], rep("", nobs - fit$rank)) as `fit$effects' has same length as `w'. That's all I found out. I hope it helps. I am sorry for not sending the data but as it is secret it would take some effort to "disguise" it, so it that's not necessary...