Learn R Programming

modeest (version 1.06)

mfv: Estimate of the Mode of a Discrete Distribution (Most Frequent Value)

Description

This function returns the most frequent value(s) in a given numerical vector.

Usage

mfv(x, ...)

Arguments

x
numeric. Vector of observations.
...
further arguments, which will be ignored.

Value

  • The most frequent value(s) found in x is (are) returned.

Details

Argument x is to come from a discrete distribution. This function uses function tabulate of R.

See Also

mlv for general mode estimation; geomMode, poisMode, or distribMode for computation of the mode of the classical distributions

Examples

Run this code
# 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)

Run the code above in your browser using DataLab