НачатьНачать бесплатно

Penguin characteristics

Can you distinguish between penguin species based only on different measurements? Let's employ grouped summary statistics to see how different the values for the species are!

The penguins dataset and the DataFrames package have been loaded for you.

Это упражнение является частью курса

Data Manipulation in Julia

Посмотреть курс

Инструкции к упражнению

  • Create a GroupedDataFrame penguin_species by grouping penguins by the species column.
  • Calculate the median of the flipper_length_mm, culmen_length_mm, and body_mass_g columns.

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

# Create penguin_species
penguin_species = ____

# Calculate the median of columns
____(____, ____)
Редактировать и запускать код