Mode.Rd
Mode
Mode(x)
Either a vector or a frequency table from table
table
The modal value of x
x <- c(3, 1:5) Mode(x)#> [1] 3Mode(table(x))#> [1] 3