corn: Corn Yield

Description Format Details Source References Examples

Description

William Gosset analyzed data from an experiment comparing the yield of regular and kiln-dried corn.

Format

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

Details

Gosset (Student) reported on the results of seeding plots with two different kinds of seed. Each type of seed (regular and kiln-dried) was planted in adjacent plots, accounting for 11 pairs of "split" plots.

Source

These data are also available at DASL, the data and story library (http://lib.stat.cmu.edu/DASL/).

References

W.S. Gosset, "The Probable Error of a Mean," Biometrika, 6 (1908), pp 1-25.

Examples

1
2
3
4
5
corn2 <- stack(corn)
names(corn2) <- c('yield','treatment')
lm(yield ~ treatment, data = corn2)
t.test(yield ~ treatment, data=corn2)
t.test(corn$reg, corn$kiln)

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