plot.checkTS: Plot method for 'checkTS' objects

View source: R/plot-methods.R

plot.checkTSR Documentation

Plot method for checkTS objects

Description

Displays boxplots of simulated statistics against theoretical expected values for each statistic tracked by checkTS.

Usage

## S3 method for class 'checkTS'
plot(x, ...)

Arguments

x

a checkTS object returned by checkTS

...

currently unused

Value

a ggplot object (invisibly returned; also printed)

See Also

checkTS

Examples


library(CoSMoS)

x <- generateTS(margdist = "burrXII",
                margarg = list(scale = 1,
                               shape1 = .75,
                               shape2 = .15),
                acsvalue = acs(id = "weibull",
                               t = 0:30,
                               scale = 10,
                               shape = .75),
                n = 1000, p = 30, p0 = .25, TSn = 100)

chck <- checkTS(x)
plot(chck)


CoSMoS documentation built on May 8, 2026, 1:08 a.m.