Description Usage Arguments Value References Examples
Confidence functions for the coefficients of a glm.
1 | glm.beta.conf(mod)
|
mod |
an output from glm |
A list of lists containing the confidence functions pconf, dconf, cconf, and qconf for each coefficient of the glm, as well as the P-curve and S-curve.
Tore Schweder and Nils Lid Hjort. Confidence, likelihood, probability. Vol. 41. Cambridge University Press, 2016.
1 2 3 4 5 6 7 8 9 | # Low birth weight example from page 38 of *Confidence, Likelihood, Probability*,
data(lbw)
mod <- glm(low ~ weight + age + black + other + smoker, data = lbw, family = binomial)
mod.conf <- glm.beta.conf(mod)
display.cconf(mod.conf$weight)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.