Learn R Programming

PASWR (version 1.3)

FCD: 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.

Arguments

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

Examples

Run this code
# NOT RUN {
# Figure 11.12
FCD.aov <- aov(Weight ~ Diet, data = FCD)
checking.plots(FCD.aov)
rm(FCD.aov)

# }

Run the code above in your browser using DataLab