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 NULLto
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 theshow.signif.starsslot ofoptions.signif.legendlogical; if TRUE, a legend for the
    ‘significance stars’ is printed providedsignif.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; ifTRUE, the last
    column ofxis formatted byformat.pvalas P
    values.  IfP.values = NULL, the default, it is set toTRUEonly ifoptions("show.coef.Pvalue")isTRUEandxhas at least 4 columns and
    the last column name ofxstarts with"Pr(".has.Pvaluelogical; if TRUE, the last column ofxcontains P values; in that case, it is printed if and only ifP.values(above) is true.eps.Pvaluenumber, ..na.printa character string to code NAvalues in
    printed output.quotefurther arguments passed to
    print.default.rightfurther arguments passed to
    print.default. |