Learn R Programming

PLMIX (version 2.1.1)

d_rice: Rice Voting Data (partial orderings)

Description

The Rice Voting dataset (d_rice) collects the results of the 1992 election of a faculty member to serve on the Presidential Search Committee in the Rice University. A total of \(N=300\) people casted their vote in the ballots by ranking the \(K=5\) candidates in the short list in a preferential manner. The dataset is composed of partial top orderings of varying lengths. Missing positions are denoted with zero entries.

Usage

data(d_rice)

Arguments

Format

Object of S3 class c("top_ordering","matrix") gathering a matrix of partial orderings with \(N=300\) rows and \(K=5\) columns. Each row lists the faculty members from the most-liked (Rank_1) to the least-liked (Rank_5) in a given voting ballot.

References

Marcus, P., Heiser, W. J. and D'Ambrosio, A. (2013). Comparison of heterogeneous probability models for ranking data, Master Thesis, Leiden University.

Baggerly, K. A. (1995). Visual estimation of structure in ranked data, PhD thesis, Rice University.

Examples

Run this code
# NOT RUN {
data(d_rice)
head(d_rice)

## Subset of complete sequences
d_rice_compl=d_rice[rowSums(d_rice!=0)>=(ncol(d_rice)-1),]
head(d_rice_compl)

# }

Run the code above in your browser using DataLab