Remove another rectangling example
This commit is contained in:
parent
c9f68a382f
commit
ec6cf93c6f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue