Penguins 2#
In this quiz we will be looking at exploring the penguins
dataset.

Part 1#
You can load the penguins
dataset in seaborn
using:
df = sns.load_dataset("penguins")
This dataset contains information about three species of penguins (Adelie, Gentoo, and Chinstrap), and various characteristics including their bill_length, bill_depth, flipper_length, body_mass, and sex.

Which of the following claims can you make from only the violin plot below:

Answer Section#
Generally, the Adelie penguins have smaller bill lengths than the other two species.
Generally, the Gentoo penguins and the Chinstrap penguins have similar bill lengths.
Generally, Chinstrap penguins have the largest bill length.
Generally, Gentoo penguins have the second largest bill length.
Generally, all penguin species have very similar bill lengths.
Attribution#
Problem is licensed under the CC-BY-NC-SA 4.0 license.