Mode | R Documentation |
Returns the mode of a vector. First in a tie wins (see examples).
Mode(x, na.rm = FALSE)
x |
A vector. |
na.rm |
Remove missing values before calculating the mode (FALSE by default). NAs are counted just like any other element. That is, an NA in the vector won't necessarily result in a return NA. See the first example. |
A combined p-value.
Mode(c(1,2,2,3,3,3, NA))
Mode(c(1,2,2,3,3,3, NA), na.rm=TRUE)
Mode(c(1,2,2,3,3,3, NA, NA, NA, NA))
Mode(c(1,2,2,3,3,3, NA, NA, NA, NA), na.rm=TRUE)
Mode(c("A", "Z", "Z", "B", "B"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.