compile_est {cprobit}R Documentation

Inpernal function: generate commonly used summary statistics for estimates.

Description

Inpernal function: generate commonly used summary statistics for estimates.

Usage

compile_est(
  var,
  est,
  se = NULL,
  z_score = NULL,
  pval = NULL,
  value_null = 0,
  ci_lower = NULL,
  ci_upper = NULL,
  prefix = NULL,
  postfix = NULL
)

Arguments

var

Names of variables.

est

Estimated regression coefficients.

se

SE of estimates.

z_score

Z score of estimates, i.e., est / se.

pval

P-value of estimates.

value_null

Null effects for estimates, either with length 1 or length of est. Default is 0.

ci_lower

Lower bound of 95% CI of estimates.

ci_upper

Upper bound of 95% CI of estimates.

prefix

Prefix to the column names in the data.frame returned.

postfix

Postfix to the column names in the data.frame returned.

Details

Vectorised, as long as the length of the input match.


[Package cprobit version 1.0.2 Index]