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.
This exercise is part of the course
Data Manipulation in Julia
Exercise instructions
- Create a GroupedDataFrame
penguin_species
by groupingpenguins
by thespecies
column. - Calculate the median of the
flipper_length_mm
,culmen_length_mm
, andbody_mass_g
columns.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create penguin_species
penguin_species = ____
# Calculate the median of columns
____(____, ____)