summary.ca {SortedEffects} | R 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 |
... |
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)
[Package SortedEffects version 1.7.0 Index]