Learn R Programming

rsimsum (version 0.3.3)

dropbig.multisimsum: Return observations dropped by simsum

Description

dropbig.multisimsum returns observations dropped by simsum while computing summary statistics for a simulation study.

Usage

# S3 method for multisimsum
dropbig(x, ...)

Arguments

x

An object of class multisimsum.

...

Ignored.

Value

An object of class dropbig.multisimsum if dropbig was set to TRUE when calling multisimsum, NULL otherwise. It contains two slots: big_estvarname and big_se. Both slots consist in the portion of the original data that was identified to have estimated values or standard errors exceeding the limits defined by max and semax.

See Also

multisimsum(), print.dropbig.multisimsum()

Examples

Run this code
# NOT RUN {
data(frailty)
ms <- multisimsum(data = frailty, par = "par", true = c(trt = -0.50,
   fv = 0.75), estvarname = "b", se = "se", methodvar = "model",
   by = "fv_dist", dropbig = TRUE, max = 6, semax = 3)
dropbig(ms)
# }

Run the code above in your browser using DataLab