Skip to contents

This dataset, rankings, contains the rankings data extracted from the France 2009 European Election Study (EES). It is a matrix of numeric rankings for various political parties.

Format

A numeric matrix with rows representing respondents and columns representing the rankings of different political parties.

Source

France 2009 European Election Study (EES)

Details

The rankings matrix was created from the franceEES2009 dataset by selecting columns 2 to 9, which correspond to the respondents' rankings of different political parties. The data was then converted to numeric mode for further analysis.

The following code was used to create the rankings object:

rankings <- as.matrix(franceEES2009[,2:9]) mode(rankings) <- "numeric"

This dataset is used as an input for the blackbox_transpose function to perform dimensional analysis.