Joining in either direction
An inner_join
works the same way with either table in either position. The table that is specified first is arbitrary, since you will end up with the same information in the resulting table either way.
Let's prove this by joining the same two tables from the last exercise in the opposite order!
Diese Übung ist Teil des Kurses
Joining Data with dplyr
Anleitung zur Übung
- Connect the
inventory_parts
andparts
tables by their part numbers using an inner join.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Combine the parts and inventory_parts tables
inventory_parts %>%
___