mfv {modeest} | R Documentation |
This function returns the most frequent value(s) in a given numerical vector.
mfv(x, ...)
x |
numeric. Vector of observations. |
... |
further arguments, which will be ignored. |
Argument x
is to come from a discrete distribution.
This function uses function tabulate
of R.
The most frequent value(s) found in x
is (are) returned.
The user should preferentially call mfv
through
mlv(x, method = "mfv")
(or mlv(x, method = "discrete")
).
This returns an object of class mlv
.
Paul Poncet paulponcet@yahoo.fr
mlv
for general mode estimation;
geomMode
, poisMode
, or distribMode
for computation of the mode of the classical distributions
# Unimodal distribution x <- rbinom(100, size = 10, prob = 0.8) ## True mode binomMode(size = 10, prob = 0.8) ## Most frequent value mfv(x) mlv(x, method = "discrete") # Bimodal distribution x <- rpois(100, lambda = 7) ## True mode poisMode(lambda = 7) ## Most frequent value mfv(x) M <- mlv(x, method = "discrete") print(M) plot(M)