Make coefficient matrix containing estimates, standard errors, \(100(1 - \alpha)\)% CIs, Z statistics, and p-values given an input vector of parameter estimates and their standard errors.
make_coef_mat( theta_hat, V_theta_hat, trans, alpha = 0.05, SEs = TRUE, CIs = TRUE, tests = TRUE )
theta_hat | A named numeric vector of parameter estimates. |
---|---|
V_theta_hat | A numeric |
trans | A function accepting a single argument (e.g., |
alpha | The alpha level for the confidence intervals; default 0.05. |
SEs |
|
CIs |
|
tests |
|
A matrix
with row names given by the names of theta_hat
containing the requested columns.