DEV Community

Cover image for Finding the Mode in R: A Step-By-Step Guide
Anthony Clemons
Anthony Clemons

Posted on

Finding the Mode in R: A Step-By-Step Guide

When it comes to statistical analysis in R, finding the mean and median is straightforward, thanks to built-in functions like mean() and median(). However, when it comes to finding the mode, R does not provide a direct built-in function. The mode, which is the most frequently occurring value in a dataset, can be a crucial measure of central tendency, especially for categorical data or data with a non-normal distribution.

In this article we'll explore several methods to calculate the mode in R.

What is the Mode?

The mode is the value that appears most frequently in a data set. A data set may have one mode, more than one mode, or no mode at all:

  • Unimodal: One mode
  • Bimodal: Two modes
  • Multimodal: More than two modes
  • No mode: No value repeats

Now, let's look at calculating the mode in R.

Method 1: Writing a Custom Function

Since R does not have a built-in mode function, we can create our own:

get_mode <- function(x) {
  uniq_x <- unique(x)
  uniq_x[which.max(tabulate(match(x, uniq_x)))]
}
Enter fullscreen mode Exit fullscreen mode

This custom function, get_mode(), works by:

  1. Identifying the unique values in the dataset.
  2. Counting how many times each unique value appears.
  3. Returning the value that appears most frequently.

Example Usage:

# Sample vector
sample_vector <- c(1, 2, 2, 3, 4, 4, 4, 5)

# Find the mode
mode <- get_mode(sample_vector)
print(mode)
Enter fullscreen mode Exit fullscreen mode

Method 2: Using the table Function

The table function in R creates a frequency table, which we can then use to find the mode:

find_mode <- function(x) {
  freq_table <- table(x)
  mode <- as.numeric(names(freq_table[freq_table == max(freq_table)]))
  return(mode)
}
Enter fullscreen mode Exit fullscreen mode

This function, find_mode(), creates a frequency table and then looks for the value(s) that have the maximum frequency.

Example Usage:

# Another sample vector
sample_vector <- c('red', 'blue', 'blue', 'green', 'red', 'red')

# Find the mode
mode <- find_mode(sample_vector)
print(mode)
Enter fullscreen mode Exit fullscreen mode

This method is especially useful for categorical data and will list all modes in case of a multimodal dataset.

Method 3: Using the dplyr Package

If you're working with data frames and the dplyr package, finding the mode is quite efficient:

library(dplyr)

find_mode_dplyr <- function(df, column_name) {
  df %>%
    count(!!sym(column_name)) %>%
    filter(n == max(n)) %>%
    pull(!!sym(column_name))
}
Enter fullscreen mode Exit fullscreen mode

This function takes a data frame and the column name for which you want to find the mode. It counts the occurrences of each unique value, filters for the maximum count, and then extracts the mode.

Example Usage:

# Create a data frame
sample_df <- data.frame(colors = c('red', 'blue', 'blue', 'green', 'red', 'red'))

# Find the mode for the 'colors' column
mode <- find_mode_dplyr(sample_df, 'colors')
print(mode)
Enter fullscreen mode Exit fullscreen mode

Wrapping Up

While R may not have a built-in function for finding the mode, the methods outlined above provide simple and effective ways to calculate this measure of central tendency for both numerical and categorical data. Depending on your specific needs and the nature of your dataset, you can choose the method that best suits your analysis.

Remember that the mode is most meaningful for categorical data and discrete numerical data for measuring the frequency distribution. For continuous numerical data, using the mode can be less valuable due to the infinite number of possible values.

Top comments (0)