ÎncepețiÎncepe gratuit

Penguin joins

The colonies of different penguins from the penguins dataset can be described by an area code that is unique for each combination of species and island. The area codes are stored in the penguin_data dataset in the ids column. Let's join the two datasets together!

Important columns in penguins:

  • species, containing the species of the penguin;
  • island, containing the island where the penguin was observed.

Important columns in penguin_data:

  • penguin, containing the species of the penguin;
  • location, containing the island where the penguin was observed;
  • ids, containing the identification number of the penguin colony.

The penguins and penguin_data, as well as DataFrames package, have been loaded for you.

Acest exercițiu face parte din cursul

Data Manipulation in Julia

Vezi cursul

Instrucțiuni pentru exercițiu

  • Use left join to join the penguins and penguin_data, using the species and island columns and their respective counterparts.
  • Save the result as penguins_ids.

Exercițiu interactiv practic

Încearcă acest exercițiu completând acest cod de exemplu.

# Use leftjoin on penguins and penguin_data
penguins_ids = ____
Editează și rulează codul