powered by
Calculate the arithmetic mode of a vector. If multiple elements have the same frequency, all of them will be displayed.
weighted.mode(x, w = rep(1, length(x)))
(numeric vector) one or multiple elements that will be the arithmetic mode
(numeric vector) vector from which we'll obtain the mode
(numeric vector) vector of weights. If not provided, it defaults to non-weighted mode.
weighted.mode(c(1,2,3,4,5,4,3,4,5,3)) weighted.mode(c(NA,1,3,NA))
Run the code above in your browser using DataLab