summary.ecap: Summary of ECAP Object

Description Usage Arguments Author(s) References Examples

View source: R/ecap.R

Description

Prints summary information about the calibration of an ECAP object. *** Denotes that one of the parameter estimates has hit the end of the given grid of tuning parameters. The grid can be adjusted in the ecap function.

Usage

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

Arguments

object

An object of class ecap.

digits

The number of significant digits that should be displayed.

...

Additional arguments

Author(s)

Bradley Rava, Peter Radchenko and Gareth M. James.

References

http://faculty.marshall.usc.edu/gareth-james/Research/Probs.pdf

Examples

1
2
3
4
5
set.seed(1)
p_obs <- runif(1000, 0, 1)
win_var <- rbinom(length(p_obs), 1, p_obs)
ecap_fit <- ecap(unadjusted_prob = p_obs, win_var = win_var, win_id = 1, bias_indicator = FALSE)
summary(ecap_fit)

ecap documentation built on July 23, 2020, 9:07 a.m.