GSS | R Documentation |
Data from the General Social Survey, 1991, on the relation between sex and party affiliation.
data(GSS)
A data frame in frequency form with 6 observations on the following 3 variables.
sex
a factor with levels female
male
party
a factor with levels dem
indep
rep
count
a numeric vector
Agresti, A. Categorical Data Analysis, 2nd E., John Wiley & Sons, 2002, Table 3.11, p. 106.
data(GSS)
str(GSS)
# use xtabs to show the table in a compact form
(GSStab <- xtabs(count ~ sex + party, data=GSS))
# fit the independence model
(mod.glm <- glm(count ~ sex + party, family = poisson, data = GSS))
# display all the residuals in a mosaic plot
mosaic(mod.glm,
formula = ~ sex + party,
labeling = labeling_residuals,
suppress=0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.