summary {blm} | R Documentation |
blm
and lexpit
model fit.A list of estimates and convergence status of a blm
or lexpit
model fit.
signature(object = "blm")
:
Matrix of estimates and convergence information.
signature(object = "lexpit")
:
Matrix of estimates and convergence information.
The matrix returned has the named components:
vector of estimated regression coefficients. For lexpit model estimates are split into est.linear
and est.expit
components of list
standard error of model estimates
t-value of model estimates
p-value (two-sided) of model estimates
S. Kovalchik s.a.kovalchik@gmail.com
data(ccdata)
fit <- blm(y~female+packyear,data = ccdata,
weight = ccdata$w, strata = ccdata$strata)
summary(fit)
fit.lexpit <- lexpit(y~female, y~packyear,data = ccdata,
weight = ccdata$w, strata = ccdata$strata)
summary(fit.lexpit)