SoftRandomForest (version 0.1.0)

ClassMode: Determining the mode from a vector of numbers.

Description

ClassMode returns the most commonly occurring number from a vector of numbers.

Usage

ClassMode(classes)

Arguments

classes

A character vector of elements to find the mode.

Value

The mode found.

Details

ClassMode creates a frequency table based on a vector. This table is then sorted by highest frequency and returns the top element. Note, in the case of a tie, the first element is chosen as opposed to a random tiebreaker or returning both elements. For the sake of developing Random Forests of SDTs, this is a safer option.

Examples

Run this code
# NOT RUN {
Input = c("A", "C", "B", "B", "A", "B")
ClassMode(Input)
# }

Run the code above in your browser using DataLab