This function returns the mode of vectors. That is to say, for any given vector of values, it returns the value that appears most frequently.
The function works with strings, numerical and mixed inputs. NA
values are treated as distinct values.
Arguments
- x
A vector
- na.rm
Logical value indicating whether
NA
values should be omitted. Default isFALSE
.- first_only
Logical value indicating whether only the first mode should be returned if
x
has multiple modes (i.e. there are multiple values with the highest number of observations). Default is FALSE.