Prints estimates, standard errors, \(100(1 - \alpha)\)% CIs, test
statistics, and p-values to the console given a vector of estimates and their
covariance matrix. May also specify a function to transform the estimates and
95% CIs. Uses make_coef_mat() for underlying calculations.
print_ests(theta_hat, V_theta_hat, trans, title = "Parameter Estimates", ...)
Arguments
| theta_hat |
A named vector of parameter estimates. |
| V_theta_hat |
The covariance matrix of the parameter estimates in
theta_hat. |
| trans |
A function accepting a single argument (e.g., exp) that is
used to transform parameter estimates and confidence intervals. All tests
and standard errors are still on the untransformed scale. |
| title |
A string header to print before the estimates or NULL to
not print any header. Defaults to "Parameter Estimates". |
| ... |
Arguments passed on to make_coef_mat, stats::printCoefmat
alphaThe alpha level for the confidence intervals; default 0.05.
SEsTRUE (default) if standard errors should be reported.
CIsTRUE (default) if \(100(1 - \alpha)\)% CIs should be reported.
testsTRUE (default) if Wald test statistics and p-values based on
the normal distribution should be reported.
digitsminimum number of significant digits to be used for
most numbers.
signif.starslogical; if TRUE, P-values are additionally
encoded visually as ‘significance stars’ in order to help scanning
of long coefficient tables. It defaults to the
show.signif.stars slot of options.
signif.legendlogical; if TRUE, a legend for the
‘significance stars’ is printed provided signif.stars =
TRUE.
dig.tstminimum number of significant digits for the test statistics,
see tst.ind.
zap.indindices (integer) of column numbers which should be
formatted by zapsmall, i.e., by ‘zapping’ values
close to 0.
P.valueslogical or NULL; if TRUE, the last
column of x is formatted by format.pval as P
values. If P.values = NULL, the default, it is set to
TRUE only if options("show.coef.Pvalue") is
TRUE and x has at least 4 columns and
the last column name of x starts with "Pr(".
has.Pvaluelogical; if TRUE, the last column of x
contains P values; in that case, it is printed if and only if
P.values (above) is true.
eps.Pvaluenumber, ..
na.printa character string to code NA values in
printed output.
quotefurther arguments passed to
print.default.
rightfurther arguments passed to
print.default.
|