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

Description Usage Arguments Examples

View source: R/ca.R

Description

Return the output of ca function.

Usage

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

Arguments

object

Output of ca command with interest = "moments".

...

additional arguments affecting the summary produced.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
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)

yuqimemeda/SortedEffects documentation built on Nov. 9, 2019, 3:49 a.m.