Description Usage Arguments Examples
This suite of functions provides the basic quantities which are used in forming a wide variety of diagnostics for checking the quality of regression fits.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## S3 method for class 'izip'
influence(model, ...)
## S3 method for class 'izip'
hatvalues(model, ...)
## S3 method for class 'izip'
rstandard(
model,
infl = influence.izip(model),
type = c("deviance", "pearson"),
...
)
## S3 method for class 'izip'
cooks.distance(
model,
infl = influence(model),
res = infl$pear_res,
hat = infl$hat,
...
)
|
model |
an object class 'izip', obtained from a call to |
... |
other arguments passed to or from other methods (currently unused). |
infl |
influence structure as returned by |
type |
type of residuals for |
res |
residuals, with proper default. |
hat |
hat values H[i,i], see default. |
1 2 3 4 5 6 | data(bioChemists)
M_bioChem <- glm.izip(art ~ ., data = bioChemists)
influence(M_bioChem)
hatvalues(M_bioChem)
rstandard(M_bioChem, type = "pearson")
cooks.distance(M_bioChem)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.