moda {dprep} | R Documentation |
This function calculates the mode of a vector.
moda(x, na.rm = TRUE)
x |
A numeric vector |
na.rm |
A Boolean value that indicates the presence of missing values. |
The function returns the mode or modes of a vector. If a tie exists, all values that are tied are returned.
moda |
A numeric value representing the mode of the vector |
Caroline Rodriguez and Edgar Acuna
#---- Calculating the mode ---- x=c(1,4,2,3,4,6,3,7,8,5,4,3) moda(x)