R/getOR.R

###############################################################################
# Description: Add comment
#
# Author: Linh Tran <tranlm@berkeley.edu>
# Date: Feb 24, 2015
###############################################################################

#' export
getOR = function(x) {
	OR = exp(x$Estimate)
	l.ci = OR-qnorm(.975)*x$Std.err
	u.ci = OR+qnorm(.975)*x$Std.err
	return(cbind(OR, l.ci, u.ci))
}
tranlm/lrecImpact documentation built on May 31, 2019, 7:45 p.m.