How to Analyze Data with R: A Complete Beginner Guide to dplyr
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Datasets often require many work hours to understand fully. R makes this process as easy as possible through the dplyr
package – the easiest solution for code-based data analysis. You’ll learn how to use it today.
Are you completely new to R? Here’s our beginner R guide for programmers.
You’ll use the Gapminder dataset throughout the article. It’s available through CRAN, so make sure to install it. Here’s how to load in all required packages:
Here’s how the first couple of rows of the Gapminder dataset look like:
And that’s all you need to start analyzing.
Today you’ll learn about:
- Column Selection
- Data Filtering
- Data Ordering
- Creating Derived Columns
- Calculating Summary Statistics
- Grouping
Column Selection
More often than not, you don’t need all dataset columns for your analysis. R’s dplyr
provides a couple of ways to select columns of interest. The first one is more obvious – you pass the column names inside the select()
function.
Here’s how to use this syntax to select a couple of columns:
Here are the results:
But what if you have dozens of columns and want to select all but a few? There’s a better way – specify the columns you don’t need with a minus sign (-) as a prefix:
Here are the results:
As you can see, the continent column is the only one that isn’t shown. And that’s all you should know about column selection. Let’s proceed with data filtering.
Data Filtering
Filtering datasets is one of the most common operations you’ll do on your job. Not all data is relevant at a given time. Sometimes you need values for a particular product or its sales figures in Q1. Or both. That’s where the filter()
function comes in handy.
Here’s how to display results only for 2007:
The results are shown below:
You can nest multiple filter conditions inside a single filter()
function. Just make sure to separate the conditions by a comma. Here’s how to select a record for Poland in 2007:
Here are the results:
But what if you want results for multiple countries? You can use the %in%
keyword for the task. The snippet below shows records for 2007 for Poland and Croatia:
Here are the results:
If you understand these examples, you understand data filtering. Let’s continue with data ordering.
Data Ordering
Sometimes you want your data ordered by a specific column(s) value. For example, you might want to sort users by age or students by score, either in ascending or descending order. You can easily implement this behavior with dplyr
– with its built-in arrange()
function.
Here’s how to arrange the results by life expectancy:
The results are shown below:
As you can see, data is ordered by the lifeExp column ascendingly. Most cases require descending ordering. Here’s how you can implement it:
Here are the results:
Sometimes you want only a couple of rows returned. The top_n()
function lets you specify how many rows should be displayed. Here’s an example:
The results are shown in the following image:
And that’s it with regards to the ordering. Next up – derived columns.
Creating Derived Columns
With dplyr
, you can use the mutate()
function to create new attributes. The new attribute name is put on the left side of the equal sign, and the contents on the right – just as if you were to declare a variable.
The example below calculates GDP as a product of population and GDP per capita and stores it in a dedicated column. Some other transformations are made along the way:
Here are the results:
Instead of mutate()
, you can also use transmute()
. There’s one severe difference – transmute()
keeps only the derived column. Let’s use it in the example from above:
The results are shown below:
You’ll use mutate()
more often, but knowing additional functions can’t hurt.
Calculating Summary Statistics
Summary statistics don’t need any introduction. In many cases, you need to calculate a simple average of a column. Here’s how to calculate average life expectancy among the entire dataset:
Here are the results:
As you would imagine, you can chain other functions to calculate summary statistics only on a subset. Here’s how to calculate the average life expectancy in 2007 in Europe:
The results are shown in the following image:
You can do much more with summary statistics, but that requires some grouping knowledge. Let’s cover that next.
Grouping
Summary statistics become much more powerful when combined with grouping. For example, you can use the group_by()
function to calculate the average life expectancy per continent. Here’s how:
https://gist.github.com/darioappsilon/8b815ad3be908158c9d8c191dfa22af3
Here are the results:
You can also use the previously discussed ordering functions to arrange the dataset by average life expectancy. Here’s how to do so in a descending way:
The results are shown below:
One other powerful function is if_else()
. You can use it when creating new columns whose value depends on some conditions.
For example, here’s how to create a column named over75, which has a value of Y if the average life expectancy for a continent is over 75, and N otherwise:
The results are shown in the following image:
And that’s all you should know about grouping! Let’s wrap things up next.
Conclusion
Today you’ve learned how to analyze data with R’s dplyr
. It’s one of the most developer-friendly packages out there, way simpler than it’s Python competitor – Pandas.
You should be able to analyze and prepare any type of dataset after reading this article. You can do more advanced things, of course, but often these are just combinations of the things you’ve learned today.
Learn More
- What Can I Do With R? 6 Essential R Packages for Programmers
- Machine Learning with R: A Complete Guide to Linear Regression
- How to Make Stunning Bar Charts in R: A Complete Guide with ggplot2
- How to Make Stunning Line Charts in R: A Complete Guide with ggplot2
- How to Make Stunning Scatter Plots in R: A Complete Guide with ggplot2
- How to Make Stunning Geomaps in R: A Complete Guide with Leaflet
Appsilon is hiring for remote roles! See our Careers page for all open positions, including R Shiny Developers, Fullstack Engineers, Frontend Engineers, a Senior Infrastructure Engineer, and a Community Manager. Join Appsilon and work on groundbreaking projects with the world’s most influential Fortune 500 companies.
Article How to Analyze Data with R: A Complete Beginner Guide to dplyr comes from Appsilon | End to End Data Science Solutions.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.