Learn R Programming

tracerer (version 2.2.3)

calc_mode: Calculate the mode of values If the distribution is bi or multimodal or uniform, NA is returned

Description

Calculate the mode of values If the distribution is bi or multimodal or uniform, NA is returned

Usage

calc_mode(values)

Value

the mode of the trace

Arguments

values

numeric vector to calculate the mode of

Author

Richèl J.C. Bilderbeek

Examples

Run this code
# In a unimodal distribution, find the value that occurs most
calc_mode(c(1, 2, 2))
calc_mode(c(1, 1, 2))

# For a uniform distribution, NA is returned
tracerer:::calc_mode(c(1, 2))

Run the code above in your browser using DataLab