palettes: Palette repair data

Description Format Source Examples

Description

The palettes data set contains data from a firm that recycles palettes. Palettes from warehouses are bought, repaired, and resold. (Repairing a palette typically involves replacing one or two boards.) The company has four employees who do the repairs. The employer sampled five days for each employee and recorded the number of palettes repaired.

Format

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

Source

Michael Stob, Calvin College

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
data(palettes)
# Do the employees differ in the rate at which they repair palettes?
pal.lm1 <- lm(palettes~employee,palettes) 
anova(pal.lm1)
# Now using day as a blocking variable
pal.lm2 <- lm(palettes~employee+day,palettes) 
anova(pal.lm2)
xyplot(palettes~day, data=palettes,
		groups=employee,
		main="Productivity by day and employee",
		type='b',auto.key=list(columns=4,points=FALSE,lines=TRUE))

fastR documentation built on May 1, 2019, 11:18 p.m.