LoslegenKostenlos loslegen

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

Kurs anzeigen

Anleitung zur Übung

  • Connect the inventory_parts and parts 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 %>%
  ___
Code bearbeiten und ausführen