weighted.mode | R Documentation |
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)))
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. |
(numeric vector) one or multiple elements that will be the arithmetic mode
weighted.mode(c(1,2,3,4,5,4,3,4,5,3))
weighted.mode(c(NA,1,3,NA))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.