Description Usage Arguments Value Examples
Calculate the coefficients from a fitted probit regression model with confidence intervals.
1 | coefprobit(pfit, alpha = 0.05)
|
pfit |
An object of class |
alpha |
A numeric scalar, the significance level used to generate
100*(1 - |
A numeric vector of length six, the intercept and slope of the
dose-response curve, each with 100*(1 - alpha
)%
confidence limits.
1 2 3 4 5 6 | toxdat <- data.frame(
dose=c(0.05, 0.0625, 0.125, 0.25, 0.5, 1),
ntot=rep(8, 6),
nfx = c(0, 1, 4, 4, 6, 8))
myfit <- fitprobit(toxdat)
coefprobit(myfit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.