ClassMode {SoftRandomForest} | R Documentation |
ClassMode
returns the most commonly occurring number from a vector of numbers.
ClassMode(classes)
classes |
A character vector of elements to find the mode. |
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.
The mode found.
Input = c("A", "C", "B", "B", "A", "B") ClassMode(Input)