Learn R Programming

SMPracticals (version 1.3-1)

survival: Survival of Rats After Radiation Doses

Description

The `survival' data frame has 14 rows and 2 columns.

The data measured the survival percentages of batches of rats who were given varying doses of radiation. At each of 6 doses there were two or three replications of the experiment.

Usage

data(survival)

Arguments

source

Efron, B. (1988) Computer-intensive methods in statistical regression. SIAM Review, 30, 421-449.

References

Davison, A. C. (2003) Statistical Models. Cambridge University Press. Page 376.

Examples

Run this code
data(survival)
plot(survival$dose,survival$surv,log="y")  # note the obvious outlier
lm(log(surv)~dose,data=survival)

Run the code above in your browser using DataLab