Directions:

Question #1

For this question you should use the “diet” data set provided below. These data come from a randomized experiment seeking to compare the efficacy of three different weight loss diets. A subject’s assigned diet is encoded as either 1, 2, or 3, and is recorded in the variable Diet. The provided code coerces this variable to a factor (categorical variable).

diet_data = read.csv("https://remiller1450.github.io/data/diet.csv")
diet_data$Diet = factor(diet_data$Diet)

Note: There will be two additional questions added to this assignment after Fall break on the topics of testing errors/multiple comparisons and data transformations.