GSS: General Social Survey- Sex and Party affiliation

Description Usage Format Source Examples

Description

Data from the General Social Survey, 1991, on the relation between sex and party affiliation.

Usage

1

Format

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

Source

Agresti, A. Categorical Data Analysis John Wiley & Sons, 2002, Table 3.11, p. 106.

Examples

1
2
3
4
5
data(GSS)
## maybe str(GSS) ; plot(GSS) ...
(GSStab <- xtabs(count ~ sex + party, data=GSS))

mod.glm <- glm(count ~ sex + party, family = poisson, data = GSS)

vcdExtra documentation built on May 31, 2017, 4:57 a.m.