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_speciesby groupingpenguinsby thespeciescolumn. - Calculate the median of the
flipper_length_mm,culmen_length_mm, andbody_mass_gcolumns.
Інтерактивна практична вправа
Спробуйте виконати цю вправу, доповнивши цей зразок коду.
# Create penguin_species
penguin_species = ____
# Calculate the median of columns
____(____, ____)