AE 01: Meet the penguins

Application exercise

For this application exercise, we’ll use the pandas and seaborn packages.

import pandas as pd
import seaborn as sns

The dataset we will visualize is called penguins. Let’s .info() it.

penguins = sns.load_dataset("data/penguins")
# add code here
num_rows = len(penguins)
num_rows
344

There are ___ penguins in the penguins data frame.

x = 2
x * 3
6