Relative frequencies / proportions with dplyr

Matheus Mello
Matheus Mello
September 2, 2023
Cover Image for Relative frequencies / proportions with dplyr

Calculating Relative Frequencies / Proportions with dplyr

Ever wondered how to calculate the relative frequencies or proportions of different values within each group using the dplyr package in R? 🤔

Let's delve into this question using the mtcars dataset as an example.

The Problem

The problem we want to solve is calculating the relative frequency of the number of gears by the transmission type (automatic/manual) in one go using dplyr.

The Solution

Luckily, dplyr makes it incredibly easy to calculate relative frequencies with just a few lines of code. Here's how you can do it:

library(dplyr)
data(mtcars)
mtcars <- tbl_df(mtcars)

# Count frequency and calculate relative frequencies
relative_freq <- mtcars %>%
  group_by(am, gear) %>%
  summarise(n = n()) %>%
  mutate(rel.freq = n / sum(n))

print(relative_freq)

And that's it! 🎉

After grouping the data by transmission type (am) and number of gears (gear), we use the summarise function to count the frequency of each combination. Finally, we use mutate to create a new column called rel.freq where we divide the frequency n by the sum of frequencies within each group.

The Result

The resulting dataframe will look like this:

# A tibble: 4 x 4
# Groups:   am [2]
     am  gear     n rel.freq
  <dbl> <dbl> <int>    <dbl>
1     0     3    15 0.789474
2     0     4     4 0.210526
3     1     4     8 0.615385
4     1     5     5 0.384615

Now you have the relative frequencies for each combination of transmission type and number of gears! The rel.freq column provides the proportion of each combination within its group.

Call-to-Action

Are you excited to explore the power of dplyr further? Check out more of its amazing functionalities and start streamlining your data wrangling and analysis! 💪

Leave a comment below sharing your favorite dplyr tricks or any questions you may have. Let's geek out together! 😄

Take Your Tech Career to the Next Level

Our application tracking tool helps you manage your job search effectively. Stay organized, track your progress, and land your dream tech job faster.

Your Product
Product promotion

Share this article

More Articles You Might Like

Latest Articles

Cover Image for How can I echo a newline in a batch file?
batch-filenewlinewindows

How can I echo a newline in a batch file?

Published on March 20, 2060

🔥 💻 🆒 Title: "Getting a Fresh Start: How to Echo a Newline in a Batch File" Introduction: Hey there, tech enthusiasts! Have you ever found yourself in a sticky situation with your batch file output? We've got your back! In this exciting blog post, we

Cover Image for How do I run Redis on Windows?
rediswindows

How do I run Redis on Windows?

Published on March 19, 2060

# Running Redis on Windows: Easy Solutions for Redis Enthusiasts! 🚀 Redis is a powerful and popular in-memory data structure store that offers blazing-fast performance and versatility. However, if you're a Windows user, you might have stumbled upon the c

Cover Image for Best way to strip punctuation from a string
punctuationpythonstring

Best way to strip punctuation from a string

Published on November 1, 2057

# The Art of Stripping Punctuation: Simplifying Your Strings 💥✂️ Are you tired of dealing with pesky punctuation marks that cause chaos in your strings? Have no fear, for we have a solution that will strip those buggers away and leave your texts clean an

Cover Image for Purge or recreate a Ruby on Rails database
rakeruby-on-railsruby-on-rails-3

Purge or recreate a Ruby on Rails database

Published on November 27, 2032

# Purge or Recreate a Ruby on Rails Database: A Simple Guide 🚀 So, you have a Ruby on Rails database that's full of data, and you're now considering deleting everything and starting from scratch. Should you purge the database or recreate it? 🤔 Well, my