Remove another rectangling example

This commit is contained in:
Hadley Wickham 2023-02-07 10:58:33 -06:00
parent c9f68a382f
commit ec6cf93c6f
1 changed files with 0 additions and 11 deletions

View File

@ -469,17 +469,6 @@ titles <- chars |>
titles
```
Now, for example, we could use this table to find all the characters that are captains and see all their titles:
```{r}
captains <- titles |> filter(str_detect(title, "Captain"))
captains
characters |>
select(id, name) |>
inner_join(titles, by = "id", multiple = "all")
```
You could imagine creating a table like this for each of the list-columns, then using joins to combine them with the character data as you need it.
### Deeply nested