summary.pmcalibration {pmcalibration} | R Documentation |
Summarize a pmcalibration object
Description
Summarize a pmcalibration object
Usage
## S3 method for class 'pmcalibration'
summary(object, conf_level = 0.95, ...)
Arguments
object |
object created with |
conf_level |
width of the confidence interval (0.95 gives 95% CI). Ignored if call to |
... |
ignored |
Value
prints a summary of calibration metrics. Returns a list of two tables: metrics
and plot
Examples
library(pmcalibration)
# simulate some data with a binary outcome
n <- 500
dat <- sim_dat(N = n, a1 = .5, a3 = .2)
head(dat)
# predictions
p <- with(dat, invlogit(.5 + x1 + x2 + x1*x2*.1))
# fit calibration curve
cal <- pmcalibration(y = dat$y, p = p, smooth = "gam", k = 20, ci = "pw")
summary(cal)
[Package pmcalibration version 0.1.0 Index]