calc_mode {tracerer} | R Documentation |
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)
Arguments
values |
numeric vector to calculate the mode of |
Value
the mode of the trace
Author(s)
Richèl J.C. Bilderbeek
Examples
# 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))
[Package tracerer version 2.2.3 Index]