Learn R Programming

SMPracticals (version 1.4-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

Format

A data frame with 14 observations on the following 2 variables.

dose

The dose of radiation administered (rads).

surv

The survival rate of the batches expressed as a percentage.

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