list.coef

Regression models for limited dependent variables are interpreted in several different ways. The estimated coefficients are often transformed before being interpreted, for example. Exponentiating logistic or count regression coefficients is common, as is converting the coefficient into percent change. The list.coef function transforms model coefficients into these additional quantities. It also reports confidence intervals for exponentiated coefficients. Users may specify the # of decimal places to report and the alpha level. For example:

library(catregs)
data("Mize19AH")
m1 <- glm(alcB ~woman*parrole + age + race2 + race3 + race4 + income + ed1 + ed2 + ed3 + ed4,family="binomial",data=Mize19AH)
list.coef(m1)
##        variables      b    SE      z     ll     ul p.val   CI
## 1    (Intercept)  2.627 0.544  4.827  1.560  3.694 0.000 95 %
## 2          woman -0.284 0.095 -2.999 -0.470 -0.098 0.004 95 %
## 3        parrole -0.482 0.105 -4.568 -0.688 -0.275 0.000 95 %
## 4            age -0.086 0.019 -4.603 -0.123 -0.049 0.000 95 %
## 5          race2 -0.445 0.078 -5.726 -0.598 -0.293 0.000 95 %
## 6          race3  0.284 0.443  0.641 -0.584  1.152 0.325 95 %
## 7          race4 -0.153 0.197 -0.778 -0.539  0.233 0.295 95 %
## 8         income  0.008 0.001  5.505  0.005  0.011 0.000 95 %
## 9            ed1  0.460 0.153  3.006  0.160  0.760 0.004 95 %
## 10           ed2  0.610 0.143  4.256  0.329  0.891 0.000 95 %
## 11           ed3  0.765 0.154  4.967  0.463  1.067 0.000 95 %
## 12           ed4  0.680 0.177  3.833  0.332  1.028 0.000 95 %
## 13 woman:parrole -0.215 0.138 -1.561 -0.486  0.055 0.118 95 %

In the above, b refers to the original model coefficient, S.E. to the estimated model coefficient’s standard error, Z is the z-statistic (b/se(b)), LL.CI is the lower limit of the confidence interval around the model coefficient, UL.CI is the upper limit of the confidence interval around the model coefficient, p-val is the p-value associated with the z-statistic, exp.b is the exponentiated model coefficient, LL.CI.for.exp.b is the lower limit of the confidence interval around the exponentiated model coefficient, UL.CI.for.exp.b is the upper limit of the confidence interval around the exponentiated model coefficient, Percent is the % change interpretation of the coefficient, i.e., 100*(1-(exp(b))), and CI is the amount of confidence in the confidence interval.