resample-data | R Documentation |
Data sets for use in examples.
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.
TV 10 observations: Time,Cable Verizon 1687 observations: Time,Group
The TV and Verizon datasets are used in What Teachers Should Know about the Bootstrap: Resampling in the Undergraduate Statistics Curriculum
Hesterberg, Tim (2014), What Teachers Should Know about the Bootstrap: Resampling in the Undergraduate Statistics Curriculum, https://arxiv.org/abs/1411.5279.
See resample-package
for an overview of resampling functions.
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"])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.