Download this worksheet as a .Rmd
Data manipulation with dplyr
Aims of this worksheet
One of the key reasons to use R is to be able to manipulate data with ease. After completing this worksheet you will be able to work with the most commonly used data manipulation verbs provided by the dplyr package. In addition, you will learn how to read a CSV file into R, and learn how to use the pipe operator.
Since these packages were written by Hadley Wickham, you may find his articles on “Tidy Data” and “The Split-Apply-Combine Strategy for Data Analysis” to be useful. In addition, you should read the package documentation and vignettes for the dplyr package.
Loading CSV files
We will begin by loading the necessary packages:
library(dplyr)
library(historydata)
So far we have worked almost exclusively with data which is contained in R packages, which we can install and then load. However, most data will come to you outside of an R package, so you must learn how to load that data.
Often tabular data will come to you in the form of a CSV (comma separated values) file. This is a text file where, as the name indicates, the columns in the data are separated with columns. This is a much better way of receiving data than say, an Excel spreadsheet.
R has a number of functions that can read in data in various formats. We will use one, read_csv()
, from the readr package, which works nicely with dplyr and tidyr. But there is an equivalent function in base R called read.csv()
. See ?readr::read_csv
or ?read.csv
for details.
Because R is awesome, we can pass it the URL to a file (in addition to the local path to a file) and it will be loaded. (You could also download the file with download.file()
.)
library(readr)
methodists <- read_csv("http://lincolnmullen.com/projects/worksheets/data/methodists.csv")
The pipe (%>%
)
The packages that we will be working with all take advantage of an operator provided by the magrittr package. Called the pipe, this operator %>%
passes the output of one function to the first argument of a second function.
Consider this example from an earlier exercise, where we find the earliest and latest dates from a column in a data frame.
range(as.Date(naval_promotions$date), na.rm = TRUE)
## [1] "1794-06-04" "1905-02-12"
Here we have to read the expression from the inside out, from the naval_promotions$date
, to the as.Date()
function, to the range()
function. The pipe operator lets us write an equivalent expression which is more legible.
naval_promotions$date %>%
as.Date() %>%
range(na.rm = TRUE)
## [1] "1794-06-04" "1905-02-12"
Selecting columns (select()
)
Now we can begin to use the Methodists data. This data contains membership statistics for different churches, circuits, and class meetings. (This data is transcribed from the Methodist annual minutes meeting, and so it uses the racial terminology from those primary sources.) First can get a sense of what the data looks like.
methodists
## Source: local data frame [15,887 x 10]
##
## minutes_year conference district meeting state members_general
## (int) (chr) (chr) (chr) (chr) (int)
## 1 1773 NA NA New York NA 180
## 2 1773 NA NA Philadelphia NA 180
## 3 1773 NA NA New Jersey NA 200
## 4 1773 NA NA Maryland NA 500
## 5 1773 NA NA Virginia NA 100
## 6 1774 NA NA New York NA 222
## 7 1774 NA NA Philadelphia NA 204
## 8 1774 NA NA New Jersey NA 257
## 9 1774 NA NA Chester NA 36
## 10 1774 NA NA Baltimore NA 738
## .. ... ... ... ... ... ...
## Variables not shown: members_white (int), members_colored (int),
## members_indian (chr), url (chr)
The first data manipulation verb that we are going to use is select()
. This function lets us pass the names of the columns that we want to keep.
methodists %>%
select(minutes_year, meeting, members_general)
## Source: local data frame [15,887 x 3]
##
## minutes_year meeting members_general
## (int) (chr) (int)
## 1 1773 New York 180
## 2 1773 Philadelphia 180
## 3 1773 New Jersey 200
## 4 1773 Maryland 500
## 5 1773 Virginia 100
## 6 1774 New York 222
## 7 1774 Philadelphia 204
## 8 1774 New Jersey 257
## 9 1774 Chester 36
## 10 1774 Baltimore 738
## .. ... ... ...
Notice that we have not actually changed the data stored in methodists
until we assign the changed data back to the variable.
Read the documentation for this function, ?select
.
Select the
minutes_year
,meeting
, and all the columns that begin with the wordmembers_
.Remove the column
url
.
Filtering rows (filter()
)
The select()
function lets us pick certain columns. The filter()
function lets select certain rows based on logical conditions. For example, here we get the only the churches where the total number of members is at greater than 1,000.
methodists %>%
filter(members_general > 1000)
## Source: local data frame [4 x 10]
##
## minutes_year conference district meeting state members_general
## (int) (chr) (chr) (chr) (chr) (int)
## 1 1776 NA NA Brunswick NA 1611
## 2 1777 NA NA Brunswick NA 1360
## 3 1781 NA NA Delaware NA 1052
## 4 1783 NA NA Dover NA 1017
## Variables not shown: members_white (int), members_colored (int),
## members_indian (chr), url (chr)
Get just the rows from New York in 1800.
Which Methodist meetings had only black members?
The Methodists gradually kept more detailed records. They began by keeping track of the total number of members, then the number of white and black members, and eventually the number of white, black, and Indian members. But when they kept track of those racial divisions, they did not report the total number of members.
In which year did the Methodists start keeping track of white and black members? (Hint: use
is.na()
to find when the missing values begin.)Bonus: some of these Methodist meetings were “missions.” Load the
stringr
package and look at the documentation for?str_detect
. Can you find which rows represent missions?
Creating new columns (mutate()
)
Very often one will want to create a new column based on other columns in the data. For instance, in our Methodist data, there is a column called minutes_year
for the year that the minutes were kept. But the actual data was for the previous year. Here we create a new column called year
, where each value is one less than in minutes_year
.
methodists %>%
mutate(year = minutes_year - 1) %>%
select(minutes_year, year, meeting)
## Source: local data frame [15,887 x 3]
##
## minutes_year year meeting
## (int) (dbl) (chr)
## 1 1773 1772 New York
## 2 1773 1772 Philadelphia
## 3 1773 1772 New Jersey
## 4 1773 1772 Maryland
## 5 1773 1772 Virginia
## 6 1774 1773 New York
## 7 1774 1773 Philadelphia
## 8 1774 1773 New Jersey
## 9 1774 1773 Chester
## 10 1774 1773 Baltimore
## .. ... ... ...
Notice that we chained the data manipulation functions using the pipe (%>%
). This lets us create a pipeline were we can do many different manipulations in a row.
Filter the Methodists data to 1786 and later. All of the
members_total
values for those years areNA
. Assign the the value ofmembers_white
plusmembers_colored
to themembers_total
column.Create two new columns, one with the percentage of white members, and one with the percentage of black members.
Bonus: We neglected the column
members_indian
above, which should be counted in themembers_total
column. However, for some years the values of that column areNA
, and in other years they have a numeric value. The difference is that the years where the value isNA
, that column does not appear in the data because it was not tracked. How can you add that column to the total without running into problems with the missing values? (Hints: One way to do this is to use theifelse()
function to conditionally assign a value tomembers_total
. Another way to do this is to group the data frame usingrowwise()
and usesum()
with thena.rm = TRUE
argument. A third, less elegant way, would be to split the data frame manually based on whether the value isNA
or not, then recombine them.)
Sorting columns (arrange()
)
Often we want to sort a data frame by one of its columns. This can be done with the verb arrange()
. By default arrange()
will sort from least to greatest; we can use the function desc()
to sort from greatest to least. In this example, we sort the data frame to get the circuits with the highest number of white members.
methodists %>%
arrange(desc(members_white))
## Source: local data frame [15,887 x 10]
##
## minutes_year conference district meeting state members_general
## (int) (chr) (chr) (chr) (chr) (int)
## 1 1825 Ohio Lancaster Muskingum NA NA
## 2 1830 New York New York New York NA NA
## 3 1829 New York New York New York NA NA
## 4 1828 New York New York New York NA NA
## 5 1830 Baltimore Baltimore Baltimore NA NA
## 6 1825 Ohio Lancaster Hockhocking NA NA
## 7 1827 New York New York New York NA NA
## 8 1829 Baltimore Baltimore Baltimore NA NA
## 9 1828 Baltimore Baltimore Baltimore NA NA
## 10 1826 New York New York New York NA NA
## .. ... ... ... ... ... ...
## Variables not shown: members_white (int), members_colored (int),
## members_indian (chr), url (chr)
Which circuits had the highest number of black members? Be sure to select only the necessary columns so that the results print in a meaningful way.
Which circuits had the most members overall? Keep in mind that you will have to use your code from above to calculate the total members for years where that value is
NA
because only the number of white and black members is supplied?Which circuits had the high percentage of black members without being entirely black?
Split-apply-combine (group_by()
)
Notice that in the example above the arrange()
function sorted the entire data frame. So when we looked for the circuits with the largest number of members, we got rows from 1825, then 1830, then 1829, then 1830, and so on. What if we wanted to get the biggest circuit from each year?
We can solve this kind of problem with what Hadley Wickham calls the “split-apply-combine” pattern of data analysis. Think of it this way. First we can split the big data frame into separate data frames, one for each year. Then we can apply our logic to get the results we want; in this case, that means sorting the data frame. We might also want to get just the top one row with the biggest number of members. Then we can combine those split apart data frames into a new data frame.
Observe how this works. If we want to get circuit with the most black members in each year, we can use the following code:
methodists %>%
filter(minutes_year >= 1786) %>%
select(minutes_year, meeting, starts_with("members")) %>%
group_by(minutes_year) %>%
arrange(desc(members_colored)) %>%
slice(5)
## Source: local data frame [45 x 6]
## Groups: minutes_year [45]
##
## minutes_year meeting members_general members_white
## (int) (chr) (int) (int)
## 1 1786 Dover NA 690
## 2 1787 Dover NA 654
## 3 1788 Talbot NA 1077
## 4 1789 Sussex NA 1300
## 5 1790 Roanoke NA 834
## 6 1791 East New River NA 1160
## 7 1792 Dover NA 941
## 8 1793 Dover NA 930
## 9 1794 Queen Ann's NA 573
## 10 1795 Queen Ann's NA 529
## .. ... ... ... ...
## Variables not shown: members_colored (int), members_indian (chr)
Let’s walk through that logic step by step.
- First we get only the years since 1786 with
filter()
, since the data does not keep track of the number of white and black members until that year. - Then we select only the columns that we are interested in, namely, the column for the year, the name of the meeting, and the various values for membership. We do this just so that the results print out in a useful way: in a real analysis we might decide not to throw away the other columns.
- The crucial step is when we
group_by()
theminutes_year
. This creates a new data-frame (the split step) for each unique combination of values in the variables. Notice that the printed our result says that there are 45 groups, i.e., one for each year from 1786 to 1830. (Note that you can group by combinations of columns, so, one group for each combination of city and state, for instance.) - Next we apply our logic, in this case, sorting by the column
members_colored
in descending order. This puts the rows with the biggest value at the top. - Next we continue to apply our logic with
slice()
. This function simply gives us the rows in each of the split-up data frames with that index. Soslice(1)
gives us the first row,slice(5)
gives us this fifth row, andslice(1:5)
gives us the first through fifth rows. - The last step, combine, where the split-up data frames are brought back together, is done for us automatically. Note that the data frame is still grouped, however, so any subsequent data manipulation verbs will be applied to the groups rather than the whole data frame. If we wished, we could use
ungroup()
.
This particular operation, getting the top value in a split up data frame is so common that dplyr provides us with a top_n()
function as a short cut. That function also handles ties better. (What if, for instance, two circuits both have the same biggest value?)
methodists %>%
filter(minutes_year >= 1786) %>%
select(minutes_year, meeting, starts_with("members")) %>%
group_by(minutes_year) %>%
top_n(1, members_colored)
## Source: local data frame [45 x 6]
## Groups: minutes_year [45]
##
## minutes_year meeting members_general members_white members_colored
## (int) (chr) (int) (int) (int)
## 1 1786 Antigua NA 0 1000
## 2 1787 Kent NA 607 604
## 3 1788 Calvert NA 505 842
## 4 1789 Calvert NA 943 909
## 5 1790 Calvert NA 814 1170
## 6 1791 Calvert NA 760 1329
## 7 1792 Calvert NA 700 1200
## 8 1793 Surry NA 814 955
## 9 1794 Calvert NA 682 1102
## 10 1795 Calvert NA 602 924
## .. ... ... ... ... ...
## Variables not shown: members_indian (chr)
We get the same results more concisely and reliably, though the steps of “split-apply-combine” are perhaps somewhat less easy to see.
For each year, which was the biggest circuit?
For each year since 1786, which church had the biggest percentage of black members without being entirely black?
For the year 1825, what was the biggest meeting in each conference? In each district?
For each year, what were the three biggest churches in the Baltimore conference?
Summarizing or aggregating data (summarize()
)
In the examples using top_n()
or slice()
we performed a very simple kind of data summary, where we took the single row with the biggest value in a given column. This essentially boiled many rows of a data frame down into a single row. We would like to be able to summarize or aggregate a data frame in other ways as well. For instance, we often want to take the sum or the mean of a given column. We can do this using the summarize()
function in conjunction with the group_by()
function.
In this example, we group by the year the minutes were taken. Then we find the total number of white members for each year.
methodists %>%
filter(minutes_year >= 1786) %>%
group_by(minutes_year) %>%
summarize(total_members_white = sum(members_white, na.rm = TRUE))
## Source: local data frame [45 x 2]
##
## minutes_year total_members_white
## (int) (int)
## 1 1786 18291
## 2 1787 21949
## 3 1788 30557
## 4 1789 34425
## 5 1790 45983
## 6 1791 50580
## 7 1792 52079
## 8 1793 51486
## 9 1794 52794
## 10 1795 48121
## .. ... ...
Notice that we get one row in the recombined data frame for each group in the original data frame. The value in the new column is the result of a function (in this case, sum()
) applied to the columns in each of the split apart data frames.
There is also a special case where we might want to know how many rows were in each of the split apart (or grouped) data frames. We can use the special n()
function to get that count. (Just like the case of slice()
and top_n()
, this is such a common thing to do that dplyr provides the special functions count()
and tally()
. You can look up their documentation to see how they work.)
methodists %>%
group_by(minutes_year) %>%
summarize(total_meetings = n())
## Source: local data frame [56 x 2]
##
## minutes_year total_meetings
## (int) (int)
## 1 1773 5
## 2 1774 9
## 3 1775 10
## 4 1776 12
## 5 1777 15
## 6 1779 22
## 7 1780 21
## 8 1781 24
## 9 1782 27
## 10 1783 37
## .. ... ...
How many meetings (i.e., churches or circuits) were there in each conference in each year since 1802?
What is the average number of white, black, and average number of total members for each year since 1786?
Make a plot of the average percentage of black members over time.
Make a plot of the average and median number of members over time.
What was the average number of members in each conference for each year? Can you also make a plot of this?
What was the average percentage of black members in each conference for each year? Can you also make a plot of this?