Chapter 8 Functional Programming
8.1 Ch. 8 Objectives
This chapter is designed around the following learning objectives for functional programming in R. Upon completing this chapter, you should be able to:
- Describe the basic tenets of functional programming
- Define functions and their basic attributes
- Create simple functions using named and optional arguments
- Define the meaning of “vectorized operations” in R
- Interpret and apply the
purrr::map
family of functions
8.2 What is functional programming?
Functional programming means just that: programming with functions. A basic philosophy of functional programming in R is to replace “for-loops” with functions. While there isn’t anything inherently wrong with for-loops, they can be difficult to follow, especially when they are nested within one to another. R is well-poised to support the elimination of “for-loops” because R is a vectorized language. To be vectorized means that you don’t need a for-loop to execute this code:
with code like this:
The top code performs the squared
operator across each entry in the
vector, one after another. The bottom set uses a for-loop to accomplish the
same task, albeit in a longer (and harder to follow) version.
The pipe operator %>%
is an ally in this endeavor because it allows you to
pass an object (like a vector or data frame) through series of functions in serial order. The pipe function is also easier to follow (with your mind) because
it allows you to interpret the code as if you were reading instructions in a
“how-to” manual:
“take this object, then do this, then do this, then do that”. Without the %>%
operator, we are forced to nest functions together or write long and verbose
code that steps through treatments slowly (and somewhat painfully). Looking at
the code below should make clear which set is easier to comprehend:
#nested code
daily_show_2000 <- select(filter(rename(daily_show,
year = YEAR,
job = GoogleKnowlege_Occupation,
date = Show,
name = Raw_Guest_List),
year == 2000),
job, date, name)
#piped code
daily_show_2000 <- daily_show %>%
rename(year = YEAR,
job = GoogleKnowlege_Occupation,
date = Show,
name = Raw_Guest_List) %>%
filter(year == 2000) %>%
select(job, date, name)
In the nested example above, we “see” the dplyr::select()
function first,
yet the arguments to this function show up last (at the end of the nested code).
This separation between functions and their arguments only gets worse as the
degree of nesting increases. The piped code, however, produces the same result
as the nested code but in a much more “readable” fashion. A similar analogy
holds for the nesting of “for-loops” (which, when nested, are even
harder to follow!).
8.3 Writng Functions
“If you have to do something more than twice, use a function to do it.” - Programming Proverb
Up to this point, we have relied entirely on functions sourced from base R or
from packages like Tidyverse::
(and for good reason - they are very useful).
Every programmer, however, at some point in their journey, discovers that the
function they are desiring simply doesn’t exist - at least not in the way that
suits their vision. To that end, it’s worth learning how to create your own
functions.
The syntax for function generation is relatively straight forward:
#example code; will not run
function_name <- function(argument1, argument2, ...) {
# insert code to manipulate arguments here
# maybe some code to check validity of input arguments
# specify a return value, if desired
}
Each function has arguments as input, body code as the working parts, and an environment where the function resides. These components can be accessed by passing the function name as an argument to:
formals()
, to see argumentsbody()
, to see the function’s code- or type just the function name, without
()
, into the console - but note that many base R functions are coded in C++ and can be accessed on GitHub.
- or type just the function name, without
environment()
, to see where the function resides.- more on R environments below
8.3.1 Example Function: my_mean
Let’s create a simple function, named my_mean
, to calculate the arithmetic mean
for a numeric vector. This function takes only one argument, a vector x
, for
which we calculate the mean (sum(x) / length(x)
), assign it to a
value y
, and the return y
as output. Note that all the “action” for my_mean
happens within the curly braces { }
that follow the function assignment.
## [1] 3
While this function is simple and straightforward, it does have some limitations.
For example, what happens if we pass a character vector to my_mean
or a numeric
vector that contains NA
values? In the former case, we will get an error
because our function uses the base R function sum()
, which requires numeric,
logical, or complex vectors as input (so our function inherits the properties
of that function).
If any NA
values are present, however, we are less fortunate: only NA is
returned. This many not seem like a big deal but if your analysis depends on
calling my_mean
in several locations (over and over), you might have a hard
time debugging it…
## [1] NA
For this reason, functions often contain optional arguments that allow the user
to specify how to handle such errors. The function my_mean2
below contains
an optional argument, na.rm = TRUE
, that defaults to remove NA
values when
present. This function uses if else
logic to handle the na.rm = TRUE
argument, since this argument can only have one of two values.
my_mean2 <- function(x, na.rm = TRUE) {
if (na.rm == FALSE) {
y <- sum(x) / length(x)
return(y)
}
else {
y <- sum(na.omit(x)) / length(na.omit(x))
return(y)
}
}
Now, when we pass a vector containing NAs
to my_mean2
, we get a numeric
result.
## [1] 3
A couple points worth noting about the functions above. First, take note that
most homemade functions rely on other functions called within their body text,
and so they inherit the properties of those functions.
Second, you may have noticed that while
the body()
code in my_mean2
assigns the mean of x
to a new variable, y
,
this function-specific variable does not show up in the “Global Environment”
pane after the function is executed. This is due to how environments are created in R: an environment essentially draws walls around objects.
Indeed, objects that are defined within functions are part of the evaluation environment within that function, even if the function returns the value of the object as output (“what happens inside functions stays inside functions”). A detailed discussion on R environments is beyond the scope of this book, look here for an introduction to environments and here for a more detailed tutorial. The take-home point is that a homemade function can exist within the global environment and return values to the global environment, even if some of the objects created within that function don’t show up in the global environment.
8.3.2 Example Function: “import.w.name”
Oftentimes, you will have a list of files of the same type/structure that you want to import and analyze in a single data frame. This exercise (and the section that follows) will demonstrate how you can streamline that process using functional programming. Let’s create a function to “import a file with its name appended”.
For this example, assume that your files represent data from a network of sensors,
where the name/ID assigned to each sensor is included in its file name but
not in the file itself. To give you an example of what we are working with,
let’s use list.files()
to look at the file names and paths (note: you can find this
.zip file on our Canvas site). For this exercise,
we show a short list of 8 files (4 each from two sensors) but one could imagine
this list being hundreds of entries.To Note: these are real data collected
using sensors from
this citizen-science network
and published
by our research group
here in 2019.
The “PA” in each file name stands for
Purple Air.
## [1] "./data/purpleair//PA019_20181022.csv"
## [2] "./data/purpleair//PA019_20181023.csv"
## [3] "./data/purpleair//PA019_20181024.csv"
## [4] "./data/purpleair//PA019_20181025.csv"
## [5] "./data/purpleair//PA020_20181022.csv"
## [6] "./data/purpleair//PA020_20181023.csv"
## [7] "./data/purpleair//PA020_20181024.csv"
## [8] "./data/purpleair//PA020_20181025.csv"
Thus, we wish to write a function that not only imports these .csv files into a data
frame but also extracts the part of the file name (i.e., PA019 and PA020)
as one of the data columns (otherwise, when the data were combined we might not know what data was associated with a given sensor!). In this function we will also
include a step to clean up the newly created data frame with a call to
dplyr::select()
to retain only a few variables of interest and lubridate::ymd()
to create a date-time object. Seeing that these
files are .csv, we can leverage readr::read_csv
# create an object that tracks the file names and file paths
file_list <- list.files('./data/purpleair/', full.names=TRUE)
# function to import a .csv and include part of the filename as a data column
import.w.name <- function(pathname) {
#create a tibble by importing the 'pathname' file
df <- read_csv(pathname, col_names = TRUE)
df <- df %>%
# use stringr::str_extract & a regex to get sensor ID from file name
# regex translation: "look for a /, then extract all letters and numbers that follow until _"
mutate(sensor_ID = str_extract(pathname,
"(?<=//)[:alnum:]+(?=_)"),
# convert Date & Time variable to POSIXct with lubridate
datetime = lubridate::ymd_hms(UTCDateTime)) %>%
# return only a few salient variables to the resultant data frame using dplyr::select
select(datetime,
current_temp_f,
current_humidity,
pressure,
pm2_5_atm,
sensor_ID) %>%
na.omit() # remove NA values, which happens when sensor goes offline
return(df)
}
After sourcing this function, we can test it out on the first entry of our list
of files. We specify the first entry with a subset to file_list[1]
.
## # A tibble: 6 × 6
## datetime current_temp_f current_humidity pressure pm2_5_atm
## <dttm> <dbl> <dbl> <dbl> <dbl>
## 1 2018-10-22 17:52:21 90 12 852. 2.45
## 2 2018-10-22 17:53:41 86 13 852. 3.43
## 3 2018-10-22 17:55:01 87 13 852. 2.76
## 4 2018-10-22 17:56:49 87 13 852. 2
## 5 2018-10-22 17:58:08 87 13 852. 1.82
## 6 2018-10-22 17:59:28 87 13 852. 1.98
## # ℹ 1 more variable: sensor_ID <chr>
The import.w.name()
function is useful, but not versatile;
it was written to handle a special type of file with a particular naming
convention. Those limitations aside, one could imagine how this function could
be easily adapted to suit other file types and formats. As you develop your
coding skills, a good strategy is to keep useful functions in a .R script
file so that you can call upon them when needed: source(import.w.name.R)
8.4 The purrr::
package
The purrr::
package was designed specifically with functional programming in mind.
Similar to the discussion of vectorized operations above, purrr::
was created
to help you apply functions to vectors (and data frames) in a way that is easy to implement and easy to “read”.
8.4.1 Function Mapping
The map_
family of functions are the core of the purrr
package. These
functions are intended to map functions (i.e., to apply them) to individual elements in a vector (or data frames); the map_
functions are similar to functions like lapply()
and vapply()
from base R (but more versatile). “Mapping” a function onto a vector is a common theme of functional programming. To illustrate how the map_
functions work, its best to visualize the process first.
As shown above in Figure 8.1, the generic form of map()
always returns a list
object as the output (thanks to Hadley Wickham for the graphic). A list
is a generic vector that can contain multiple objects (other vectors, data frames, etc.). Indeed, a data frame (and a tibble
) is a special kind of list: a data frame is a list of vectors (columns) of equal length. A data frame can contain different vector objects but those objects must be placed in separate columns and each column vector must be the same length (when all the columns are equal length that means that data frames are rectangular lists). A generic list
does not need to be rectangular because generic list entries are more distinct. Further, a list can contain another list (like a set of small boxes that are nested within a larger box). Think of a list
like a drawer organizer - it can contain lots of different objects, all of which might be related to another in some way or, at least, might be used together for some common purpose. To review:
- A vector is a one-dimensional object where all the entries are the same type.
- A matrix is a two-dimensional (rectangular) object where all entries are the same type, but ordered into rows and column indices.
- A data frame is a two dimensional (rectangular) object that contains columns of different vectors. The type of vector (e.g.,
character
,numeric
,logical
, etc.) can differ from one column to the next but all entries within each vector column must be the same. - A list can contain different vector objects of different types and different lengths. A list can also contain other lists. A list does not need to be rectangular.
To illustrate the versatility of lists, let’s create one that contains a numeric vector, a matrix, and a data frame.
my.chr.vector <- c("Harry", "Ron", "Hermione", "Draco")
my.num.matrix <- matrix(data = 1:20, nrow=5)
my.df <- slice_sample(.data = mpg, n=7)
my.list <- list("entry_1" = my.chr.vector,
"entry_2" = my.num.matrix,
"entry_3" = my.df)
glimpse(my.list)
## List of 3
## $ entry_1: chr [1:4] "Harry" "Ron" "Hermione" "Draco"
## $ entry_2: int [1:5, 1:4] 1 2 3 4 5 6 7 8 9 10 ...
## $ entry_3: tibble [7 × 11] (S3: tbl_df/tbl/data.frame)
## ..$ manufacturer: chr [1:7] "audi" "dodge" "ford" "land rover" ...
## ..$ model : chr [1:7] "a6 quattro" "caravan 2wd" "explorer 4wd" "range rover" ...
## ..$ displ : num [1:7] 3.1 3 4 4.4 2.4 2.2 3.3
## ..$ year : int [1:7] 2008 1999 1999 2008 2008 1999 1999
## ..$ cyl : int [1:7] 6 6 6 8 4 4 6
## ..$ trans : chr [1:7] "auto(s6)" "auto(l4)" "auto(l5)" "auto(s6)" ...
## ..$ drv : chr [1:7] "4" "f" "4" "4" ...
## ..$ cty : int [1:7] 17 17 14 12 21 21 16
## ..$ hwy : int [1:7] 25 24 17 18 30 27 22
## ..$ fl : chr [1:7] "p" "r" "r" "r" ...
## ..$ class : chr [1:7] "midsize" "minivan" "suv" "suv" ...
Lists can be accessed in similar ways to vectors. For example, by using single-bracket indexing, [ ]
, a list element is returned.
## $entry_1
## [1] "Harry" "Ron" "Hermione" "Draco"
Note that “single bracket” indexing returns a “list element” of class: list
.
## [1] "list"
If you want access to the vector contents of the list element, you can use the $
symbol to access the contents of each list entry, or, you can use “double bracket” indexing, [[ ]]
:
## [1] "Harry" "Ron" "Hermione" "Draco"
## [1] "character"
## [,1] [,2] [,3] [,4]
## [1,] 1 6 11 16
## [2,] 2 7 12 17
## [3,] 3 8 13 18
## [4,] 4 9 14 19
## [5,] 5 10 15 20
## [1] "matrix" "array"
Working with lists is one of the mental hurdles to overcome when learning map()
. However, there are variants in the map_
family of functions that return simpler object types; we will work with these simplified functions to begin.
Purrr:: Function |
Object Type Returned |
---|---|
map() | list |
map_lgl() | logical |
map_int() | integer |
map_dbl() | numeric |
map_chr() | character |
map_dfr() | data frame (output by row-binding) |
map_dfc() | data frame (output by column-binding) |
Let’s use map_dfr()
to apply our function, import.w.name()
, onto the vector of file names and paths (file_list
). The “r” in map_dfr()
means that the resultant data frame output by map_
will be created by binding rows together as the function moves down each index in the file list. This is shown schematically in Figure 8.2 below.
file_list <- list.files('./data/purpleair/', full.names=TRUE)
# map the import.w.name() function to all objects within `file_list` sequentially
# and combining the result into a single data frame with row binding
PA_data_merged <- map_dfr(file_list, import.w.name)
glimpse(PA_data_merged)
## Rows: 6,371
## Columns: 6
## $ datetime <dttm> 2018-10-22 17:52:21, 2018-10-22 17:53:41, 2018-10-22…
## $ current_temp_f <dbl> 90, 86, 87, 87, 87, 87, 86, 86, 86, 86, 86, 86, 86, 8…
## $ current_humidity <dbl> 12, 13, 13, 13, 13, 13, 12, 13, 13, 13, 13, 13, 13, 1…
## $ pressure <dbl> 851.66, 851.68, 851.56, 851.59, 851.54, 851.57, 851.5…
## $ pm2_5_atm <dbl> 2.45, 3.43, 2.76, 2.00, 1.82, 1.98, 1.95, 2.48, 2.27,…
## $ sensor_ID <chr> "PA019", "PA019", "PA019", "PA019", "PA019", "PA019",…
8.5 Applying functions to multiple columns: dplyr::across()
There are many instances where you will want to apply a function to several columns in a data frame, often in conjunction with mutate()
or summarise()
. The across()
function helps you do this efficiently, by applying a function across various column variables in a data frame.
The across()
function has two required arguments: the column variables being treated (.cols =
) and the function(s) being applied to those columns (.fns =
). For example, if you wanted to change the cyl
, drv
, and class
variables in the mpg
data frame to factors, you could use:
Before providing more examples of across()
, it’s worth taking a tangent to discuss more efficient ways to select multiple columns beyong using c()
.
8.5.1 Using <tidy-select>
syntax to select columns
Many of the dplyr::
functions support Tidy Selection as a means to choose certain column variables when operating on a data frame. For example, maybe you want to choose only columns whose names start with a common prefix (starts_with()
) or whose names contain a common string (contains()
). The <tidy-select>
helpers provide syntax for efficiently specifying your .cols =
argument in R. These helpers, shown below, can be used as column/variable selection arguments whenever you see the text <tidy-select>
in the function’s help file.
Helper | Explanation | Example |
---|---|---|
everything() | Matches all variables | rename_with(mpg, .cols = everything(), .fn = toupper)) |
starts_with() | Starts with a prefix | select(mpg, starts_with(“c”)) |
ends_with() | Ends with a suffix | mutate(mpg, across(ends_with(“y”), .fns = ~0.425*.x, .names = “km_per_liter_{.col}”)) |
contains() | Contains a literal string | summarise(mpg, across(contains(“y”), .fns = mean, .names = “mean_{.col}”)) |
matches() | Matches a regular expression | rename_with(mpg, .cols = matches(“y$”), .fn = toupper) |
where() | Selects variables if function returns TRUE | select(mpg, where(is.numeric)) |
There are also helper symbols that can be used (an in conjunction with the helper verbs above) to make selections. For example, if you wanted to keep all columns except for those containing logical
vectors, you could use select(data = .x, !where(is.logical))
. These symbols are outlined in the table below. For further reference, see this help page.
Symbol | Explanation | Example (mpg dataframe) |
---|---|---|
: | for selecting a range of consecutive columns | model:year |
! | for taking the complement of a set of variables | !where(is.numeric) |
& | for selecting the intersection of two sets of variables | where(is.numeric) & contains(“y”) |
| | for selecting the union of two sets of variables | where(is.numeric) | starts(“m”) |
c() | for combining selections | !c(Make, hwy) |
8.5.2 Examples dplyr::across()
Perform unit conversions:
# convert the cty and hwy variables in the mpg data frame to km/l
mutate(mpg, across(ends_with("y"), # select cty and hwy
.fns = ~0.425*.x, # unit conversion m/gal to km/l
.names = "km_per_liter_{.col}")) %>% # how to name new columns
# select first 2 cols and those containing strings indicated
select(1:2 | contains("year") | contains("km")) %>%
slice_sample(n=5)
## # A tibble: 5 × 5
## manufacturer model year km_per_liter_cty km_per_liter_hwy
## <chr> <chr> <int> <dbl> <dbl>
## 1 toyota camry 1999 8.92 12.3
## 2 ford mustang 2008 6.8 10.2
## 3 audi a4 quattro 1999 7.22 10.6
## 4 chevrolet malibu 1999 8.07 11.5
## 5 audi a4 1999 7.65 12.3
Summarizing the data range for only the numeric vectors:
# show the ranges of all numeric vectors in the mpg data frame
mpg %>%
summarise(across(where(is.numeric), .fns = range))
## # A tibble: 2 × 5
## displ year cyl cty hwy
## <dbl> <int> <int> <int> <int>
## 1 1.6 1999 4 9 12
## 2 7 2008 8 35 44