weighted.mode {Rrepest} | R Documentation |
Mode
Description
Calculate the arithmetic mode of a vector. If multiple elements have the same frequency, all of them will be displayed.
Usage
weighted.mode(x, w = rep(1, length(x)))
Arguments
x |
(numeric vector) vector from which we'll obtain the mode |
w |
(numeric vector) vector of weights. If not provided, it defaults to non-weighted mode. |
Value
(numeric vector) one or multiple elements that will be the arithmetic mode
Examples
weighted.mode(c(1,2,3,4,5,4,3,4,5,3))
weighted.mode(c(NA,1,3,NA))
[Package Rrepest version 1.5.4 Index]