correl | R Documentation |
Correlation and covariance matrix of the parameter estimates, rank, scale estimate, and weights.
correl(object, tl = 1e-10)
covar(object)
Rank(object)
rscale(object)
weights(object)
object |
An object inheriting from class "glm" or "cubinf". |
tl |
Tolerance for a scale factor (denominator) close to zero. |
The generic functions coef
, residuals
, fitted
,
formula
, deviance
, rscale
, covar
, correl
, weights
, Rank
can be used to extract elements from an object returned by glm
.
The model fitting function glm
library(robcbi)
data(Finney)
Vol <- Finney$Vol; Rate <- Finney$Rate; Resp <- Finney$Resp
lVol <-log(Vol); lRate <- log(Rate)
z.cub <- glm(Resp~lVol+lRate,family=binomial,method="cubinf", ufact=3.2)
correl(z.cub)
covar(z.cub)
Rank(z.cub)
rscale(z.cub)
weights(z.cub)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.