latour: Chateau Latour Wine Data

latourR Documentation

Chateau Latour Wine Data

Description

The response variable is the quality of a vintage based on a scale of 1 to 5 over the years 1961 to 2004. The predictor is end of harvest, days between August 31st and the end of harvest for that year, and the factor of interest is whether or not it rained at harvest time.

Usage

data(latour)

Format

A data frame with 44 rows and 4 columns.

year

Year of harvest

quality

Rating on a scale of 1-5

end.of.harvest

Days August 31 and the end of harvest

rain

indicator variable for rain

References

Sheather, SJ (2009), A Modern Approach to Regression with R, New York: Springer.

Examples

data(latour)
plot(quality~end.of.harvest,pch='',data=latour)
points(quality~end.of.harvest,data=latour[latour$rain==0,],pch=3)
points(quality~end.of.harvest,data=latour[latour$rain==1,],pch=4)

kloke/npsm documentation built on Nov. 11, 2023, 4:27 a.m.