summary.ca: Return the output of 'ca' function.

View source: R/ca.R

summary.caR Documentation

Return the output of ca function.

Description

Return the output of ca function.

Usage

## S3 method for class 'ca'
summary(object, ...)

Arguments

object

Output of ca command with interest = "moments".

...

additional arguments affecting the summary produced.

Examples

data("mortgage")
### Regression Specification
fm <- deny ~ black + p_irat + hse_inc + ccred + mcred + pubrec +
ltv_med + ltv_high + denpmi + selfemp + single + hischl
### Specify characteristics of interest
t <- c("deny", "p_irat", "black", "hse_inc", "ccred", "mcred", "pubrec",
"denpmi", "selfemp", "single", "hischl", "ltv_med", "ltv_high")
### Issue ca command
CA <- ca(fm = fm, data = mortgage, var = "black", method = "logit",
cl = "both", t = t, b = 50, bc = TRUE)
### Report summary table
summary(CA)

SortedEffects documentation built on March 22, 2022, 9:05 a.m.