powered by
A function to compute the majority vote (some would say plurality) label in a vector of labels, breaking ties at random.
majorityVote(x)
A list with the following components:
A table of votes for each unique value of x.
x
An integer specifying which unique value of x corresponds to the majority vote.
A string specifying the majority vote label.
A vector of values, either numerical or not.
L. Scrucca
x <- c("A", "C", "A", "B", "C", "B", "A") majorityVote(x)
Run the code above in your browser using DataLab