FCD: Fat Cats

FCDR Documentation

Fat Cats

Description

In a weight loss study on obese cats, overweight cats were randomly assigned to one of three groups and boarded in a kennel. In each of the three groups, the cats' total caloric intake was strictly controlled (1 cup of generic cat food) and monitored for 10 days. The difference between the groups was that group A was given 1/4 of a cup of cat food every six hours, group B was given 1/3 a cup of cat food every eight hours, and group C was given 1/2 a cup of cat food every twelve hours. The weight of the cats at the beginning and end of the study was recorded and the difference in weights (grams) is stored in the variable Weight of the data frame FCD. Data are used in Example 11.4.

Format

A data frame with 36 observations on the following 2 variables:

Weight

difference in weights (grams)

Diet

a factor with levels A, B, and C

Source

Ugarte, M. D., Militino, A. F., and Arnholt, A. T. (2008) Probability and Statistics with R. Chapman & Hall/CRC.

Examples


# Figure 11.12
FCD.aov <- aov(Weight ~ Diet, data = FCD)
checking.plots(FCD.aov)
rm(FCD.aov)


PASWR documentation built on May 15, 2022, 5:05 p.m.