r4ds/numbers.Rmd

503 lines
18 KiB
Plaintext
Raw Normal View History

2022-03-23 22:52:38 +08:00
# Numeric vectors {#numbers}
2022-03-17 22:46:35 +08:00
```{r, results = "asis", echo = FALSE}
status("drafting")
```
## Introduction
In this chapter, you'll learn useful tools for working with numeric vectors.
2022-03-24 21:53:11 +08:00
Also includes a handful of functions are often used with numeric vectors, but also work with many other types.Prerequisites
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
In this chapter, we'll mostly use functions from base R, so they're immediately available without loading any packages.
But we'll use them in the context of functions like `mutate()` and `filter()`, so we still need the tidyverse.
Like in the last chapter, we'll use a mix of real examples from nycflights13 and toy examples made directly with `c()` and `tribble()`.
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
```{r setup, message = FALSE}
2022-03-17 22:46:35 +08:00
library(tidyverse)
library(nycflights13)
```
### Counts
2022-03-23 22:52:38 +08:00
A very important type of number is a count --- and it's surprising how much data science you can do with just counts and a little basic arithmetic.
There are two ways to compute a count in dplyr.
The easiest way is to use `count()`.
This is great for quick exploration and checks during analysis:
2022-03-17 22:46:35 +08:00
2022-03-18 03:15:24 +08:00
```{r}
2022-03-23 22:52:38 +08:00
flights |> count(dest)
2022-03-18 03:15:24 +08:00
```
2022-03-23 22:52:38 +08:00
(Despite the advice in Chapter \@ref(code-style), I usually put `count()` on a single line because I'm usually using it at the console for a quick check that my calculation is working as expected.)
Alternatively, you can also count "by hand" by using `n()` with `group_by()` and `summarise()`.
This has a couple of advantages: you can combine it with other summary functions and it's easier to control
```{r}
flights |>
group_by(dest) |>
summarise(n = n())
```
`n()` is a special a summary function because it doesn't take any arguments and instead reads information from the current group.
This means you can't use it outside of dplyr verbs:
```{r, error = TRUE}
n()
```
There are a couple of related counts that you might find useful:
- `n_distinct(x)` counts the number of distinct (unique) values of one or more variables:
2022-03-17 22:46:35 +08:00
```{r}
# Which destinations have the most carriers?
2022-03-23 22:52:38 +08:00
flights |>
2022-03-17 22:46:35 +08:00
group_by(dest) |>
summarise(carriers = n_distinct(carrier)) |>
arrange(desc(carriers))
```
2022-03-23 22:52:38 +08:00
- A weighted count is just a sum.
For example you could "count" the number of miles each plane flew:
2022-03-17 22:46:35 +08:00
```{r}
2022-03-23 22:52:38 +08:00
flights |>
group_by(tailnum) |>
summarise(miles = sum(distance))
2022-03-17 22:46:35 +08:00
```
2022-03-23 22:52:38 +08:00
This comes up enough that `count()` has a `wt` argument that does this for you:
2022-03-17 22:46:35 +08:00
```{r}
2022-03-23 22:52:38 +08:00
flights |> count(tailnum, wt = distance)
2022-03-17 22:46:35 +08:00
```
2022-03-23 22:52:38 +08:00
- `sum()` and `is.na()` is also a powerful combination, allowing you to count the number of missing values:
2022-03-17 22:46:35 +08:00
```{r}
2022-03-23 22:52:38 +08:00
flights |>
group_by(dest) |>
summarise(n_cancelled = sum(is.na(dep_time)))
2022-03-17 22:46:35 +08:00
```
2022-03-23 22:52:38 +08:00
### Exercises
2022-03-24 21:53:11 +08:00
1. How can you use `count()` to count the number rows with a missing value for a given variable?
2022-03-29 21:26:18 +08:00
2. Expand the following calls to `count()` to use the core verbs of dplyr:
1. `flights |> count(dest, sort = TRUE)`
2. `flights |> count(tailnum, wt = distance)`
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
## Numeric transformations
2022-03-17 22:46:35 +08:00
There are many functions for creating new variables that you can use with `mutate()`.
The key property is that the function must be vectorised: it must take a vector of values as input, return a vector with the same number of values as output.
2022-03-24 21:53:11 +08:00
There's no way to list every possible function that you might use, but this section will give a selection of frequently useful functions.
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
R also provides all the trigonometry functions that you might expect.
I'm not going to discuss them here since it's rare that you need them for data science, but you can sleep soundly at night knowing that they're available if you need them.
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
### Arithmetic and recycling rules
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
We introduced the basics of arithmetic (`+`, `-`, `*`, `/`, `^`) in Chapter \@ref(workflow-basics) and have used them a bunch since.
They don't need a huge amount of explanation, because they mostly do what you expect.
But we need to to briefly talk about the **recycling rules** which determine what happens when you do arithmetic with different numbers of operations on the left and right hand sides.
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
This is important for operations like `air_time / 60` because there are 336,776 numbers on the left hand side, and 1 number on the right hand side.
R handles this by repeating, or **recycling**, the short vector, i.e:
2022-03-23 22:52:38 +08:00
```{r}
x <- c(1, 2, 10, 20)
x / 5
2022-03-24 21:53:11 +08:00
# is shorthand for
2022-03-23 22:52:38 +08:00
x / c(5, 5, 5, 5)
```
2022-03-24 21:53:11 +08:00
Generally, there's only one want to recycle vectors of length 1, but R supports a rather more general rule where it will recycle any shorter length vector:
2022-03-23 22:52:38 +08:00
```{r}
x * c(1, 2)
x * c(1, 2, 3)
```
2022-03-24 21:53:11 +08:00
In most cases (but not all), you'll get a warning if the longer vector is not a integer multiple of the shower.
2022-03-23 22:52:38 +08:00
2022-03-24 21:53:11 +08:00
This can lead to a surprising result if you accidentally use `==` instead of `%in%` and the data frame has an unfortunate number of rows.
For example, take this code which attempts to find all flights in January and February:
2022-03-23 22:52:38 +08:00
```{r}
flights |>
filter(month == c(1, 2))
```
2022-03-24 21:53:11 +08:00
The code runs without error, but it doesn't return what you want.
Because of the recycling rules it returns January flights that are in odd numbered rows and February flights that are in even numbered rows.
2022-03-23 22:52:38 +08:00
2022-03-24 21:53:11 +08:00
To protect you from this silent failure, most tidyverse functions use a stricter set of rules that only recycles single values.
Unfortunately that doesn't help here, or many other cases, because the computation is performed by the base R function `==`, not `filter()`.
2022-03-23 22:52:38 +08:00
### Minimum and maximum
2022-03-24 21:53:11 +08:00
The arithmetic functions work with pairs of variables.
Two closely related functions are `pmin()` and `pmax()`, which when given two or more variables will return the smallest or largest value in each row:
```{r}
df <- tribble(
~x, ~y,
1, 3,
5, 2,
7, NA,
)
df |>
mutate(
min = pmin(x, y),
max = pmax(x, y)
)
```
Note that are different to the summary functions `min()` and `max()` which take multiple observations and return a single value.
We'll come back to those in Section \@ref(min-max-summary).
2022-03-23 22:52:38 +08:00
### Modular arithmetic
2022-03-24 21:53:11 +08:00
Modular arithmetic is the technical name for the type of maths you did before you learned about real numbers, i.e. when you did division that yield a whole number and a remainder.
In R, these are provided by `%/%` which does integer division, and `%%` which computes the remainder:
2022-03-23 22:52:38 +08:00
```{r}
1:10 %/% 3
1:10 %% 3
```
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
Modular arithmetic is handy for the flights dataset, because we can use it to unpack the `sched_dep_time` variable into and `hour` and `minute`:
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
```{r}
2022-03-24 21:53:11 +08:00
flights |>
mutate(
hour = sched_dep_time %/% 100,
minute = sched_dep_time %% 100,
.keep = "used"
)
2022-03-23 22:52:38 +08:00
```
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
And we can use that with the `mean(is.na(x))` trick from Section \@ref(logical-summaries) to see how the proportion of delayed flights varies over the course of the day:
2022-03-17 22:46:35 +08:00
```{r}
flights |>
group_by(hour = sched_dep_time %/% 100) |>
summarise(prop_cancelled = mean(is.na(dep_time)), n = n()) |>
filter(hour > 1) |>
ggplot(aes(hour, prop_cancelled)) +
2022-03-24 21:53:11 +08:00
geom_line(colour = "grey50") +
geom_point(aes(size = n))
2022-03-17 22:46:35 +08:00
```
2022-03-23 22:52:38 +08:00
### Logarithms and exponents
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
Logarithms are an incredibly useful transformation for dealing with data that ranges across multiple orders of magnitude.
They also convert multiplicative relationships to additive.
R provides three `log()` (natural log, base e), `log2()` (base 2), and `log10()` (base 10).
You can also supply the `base` argument to `log` if you need a different base.
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
I recommend using `log2()` or `log10()`.
`log2()` is easy to interpret because difference of 1 on the log scale corresponds to doubling on the original scale and a difference of -1 corresponds to halving; whereas `log10()` is easy to back-transform because (e.g) 3 is 10\^3 = 1000.
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
The inverse of `log()` is `exp()`; to compute the inverse of `log2()` or `log10()` you'll need to use `^`.
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
### Rounding
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
Workhorse is `round(x, n)`.
This rounds to the nearest `10^-n`.
This definition is cool because it implies `round(x, -3)` will round to the nearest thousand:
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
```{r}
round(123.456, 2) # two digits
round(123.456, 1) # one digit
round(123.456, 0) # round to integer
round(123.456, -1) # round to nearest 10
```
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
There's one weirdness with `round()` that seems surprising:
```{r}
round(c(1.5, 2.5))
```
`round()` uses what's known as "round half to even" or Banker's rounding.
If a number is half way between two integers, then will rounded to the even integer.
It's important because it keeps the rounding unbiased because half the 0.5s are rounded up, and half are rounded down.
In other situations, you might want to use `ceiling()` to round up or `floor()` to down, but note that they don't have a digits argument.
Instead, you can scale down, round, and then scale back up:
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
```{r}
2022-03-24 21:53:11 +08:00
x <- 123.456
# Round down to nearest two digits
floor(x / 0.01) * 0.01
# Round up to nearest two digits
ceiling(x / 0.01) * 0.01
2022-03-23 22:52:38 +08:00
```
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
You can use the same technique if you want to round to a multiple of some other number:
```{r}
# Round to nearest multiple of 4
round(x / 4) * 4
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
# Round to nearest 0.25
round(x / 0.25) * 0.25
```
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
### Cumulative and rolling aggregates
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
R provides functions for running sums, products, mins and maxes: `cumsum()`, `cumprod()`, `cummin()`, `cummax()`; and dplyr provides `cummean()` for cumulative means.
2022-03-17 22:46:35 +08:00
```{r}
x <- 1:10
cumsum(x)
cummean(x)
```
2022-03-24 21:53:11 +08:00
If you need more complex rolling or sliding aggregates, try the [slider](https://davisvaughan.github.io/slider/) package by Davis Vaughan.
The example below illustrates some of its features.
```{r}
library(slider)
# Same as a cumulative sum
slide_vec(x, sum, .before = Inf)
# Sum the current element and the one before it
slide_vec(x, sum, .before = 1)
# Sum the current element and the two before and after it
slide_vec(x, sum, .before = 2, .after = 2)
# Only compute if the window is complete
slide_vec(x, sum, .before = 2, .after = 2, .complete = TRUE)
```
### Exercises
1. Explain what each argument does in each line in the final example of the modular arithmetic example.
2022-03-23 22:52:38 +08:00
## General transformations
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
These are often used with numbers, but can be applied to most other column types.
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
### Ranks
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
dplyr provides a number of ranking functions, but you should start with `dplyr::min_rank()`.
It does the most usual way of dealing with ties (e.g. 1st, 2nd, 2nd, 4th).
2022-03-23 22:52:38 +08:00
The default gives smallest values the small ranks; use `desc(x)` to give the largest values the smallest ranks.
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
```{r}
y <- c(1, 2, 2, NA, 3, 4)
min_rank(y)
min_rank(desc(y))
```
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
If `min_rank()` doesn't do what you need, look at the variants `dplyr::row_number()`, `dplyr::dense_rank()`, `dplyr::percent_rank()`, `dplyr::cume_dist()`, `dplyr::ntile()`, as well as base R's `rank()`.
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
`row_number()` can also be used without a variable within `mutate()`.
When combined with `%%` and `%/%` this can be a useful tool for dividing data into similarly sized groups:
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
```{r}
flights |>
mutate(
row = row_number(),
group_3 = row %/% (n() / 3),
group_3 = row %% 3,
.keep = "none"
)
```
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
### Offset
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
`dplyr::lead()` and `dplyr::lag()` allow you to refer to leading or lagging values.
They return a vector of the same length but padded with NAs at the start or end
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
```{r}
2022-03-24 21:53:11 +08:00
x <- c(2, 5, 11, 19, 35)
2022-03-23 22:52:38 +08:00
lag(x)
2022-03-24 21:53:11 +08:00
lag(x, 2)
2022-03-23 22:52:38 +08:00
lead(x)
```
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
- `x - lag(x)` gives you the difference between the current and previous value.
- `x == lag(x)` tells you when the current value changes. See Section XXX for use with cumulative tricks.
If the rows are not already ordered, you can provide the `order_by` argument.
2022-03-23 22:52:38 +08:00
### Positions
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
If your rows have a meaningful order, you can use base R's `[`, or dplyr's `first(x)`, `nth(x, 2)`, or `last(x)` to extract values at a certain position.
2022-03-23 22:52:38 +08:00
For example, we can find the first and last departure for each day:
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
```{r}
flights |>
group_by(year, month, day) |>
summarise(
first_dep = first(dep_time),
last_dep = last(dep_time)
)
```
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
The chief advantage of `first()` and `nth()` over `[` is that you can set a default value if that position does not exist (i.e. you're trying to get the 3rd element from a group that only has two elements).
The chief advantage of `last()` over `[`, is writing `last(x)` rather than `x[length(x)]`.
2022-03-17 22:46:35 +08:00
2022-03-29 21:26:18 +08:00
Additionally, if the rows aren't ordered, but there's a variable that defines the order, you can use `order_by` argument.
2022-03-24 21:53:11 +08:00
You can do this with `[` + `order_by()` but it requires a little thought.
2022-03-17 22:46:35 +08:00
2022-03-24 21:53:11 +08:00
Computing positions is complementary to filtering on ranks.
2022-03-23 22:52:38 +08:00
Filtering gives you all variables, with each observation in a separate row:
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
```{r}
flights |>
group_by(year, month, day) |>
mutate(r = min_rank(desc(sched_dep_time))) |>
2022-03-24 21:53:11 +08:00
filter(r %in% c(1, max(r)))
2022-03-23 22:52:38 +08:00
```
2022-03-17 22:46:35 +08:00
### Exercises
1. Find the 10 most delayed flights using a ranking function.
How do you want to handle ties?
Carefully read the documentation for `min_rank()`.
2. Which plane (`tailnum`) has the worst on-time record?
3. What time of day should you fly if you want to avoid delays as much as possible?
4. For each destination, compute the total minutes of delay.
For each flight, compute the proportion of the total delay for its destination.
5. Delays are typically temporally correlated: even once the problem that caused the initial delay has been resolved, later flights are delayed to allow earlier flights to leave.
Using `lag()`, explore how the delay of a flight is related to the delay of the immediately preceding flight.
6. Look at each destination.
Can you find flights that are suspiciously fast?
(i.e. flights that represent a potential data entry error).
Compute the air time of a flight relative to the shortest flight to that destination.
Which flights were most delayed in the air?
7. Find all destinations that are flown by at least two carriers.
Use that information to rank the carriers.
2022-03-23 22:52:38 +08:00
## Summaries
Just using means, counts, and sum can get you a long way, but R provides many other useful summary functions.
### Center
We've used `mean(x)`, but `median(x)` is also useful.
The mean is the sum divided by the length; the median is a value where 50% of `x` is above it, and 50% is below it.
```{r}
flights |>
group_by(month) |>
summarise(
med_arr_delay = median(arr_delay, na.rm = TRUE),
med_dep_delay = median(dep_delay, na.rm = TRUE)
)
```
Don't forget what you learned in Section \@ref(sample-size): whenever creating numerical summaries, it's a good idea to include the number of observations in each group.
2022-03-24 21:53:11 +08:00
### Minimum, maximum, and quantiles {#min-max-summary}
2022-03-23 22:52:38 +08:00
Quantiles are a generalization of the median.
For example, `quantile(x, 0.25)` will find a value of `x` that is greater than 25% of the values, and less than the remaining 75%.
`min()` and `max()` are like the 0% and 100% quantiles: they're the smallest and biggest numbers.
```{r}
# When do the first and last flights leave each day?
flights |>
group_by(year, month, day) |>
summarise(
first = min(dep_time, na.rm = TRUE),
last = max(dep_time, na.rm = TRUE)
)
```
2022-03-24 21:53:11 +08:00
Using the median and 95% quantile is coming in performance monitoring.
`median()` shows you what the (bare) majority of people experience, and 95% shows you the worst case, excluding 5% of outliers.
2022-03-23 22:52:38 +08:00
### Spread
The root mean squared deviation, or standard deviation `sd(x)`, is the standard measure of spread.
```{r}
# Why is distance to some destinations more variable than to others?
flights |>
group_by(origin, dest) |>
summarise(distance_sd = sd(distance), n = n()) |>
filter(distance_sd > 0)
2022-03-17 22:46:35 +08:00
2022-03-23 22:52:38 +08:00
# Did it move?
flights |>
filter(dest == "EGE") |>
select(time_hour, dest, distance, origin) |>
ggplot(aes(time_hour, distance, colour = origin)) +
geom_point()
```
<https://en.wikipedia.org/wiki/Eagle_County_Regional_Airport> --- seasonal airport.
Nothing in wikipedia suggests a move in 2013.
The interquartile range `IQR(x)` and median absolute deviation `mad(x)` are robust equivalents that may be more useful if you have outliers.
IQR is `quantile(x, 0.75) - quantile(x, 0.25)`.
`mad()` is derivied similarly to `sd()`, but inside being the average of the squared distances from the mean, it's the median of the absolute differences from the median.
### With `mutate()`
2022-03-24 21:53:11 +08:00
As the names suggest, the summary functions are typically paired with `summarise()`, but they can also be usefully paired with `mutate()`, particularly when you want do some sort of group standardization.
2022-03-23 22:52:38 +08:00
2022-03-24 21:53:11 +08:00
- `x / sum(x)` calculates the proportion of a total.
- `(x - mean(x)) / sd(x)` computes a Z-score (standardised to mean 0 and sd 1).
- `x / x[1]` computes an index based on the first observation.
2022-03-23 22:52:38 +08:00
### Exercises
1. Currently `dep_time` and `sched_dep_time` are convenient to look at, but hard to compute with because they're not really continuous numbers.
Convert them to a more convenient representation of number of minutes since midnight.
2. What trigonometric functions does R provide?
3. Brainstorm at least 5 different ways to assess the typical delay characteristics of a group of flights.
Consider the following scenarios:
- A flight is 15 minutes early 50% of the time, and 15 minutes late 50% of the time.
- A flight is always 10 minutes late.
- A flight is 30 minutes early 50% of the time, and 30 minutes late 50% of the time.
- 99% of the time a flight is on time.
1% of the time it's 2 hours late.
Which is more important: arrival delay or departure delay?
## Variants
We've seen a few variants of different functions
| Summary | Cumulative | Paired |
|---------|------------|--------|
| `sum` | `cumsum` | `+` |
| `prod` | `cumprod` | `*` |
| `all` | `cumall` | `&` |
2022-03-29 21:26:18 +08:00
| `any` | `cumany` | `|` |
2022-03-23 22:52:38 +08:00
| `min` | `cummin` | `pmin` |
| `max` | `cummax` | `pmax` |
- Summary functions take a vector and always return a length 1 vector. Typically used with `summarise()`
- Cumulative functions take a vector and return the same length. Used with `mutate()`.
- Paired functions take a pair of functions and return a vector the same length (using the recycling rules if the vectors aren't the same length). Used with `mutate()`
```{r}
x <- c(1, 2, 3, 5)
sum(x)
cumsum(x)
x + 10
```