resample-data
From resample v0.4
by Tim Hesterberg
Data sets for resampling examples
Data sets for use in examples.
- Keywords
- datasets
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.
DATA SETS
TV 10 observations: Time,Cable Verizon 1687 observations: Time,Group
Source
The TV and Verizon datasets are used in What Teachers Should Know about the Bootstrap: Resampling in the Undergraduate Statistics Curriculum
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
## 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"])
# ## End(Not run)
Community examples
Looks like there are no examples yet.