resample (version 0.4)

resample-data: Data sets for resampling examples

Description

Data sets for use in examples.

Arguments

DATA SETS

TV 10 observations: Time,Cable Verizon 1687 observations: Time,Group

Details

TV has measurements of minutes of commercials per half-hour, for "Basic" and "Extended" (extra-cost) cable TV stations.

Verizon has repair times, with two groups, CLEC and ILEC, customers of the "Competitive" and "Incumbent" local exchange carrior.

References

Hesterberg, Tim (2014), What Teachers Should Know about the Bootstrap: Resampling in the Undergraduate Statistics Curriculum, http://arxiv.org/abs/1411.5279.

See Also

See resample-package for an overview of resampling functions.

Examples

Run this code
# NOT RUN {
data(TV); summary(TV)
Basic <- with(TV, Time[Cable == "Basic"])
Extended <- with(TV, Time[Cable == "Extended"])

data(Verizon); summary(Verizon)
ILEC <- with(Verizon, Time[Group == "ILEC"])
CLEC <- with(Verizon, Time[Group == "CLEC"])
# }

Run the code above in your browser using DataLab