Skip to contents

The anes.input object is a subset of the American National Election Study (ANES) 1968 dataset. It contains selected variables used as input for further analysis.

Format

A numeric matrix with 12 columns, representing selected variables from the ANES 1968 dataset.

Source

The data comes from the American National Election Study (ANES) 1968, available in the asmcjr package.

Details

The anes.input object is created by loading the ANES1968 dataset from the asmcjr package and selecting the first 12 columns. The data is then converted to a matrix format for analysis.

The steps to create anes.input are as follows:


data(ANES1968)
anes.input <- ANES1968[, 1:12]
anes.input <- as.matrix(anes.input)

Examples

if (FALSE) { # \dontrun{
data(anes.input)
} # }