grog {DAAGxtras} | R Documentation |
Data are annual apparent alcohol consumption in Australia and New Zealand, in liters of pure alcohol content per annum, separately for beer, wine, and spirits (including spirit-based products).
data(grog)
A data frame with 18 observations on the following 5 variables.
Beer
Wine
Spirit
Country
Australia
NewZealand
Year
Data are total available pure alcohol content, for the three categories, divided by numbers of persons aged 15 years or more. The source data for New Zealand included quarterly figures from December 1997, and annual data to December for all years. The annual New Zealand figure to June 1998 required an estimate for September 1997 that was obtained by extrapolating back the third quarter trend line from later years.
Australian data are from http://www.abs.gov.au. New Zealand data are derived from data from http://www.stats.govt.nz/people/health/alcohol.htm
data(grog) library(lattice) xyplot(Beer+Wine+Spirit ~ Year | Country, data=grog) xyplot(Beer+Wine+Spirit ~ Year, groups=Country, data=grog, outer=TRUE)