Learn R Programming

blm (version 2013.2.4.4)

summary: Summary of blm and lexpit model fit.

Description

A list of estimates and convergence status of a blm or lexpit model fit.

Arguments

Methods

summary
signature(object = "blm"): Matrix of estimates and convergence information.
summary
signature(object = "lexpit"): Matrix of estimates and convergence information.
The matrix returned has the named components:
Est.
vector of estimated regression coefficients. For lexpit model estimates are split into est.linear and est.expit components of list
Std. Err
standard error of model estimates
t-value
t-value of model estimates
p-value
p-value (two-sided) of model estimates

See Also

blm, lexpit

Examples

Run this code

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)


Run the code above in your browser using DataLab