Mode | R Documentation |
Finds the modal value of a vector of any class.
Mode(x, na.rm = FALSE)
x |
a vector (lists and arrays will be flattened). |
na.rm |
logical: strip |
Based on the Stack Overflow answer http://stackoverflow.com/a/8189441/143383
The value of x
that occurs most often. If there is a tie,
the one that appears first (among those tied) is chosen.
Ken Williams (on Stack Overflow)
x <- c(1, 3, 3, 4)
Mode(x) # 3
x.char <- letters[x]
Mode(x.char) # "c"
x.factor <- as.factor(x.char)
Mode(x.factor) # "c", with levels "a", "c", "d"
x.logical <- x > 3
Mode(x.logical) # FALSE
## Behavior with ties
y <- c(3, 3, 1, 1, 2)
Mode(y) # 3
z <- c(2, 1, 1, 3, 3)
Mode(z) # 1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.