Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

olson

The Olson Heart Lung Dataset


Description

We need to determine the effect of the number of revolutions per minute (rpm) of the rotary pump head of an Olson heart-lung pump on the fluid flow rate Liters_minute. The rpm's are replicated at 50, 75, 100, 125, and 150 levels with respective frequencies 5, 3, 5, 2, and 5. The fluid flow rate is measured in litters per minute.

Usage

data(olson)

Format

A data frame with 20 observations on the following 4 variables.

Observation

observation number

rpm

rmp levels at 50, 75, 100, 125, and 150

Level

the rpm levels

Liters_minute

litters per minute

References

Dean, A., and Voss, D. (1999). Design and Analysis of Experiments. Springer.

Examples

data(olson)
par(mfrow=c(2,2))
plot(olson$rpm,olson$Liters_minute,xlim=c(25,175),xlab="RPM",
  ylab="Flow Rate",main="Scatter Plot")
boxplot(Liters_minute~rpm,data=olson,main="Box Plots")
aggregate(olson$Liters_minute,by=list(olson$rpm),mean)
olson_crd <- aov(Liters_minute ~ as.factor(rpm), data=olson)

ACSWR

A Companion Package for the Book "A Course in Statistics with R"

v1.0
GPL-2
Authors
Prabhanjan Tattar
Initial release
2015-09-05

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.