mouse.c {bootstrap} | R Documentation |
A small randomized experiment were done with 16 mouse, 7 to treatment group and 9 to control group. Treatment was intended to prolong survivl after a test surgery.
data(mouse.c)
The format is: num [1:9] 52 104 146 10 50 31 40 27 46
The treatment group is is dataet mouse.t
. mouse.c
is the control group. The book uses this example to illustrate
bootstrapping a sample mean. Measurement unit is days of survival following
surgery.
Efron, B. and Tibshirani, R. (1993) An Introduction to the Bootstrap. Chapman and Hall, New York, London.
data(mouse.c) data(mouse.t) str(mouse.c) stripchart(list(treatment=mouse.t, control=mouse.c))