Random samples of ten mature (five-years-old and older) and ten two-year-old cows were taken from each of five breeds. The average butterfat percentage of these 100 cows is stored in the variable butterfat with the type of cow stored in the variable breed and the age of the cow stored in the variable age.

COWS

Format

A data frame with 100 observations on the following 3 variables:

  • butterfat (average butterfat percentage)

  • age (a factor with levels 2 years old and Mature)

  • breed (a factor with levels Ayrshire, Canadian, Guernsey, Holstein-Friesian, and Jersey)

Source

Canadian record book of purebred dairy cattle.

References

  • Sokal, R. R. and Rohlf, F. J. 1994. Biometry. W. H. Freeman, New York, third edition.

  • Ugarte, M. D., Militino, A. F., and Arnholt, A. T. 2015. Probability and Statistics with R, Second Edition. Chapman & Hall / CRC.

Examples

ggplot(data = COWS, aes(x = breed, y = butterfat, fill = age)) + 
geom_boxplot(position = position_dodge(1.0)) + 
labs(x = "", y = "Average butterfat percentage") + scale_fill_brewer()

summary(aov(butterfat ~ breed + age, data = COWS))
#>             Df Sum Sq Mean Sq F value Pr(>F)    
#> breed        4  34.32   8.580  49.909 <2e-16 ***
#> age          1   0.21   0.207   1.204  0.275    
#> Residuals   94  16.16   0.172                   
#> ---
#> Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1