CommencerCommencer gratuitement

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!

Cet exercice fait partie du cours

Joining Data with dplyr

Afficher le cours

Instructions

  • Connect the inventory_parts and parts tables by their part numbers using an inner join.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Combine the parts and inventory_parts tables
inventory_parts %>%
  ___
Modifier et exécuter le code