r4ds/functions.Rmd

613 lines
24 KiB
Plaintext
Raw Normal View History

---
knit: bookdown::preview_chapter
---
2016-03-01 22:29:58 +08:00
# Functions
2015-10-21 21:04:37 +08:00
2016-03-03 22:25:43 +08:00
One of the best ways to improve your reach as a data scientist is to write functions. Functions allow you to automate common tasks. Writing a function has three big advantages over using copy-and-paste:
2016-03-05 05:52:00 +08:00
1. You drastically reduce the chances of making incidental mistakes when
2016-03-03 22:25:43 +08:00
you copy and paste.
1. As requirements change, you only need to update code in one place, instead
of many.
1. You can give a function an evocative name that makes your code easier to
understand.
Writing good functions is a lifetime journey. Even after using R for many years we still learn new techniques and better ways of approaching old problems. The goal of this chapter is not to master every esoteric detail of functions but to get you started with some pragmatic advice that you can start using right away.
2016-03-03 22:25:43 +08:00
As well as practical advice for writing functions, this chapter also gives you some suggestions for how to style your code. Good coding style is like using correct punctuation. You can manage without it, but it sure makes things easier to read. As with styles of punctuation, there are many possible variations. Here we present the style we use in our code, but the most important thing is to be consistent.
2016-02-11 21:58:53 +08:00
2016-03-01 22:29:58 +08:00
## When should you write a function?
2016-03-05 05:52:00 +08:00
You should consider writing a function whenever you've copied and pasted a block of code more than twice (i.e. you now have three copies of the same code). For example, take a look at this code. What does it do?
2015-10-21 21:04:37 +08:00
```{r}
df <- data.frame(
a = rnorm(10),
b = rnorm(10),
c = rnorm(10),
d = rnorm(10)
)
df$a <- (df$a - min(df$a, na.rm = TRUE)) /
(max(df$a, na.rm = TRUE) - min(df$a, na.rm = TRUE))
df$b <- (df$b - min(df$b, na.rm = TRUE)) /
(max(df$a, na.rm = TRUE) - min(df$b, na.rm = TRUE))
df$c <- (df$c - min(df$c, na.rm = TRUE)) /
(max(df$c, na.rm = TRUE) - min(df$c, na.rm = TRUE))
df$d <- (df$d - min(df$d, na.rm = TRUE)) /
(max(df$d, na.rm = TRUE) - min(df$d, na.rm = TRUE))
2015-10-19 21:41:33 +08:00
```
You might be able to puzzle out that this rescales each column to have a range from 0 to 1. But did you spot the mistake? I made an error when copying-and-pasting the code for `df$b`: I forgot to change an `a` to a `b`. Extracting repeated code out into a function is a good idea because it prevents you from making this type of mistake.
2015-10-19 21:41:33 +08:00
2016-03-03 22:25:43 +08:00
To write a function you need to first analyse the code. How many inputs does it have?
2015-10-21 21:04:37 +08:00
```{r, eval = FALSE}
(df$a - min(df$a, na.rm = TRUE)) /
(max(df$a, na.rm = TRUE) - min(df$a, na.rm = TRUE))
2015-10-19 21:41:33 +08:00
```
2016-03-05 05:52:00 +08:00
This code only has one input: `df$a`. (You might wonder if that `TRUE` is also an input: you can explore why it's not in the exercise below). To make the single input more clear, it's a good idea to rewrite the code using temporary variables with a general name. Here this function only takes one vector of input, so I'll call it `x`:
2015-10-21 21:04:37 +08:00
```{r}
x <- 1:10
(x - min(x, na.rm = TRUE)) / (max(x, na.rm = TRUE) - min(x, na.rm = TRUE))
```
2016-03-03 22:25:43 +08:00
There is some duplication in this code. We're computing the range of the data three times, but it makes sense to do it in one step:
2015-10-21 21:04:37 +08:00
```{r}
rng <- range(x, na.rm = TRUE)
(x - rng[1]) / (rng[2] - rng[1])
```
2016-03-05 05:52:00 +08:00
Pulling out intermediate calculations into named variables is a good practice because it makes it more clear what the code is doing. Now that I've simplified the code, and checked that it still works, I can turn it into a function:
2015-10-21 21:04:37 +08:00
```{r}
rescale01 <- function(x) {
rng <- range(x, na.rm = TRUE)
(x - rng[1]) / (rng[2] - rng[1])
}
rescale01(c(0, 5, 10))
2015-10-21 21:04:37 +08:00
```
2016-03-04 23:30:16 +08:00
There are three key steps to creating a new function:
2016-03-03 22:25:43 +08:00
1. You need to pick a __name__ for the function. Here I've used `rescale01`
because this function rescales a vector to lie between 0 and 1.
2016-03-03 22:25:43 +08:00
1. You list the inputs, or __arguments__, to the function inside `function`.
2016-03-04 23:30:16 +08:00
Here we have just one argument. If we had more the call would look like
`function(x, y, z)`.
2016-03-03 22:25:43 +08:00
1. You place the __body__ of the function inside a `{` block immediately
following `function`.
2015-10-21 21:04:37 +08:00
2016-03-05 05:52:00 +08:00
Note the overall process: I only made the function after I'd figured out how to make it work with a simple input. It's easier to start with working code and turn it into a function; it's harder to create a function and then try to make it work.
2016-03-07 22:32:47 +08:00
At this point it's a good idea to check your function with a few different inputs:
```{r}
rescale01(c(-10, 0, 10))
rescale01(c(1, 2, 3, NA, 5))
```
As you write more and more functions you'll eventually want to convert these informal, interactive tests into formal, automated tests. That process is called unit testing. Unfortunately, it's beyond the scope of this book, but you can learn about it in <http://r-pkgs.had.co.nz/tests.html>.
2016-03-04 23:30:16 +08:00
Now that we have `rescale01()` we can use that to simplify the original example:
2015-10-21 21:04:37 +08:00
```{r}
df$a <- rescale01(df$a)
df$b <- rescale01(df$b)
df$c <- rescale01(df$c)
df$d <- rescale01(df$d)
```
2016-03-05 05:52:00 +08:00
Compared to the original, this code is easier to understand. We've also eliminated one class of copy-and-paste errors. There is, however, still quite a bit of duplication since we're doing the same thing to multiple columns. You'll learn how to eliminate that duplication in the next chapter.
2016-01-25 22:59:36 +08:00
### Practice
1. Why is `TRUE` not a parameter to `rescale01()`? What would happen if
2016-03-03 22:25:43 +08:00
`x` contained a missing value, and `na.rm` was `FALSE`?
2016-02-13 06:05:25 +08:00
1. Practice turning the following code snippets into functions. Think about
what each function does. What would you call it? How many arguments does it
need? Can you rewrite it to be more expressive or less duplicative?
```{r, eval = FALSE}
mean(is.na(x))
x / sum(x, na.rm = TRUE)
sd(x, na.rm = TRUE) / mean(x, na.rm = TRUE)
```
1. Follow <http://nicercode.github.io/intro/writing-functions.html> to
write your own functions to compute the variance and skew of a vector.
1. Implement a `fizzbuzz` function. It take a single number as input. If
the number is divisible by three, return "fizz". If it's divisible by
five return "buzz". If it's divisible by three and five, return "fizzbuzz".
2016-03-03 22:25:43 +08:00
Otherwise, return the number. Make sure you first write working code,
before you create the function.
1. Write `both_na()`, a function that takes two vectors of the same length
and returns the number of positions that have an `NA` in both vectors.
1. What do the following functions do? Why are they useful even though they
are so short?
2016-02-13 06:05:25 +08:00
```{r}
is_directory <- function(x) file.info(x)$isdir
is_readable <- function(x) file.access(x, 4) == 0
2016-02-13 06:05:25 +08:00
```
1. Read the [complete lyrics](https://en.wikipedia.org/wiki/Little_Bunny_Foo_Foo)
to "Little Bunny Foo". There's a lot of duplication in this song.
2016-03-03 22:25:43 +08:00
Extend the initial piping example to recreate the complete song, and use
functions to reduce the duplication.
2016-01-25 22:59:36 +08:00
2016-03-03 22:25:43 +08:00
## Functions are for humans and computers
2016-01-25 22:59:36 +08:00
2016-03-03 22:25:43 +08:00
It's important to remember that functions are not just for the computer, but are also for humans. R doesn't care what your function is called, or what comments it contains, but these are important for human readers. This section discusses some things that you should bear in mind when writing functions that humans can understand.
2016-03-04 23:30:16 +08:00
The name of a function is important. Ideally the name of your function will be short, but clearly evoke what the function does. However, it's hard to come up with concise names, and autocomplete makes it easy to type long names, so it's better to err on the side of clear descriptions, rather than short names. There are a few exceptions to this rule: the handful of very common, very short names. It's worth memorising these:
* `x`, `y`, `z`: vectors.
* `df`: a data frame.
* `i`, `j`: numeric indices (typically rows and columns).
* `n`: length, or number of rows.
* `p`: number of columns.
2016-03-03 22:25:43 +08:00
Generally, function names should be verbs, and arguments should be nouns. There are some exceptions: nouns are ok if the function computes a very well known noun (i.e. `mean()` is better than `compute_mean()`), or accessing some property of an object (i.e. `coef()` is better than `get_coefficients()`). A good sign that a noun might be a better choice is if you're using a very broad verb like get, or compute, or calculate, or determine. Use your best judgement and don't be afraid to rename a function if you later figure out a better name.
2016-03-05 05:52:00 +08:00
If your function name is composed of multiple words, I recommend using "snake\_case", where each word is lower case and separated by an underscore. camelCase is a popular alternative alternative, but be consistent: pick one or the other and stick with it. R itself is not very consistent, but there's nothing you can do about that. Make sure you don't fall into the same trap by making your code as consistent as possible.
2016-03-03 22:25:43 +08:00
If you have a family of functions that do similar things, make sure they have consistent names and arguments. Use a common prefix to indicate that they are connected. That's better than a common suffix because autocomplete allows you to type the prefix and see all the members of the family.
2016-01-25 22:59:36 +08:00
2016-03-03 22:25:43 +08:00
```{r, eval = FALSE}
# Good
input_select
input_checkbox
input_text
# Not so good
select_input
checkbox_input
text_input
```
Where possible, avoid using names of common existing functions and variables. It's impossible to do in general because so many good names are already taken by other packages, but avoiding the most common names from base R will avoid confusion:
```{r, eval = FALSE}
# Don't do this!
T <- FALSE
c <- 10
mean <- function(x) sum(x)
```
2016-03-04 23:30:16 +08:00
Use comments, lines starting with `#`, to explain the "why" of your code. You generally should avoid comments that explain the "what" or the "how". If you can't understand what the code does from reading it, you should think about how to rewrite it to be more clear. Do you need to add some intermediate variables with useful names? Do you need to break out a subcomponent of a large function so you can name it? However, your code can never capture the reasoning behind your decisions: why did you choose this approach instead of an alternative? What else did you try that didn't work? It's a great idea to capture that sort of thinking in a comment.
2016-03-04 23:30:16 +08:00
Another important use of comments is to break up your file into easily readable chunks. Use long lines of `-` and `=` to make it easy to spot the breaks. RStudio even provides a keyboard shortcut for this: Cmd/Ctrl + Shift + R.
```{r, eval = FALSE}
2016-03-04 23:30:16 +08:00
# Load data --------------------------------------
2016-03-04 23:30:16 +08:00
# Plot data --------------------------------------
```
### Exercises
1. Read the source code for each of the following three functions, puzzle out
what they do, and then brainstorm good names.
```{r}
f1 <- function(string, prefix) {
substr(string, 1, nchar(prefix)) == prefix
}
f2 <- function(x) {
2016-03-04 23:30:16 +08:00
if (length(x) <= 1) return(NULL)
x[-length(x)]
}
f3 <- function(x, y) {
rep(y, length.out = length(x))
}
```
1. Take a function that you've written recently and spend 5 minutes
brainstorming a better name for it and its arguments.
2016-03-05 05:52:00 +08:00
1. Compare and contrast `rnorm()` and `MASS::mvrnorm()`. How could you make
2016-03-04 23:30:16 +08:00
them more consistent?
1. Make a case for why `normr()`, `normd()` etc would be better than
2016-03-05 05:52:00 +08:00
`rnorm()`, `dnorm()`. Make a case for the opposite.
2016-03-04 23:30:16 +08:00
## Conditional execution
2016-03-03 22:25:43 +08:00
An `if` statement allows you to conditionally execute code. It looks like this:
```{r, eval = FALSE}
if (condition) {
# code executed when condition is TRUE
} else {
# code executed when condition is FALSE
2016-01-25 22:59:36 +08:00
}
```
2016-03-05 05:52:00 +08:00
To get help on `if` you need to surround it in backticks: `` ?`if` ``.
2016-02-13 06:05:25 +08:00
Here's a simple function that uses an if statement. The goal of this function is to return a logical vector describing whether or not each element of a vector is named.
2016-01-25 22:59:36 +08:00
```{r}
has_name <- function(x) {
nms <- names(x)
if (is.null(nms)) {
rep(FALSE, length(x))
} else {
!is.na(nms) & nms != ""
}
2016-01-25 22:59:36 +08:00
}
```
2016-03-04 23:30:16 +08:00
This takes advantage of the standard rules of function return values: a function returns the last value that was computed. Here it will be one of the two if branches.
### Conditions
The `condition` should be either a single `TRUE` or a single `FALSE`. If it's a vector you'll get a warning message, if it's an `NA`, you'll get an error. Watch out for these messages in your own code:
```{r, error = TRUE}
if (c(TRUE, FALSE)) {
}
if (NA) {
}
```
2016-03-05 05:52:00 +08:00
You can use `||` (or) and `&&` (and) to combine multiple logical expressions. These operators are "short-circuiting": as soon as `||` sees the first `TRUE` it returns `TRUE` without computing anything else. As soon as `&&` sees the first `FALSE` it returns `FALSE`.
2016-03-04 23:30:16 +08:00
You should never use `|` or `&` in an `if` statement: these are vectorised operations that apply to multiple values. If you do have a logical vector, you can use `any()` or `all()` to collapse it to a single value.
### If styles
Squiggly brackets are always optional (for both `if` and `function`), but I recommend using them because it makes it easier to see the hierarchy in your code. An opening curly brace should never go on its own line and should always be followed by a new line. A closing curly brace should always go on its own line, unless it's followed by `else`. Always indent the code inside curly braces.
```{r, eval = FALSE}
# Good
if (y < 0 && debug) {
message("Y is negative")
}
if (y == 0) {
log(x)
} else {
y ^ x
}
# Bad
if (y < 0 && debug)
message("Y is negative")
if (y == 0) {
log(x)
}
else {
y ^ x
2016-01-25 22:59:36 +08:00
}
```
2016-03-04 23:30:16 +08:00
It's ok to drop the curly braces if you have a very short `if `statement that can fit on one line:
2016-02-11 21:58:53 +08:00
```{r}
y <- 10
x <- if (y < 20) "Too low" else "Too high"
2016-02-11 21:58:53 +08:00
```
2016-03-04 23:30:16 +08:00
I recommend this only for very brief `if` statements. Otherwise, the full form is easier to read:
2016-02-11 21:58:53 +08:00
```{r}
if (y < 20) {
x <- "Too low"
} else {
x <- "Too high"
}
```
2016-01-25 22:59:36 +08:00
2016-03-04 23:30:16 +08:00
### Multiple conditions
2016-03-04 23:30:16 +08:00
You can chain multiple if statements together:
2016-02-11 21:58:53 +08:00
2016-03-04 23:30:16 +08:00
```{r, eval = FALSE}
if (this) {
# do that
} else if (that) {
# do something else
} else {
#
2016-02-11 21:58:53 +08:00
}
```
2016-03-04 23:30:16 +08:00
If you find that you have a very long series of chained `if` statements, you should consider rewriting. One useful technique is the `switch()` function. It allows you to evaluate selected code based on position or name.
2016-02-11 21:58:53 +08:00
```{r}
function(x, y, op) {
switch(op,
plus = x + y,
minus = x - y,
times = x * y,
divide = x / y,
stop("Unknown op!")
)
}
2016-02-11 21:58:53 +08:00
```
2016-03-04 23:30:16 +08:00
Another useful function that can often eliminate long chains of `if` statements is `cut()`. It's used to discretise continuous variables.
2016-03-05 05:52:00 +08:00
Note that neither `if` nor `switch()` is vectorised: they work with a single value at a time.
2016-03-03 22:25:43 +08:00
### Exercises
2016-03-05 05:52:00 +08:00
1. What's the difference between `if` and `ifelse()`? Carefully read the help
2016-03-03 22:25:43 +08:00
and construct three examples that illustrate the key differences.
2016-03-04 23:30:16 +08:00
1. Write a greeting function that says "good morning", "good afternoon",
2016-03-05 05:52:00 +08:00
or "good evening", depending on the time of day. (Hint: use a time
2016-03-04 23:30:16 +08:00
argument that defaults to `lubridate::now()`. That will make it
easier to test your function.)
1. How could you use `cut()` to simplify this set of nested if-else statements?
```{r, eval = FALSE}
if (temp <= 0) {
"freezing"
} else if (temp <= 10) {
"cold"
} else if (temp <= 20) {
"cool"
} else if (temp <= 30) {
"warm"
} else {
"hot"
}
```
How would you change the call to `cut()` if I'd used `<` instead of `<=`?
2016-03-03 22:25:43 +08:00
1. What happens if you use `switch()` with numeric values?
2016-03-03 00:55:14 +08:00
2016-03-03 22:25:43 +08:00
1. What does this `switch()` call do?
2016-03-03 00:55:14 +08:00
2016-03-03 22:25:43 +08:00
```{r}
switch(x,
a = ,
b = "ab",
c = ,
d = "cd"
)
```
2016-03-03 00:55:14 +08:00
2016-03-03 22:25:43 +08:00
## Function arguments
2016-03-03 00:55:14 +08:00
2016-03-03 22:25:43 +08:00
The arguments to a function typically fall into two broad sets: one set supplies the data to compute on, and the other supplies arguments that controls the details of the computation. For example:
2016-03-03 22:25:43 +08:00
* In `log()`, the data is `x`, and the detail is the `base` of the logarithm.
2016-03-03 22:25:43 +08:00
* In `mean()`, the data is `x`, and the details are the `trim` and how to
handle missing values (`na.rm`).
* In `t.test()`, the data is `x` and `y`, and the details of the test are
`alternative`, `mu`, `paired`, `var.equal`, and `conf.level`.
* In `paste()` you can supply any number of strings to `...`, and the details
2016-03-05 05:52:00 +08:00
of the concatenation are controlled by `sep` and `collapse`.
2016-03-03 22:25:43 +08:00
Generally, data arguments should come first. Detail arguments should go on the end, and usually should have default values. You specify a default value in the same way you call a function with a named argument:
```{r}
2016-03-07 22:32:47 +08:00
# Compute confidence interval around mean using normal approximation
mean_ci <- function(x, conf = 0.95) {
2016-03-03 22:25:43 +08:00
se <- sd(x) / sqrt(length(x))
2016-03-07 22:32:47 +08:00
alpha <- 1 - conf
mean(x) + se * qnorm(c(alpha / 2, 1 - alpha / 2))
}
2016-03-03 22:25:43 +08:00
x <- runif(100)
2016-03-07 22:32:47 +08:00
mean_ci(x)
mean_ci(x, 0.99)
```
2016-03-05 05:52:00 +08:00
The default value should almost always be the most common value. There are a few exceptions to do with safety. For example, it makes sense for `na.rm` to default to `FALSE` because missing values are important. Even though `na.rm = TRUE` is what you usually put in your code, it's a bad idea to silently ignore missing values by default.
2016-03-03 22:25:43 +08:00
When you call a function, typically you can omit the names for the data arguments (because they are used so commonly). If you override the default value of a detail argument, you should use the full name:
2016-03-03 22:25:43 +08:00
```{r, eval = FALSE}
# Good
mean(1:10, na.rm = TRUE)
# Bad
mean(x = 1:10, , FALSE)
mean(, TRUE, x = c(1:10, NA))
```
2016-03-03 22:25:43 +08:00
You can refer to an argument by its unique prefix (e.g. `mean(x, n = TRUE)`), but this is generally best avoided given the possibilities for confusion.
Notice that when you call a function, you should place a space around `=` in function calls, and always put a space after a comma, not before (just like in regular English). Using whitespace makes it easier to skim the function for the important components.
```{r, eval = FALSE}
# Good
average <- mean(feet / 12 + inches, na.rm = TRUE)
2016-03-03 22:25:43 +08:00
# Bad
average<-mean(feet/12+inches,na.rm=TRUE)
```
2016-03-07 22:32:47 +08:00
### Choosing names
### Checking values
As you start to write more complicated functions, it's a good idea to check that the inputs are the type that you expect.
Another place where it's useful to throw errors is when the inputs to the function are the wrong type. It's a good idea to throw an error early.
`stopifnot()`.
### Dot dot dot
2016-03-05 05:52:00 +08:00
There's one special argument you need to know about: `...`, pronounced dot-dot-dot. This captures any other arguments not otherwise matched. It's useful because you can then send those `...` on to another function. This is a useful catch-all if your function primarily wraps another function.
2016-03-03 22:25:43 +08:00
For example, I commonly create these helper functions that wrap around `paste()`:
```{r}
commas <- function(...) paste0(..., collapse = ", ")
2016-03-03 22:25:43 +08:00
commas(letters[1:10])
rule <- function(..., pad = "-") {
title <- paste0(...)
width <- getOption("width") - nchar(title) - 5
cat(title, " ", paste(rep(pad, width, collapse = "")), "\n", sep = "")
}
2016-03-03 22:25:43 +08:00
rule("Important output")
```
2016-03-03 22:25:43 +08:00
Here `...` lets me forward on any arguments that I don't want to deal with to `paste()`. It's a very convenient technique. But it does came at a price: any misspelled arguments will not raise an error. This makes it easy for typos to go unnoticed:
```{r}
x <- c(1, 2)
sum(x, na.mr = TRUE)
```
If you just want to get the values of the `...`, use `list(...)`.
2016-03-04 23:30:16 +08:00
### Lazy evaluation
Arguments in R are lazily evaluated: they're not computed until they're needed. That means if they're never used, they're never called. This is an important property of R as a programming language, but is generally not important for data analysis. You can read more about lazy evaluation at <http://adv-r.had.co.nz/Functions.html#lazy-evaluation>
### Exercises
2016-03-03 22:25:43 +08:00
1. What does `commas(letters, collapse = "-")` do? Why?
2016-03-05 05:52:00 +08:00
1. It'd be nice if you supply multiple characters to the `pad` argument, e.g.
2016-03-03 22:25:43 +08:00
`rule("Title", pad = "-+")`. Why doesn't this currently work? How could you
fix it?
1. What does the `trim` argument to `mean()` do? When might you use it?
1. The default value for the `method` argument to `cor()` is
`c("pearson", "kendall", "spearman")`. What does that mean? What
value is used by default?
2016-03-04 23:30:16 +08:00
## Return values
2016-03-04 23:30:16 +08:00
The value returned by the function is the last statement it evaluates. You can explicitly return early from a function with `return()`. I think it's best to save the use of `return()` to signal that you can return early with a simpler solution. For example, you might write an if statement like this:
2016-02-11 21:58:53 +08:00
```{r, eval = FALSE}
f <- function() {
if (x) {
# Do
# something
# that
# takes
# many
# lines
# to
# express
} else {
# return something short
}
}
```
2016-03-01 22:16:28 +08:00
But if the first block is very long, by the time you get to the else, you've forgotten what's going on. One way to rewrite it is to use an early return for the simple case:
2016-02-11 21:58:53 +08:00
```{r, eval = FALSE}
f <- function() {
if (!x) {
return(something_short)
}
# Do
# something
# that
# takes
# many
# lines
# to
# express
}
```
2016-03-01 22:16:28 +08:00
This tends to make the code easier to understand, because you don't need quite so much context to understand it.
2016-03-07 22:32:47 +08:00
### Writing pipeable functions
2016-03-01 22:16:28 +08:00
2016-03-07 22:32:47 +08:00
There are two key techniques for writing your own functions that work will in pipes.
2016-02-11 21:58:53 +08:00
2016-03-07 22:32:47 +08:00
1. Identify the key object: this should be the first argument of the function
and the value returned by the function. This is generally straightforward.
For example, the key objects for dplyr and tidyr are data frames.
1. If your function is called primarily for its side-effects (i.e. performs
an action like drawing a plot or saving a file), it should "invisibly"
return the first argument. An invisible return is not printed by default,
but you can still save it to a variable or refer to it in a pipeline.
2016-02-11 21:58:53 +08:00
2016-03-07 22:32:47 +08:00
## Errors
2016-01-25 22:59:36 +08:00
2016-02-11 21:58:53 +08:00
```{r}
2016-03-07 22:32:47 +08:00
try_require <- function(package, fun) {
if (requireNamespace(package, quietly = TRUE)) {
library(package, character.only = TRUE)
return(invisible())
}
2016-02-11 21:58:53 +08:00
2016-03-07 22:32:47 +08:00
stop("Package `", package, "` required for `", fun , "`.\n",
"Please install and try again.", call. = FALSE)
}
2016-02-11 21:58:53 +08:00
```
2016-01-25 22:59:36 +08:00
2016-03-07 22:32:47 +08:00
To specially handle errors, use `tryCatch()`. (`try()` is a little simpler but I think it's a bit ugly, and you'll learn an alternative in the lists chapter.)
## Environment
2016-01-25 22:59:36 +08:00
2016-02-11 21:58:53 +08:00
The environment of a function controls how R finds the value associated with a name. For example, take this function:
2016-01-25 22:59:36 +08:00
```{r}
f <- function(x) {
x + y
}
```
2016-02-11 21:58:53 +08:00
In many programming languages, this would be an error, because `y` is not defined inside the function. In R, this is valid code because R uses rules called lexical scoping to determine the value associated with a name. Since `y` is not defined inside the function, R will look where the function was defined:
2016-01-25 22:59:36 +08:00
```{r}
y <- 100
f(10)
y <- 1000
f(10)
```
2016-02-13 06:05:25 +08:00
This behaviour seems like a recipe for bugs, and indeed you should avoid creating functions like this deliberately, but by and large it doesn't cause too many problems (especially if you regularly restart R to get to a clean slate). The advantage of this behaviour is that from a language standpoint it allows R to be very consistent. Every name is looked up using the same set of rules. For `f()` that includes the behaviour of two things that you might not expect: `{` and `+`.
2016-01-25 22:59:36 +08:00
2016-02-13 06:05:25 +08:00
This allows you to do devious things like:
2016-01-25 22:59:36 +08:00
2016-02-13 06:05:25 +08:00
```{r}
`+` <- function(x, y) {
if (runif(1) < 0.1) {
sum(x, y)
} else {
sum(x, y) * 1.1
}
}
table(replicate(1000, 1 + 2))
rm(`+`)
```
This is a common phenomenon in R. R gives you a lot of control. You can do many things that are not possible in other programming languages. You can things that 99% of the time extremely ill-advised (like overriding how addition works!), but this power and flexibility is what makes tools like ggplot2 and dplyr possible. Learning how to make good use of this flexibility is beyond the scope of this book, but you can read about in "Advanced R".