powered by
Computes the mode (most frequent value) of an atomic vector.
compute_mode(x, ties_method = "random", na_rm = TRUE)
(vector(1)): mode value.
vector(1)
(vector()).
vector()
(character(1)) Handling of ties. One of "first", "last" or "random" to return the first tied value, the last tied value, or a randomly selected tied value, respectively.
character(1)
(logical(1)) If TRUE, remove missing values prior to computing the mode.
logical(1)
TRUE
compute_mode(c(1, 1, 1, 2, 2, 2, 3)) compute_mode(c(1, 1, 1, 2, 2, 2, 3), ties_method = "last") compute_mode(c(1, 1, 1, 2, 2, 2, 3), ties_method = "random")
Run the code above in your browser using DataLab