Meet the Penguins

Author

Insert name

For this application exercise, we’ll use the tidyverse and palmerpenguins packages.

library(tidyverse)
library(palmerpenguins)

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

# add code here
nrow(penguins)
[1] 344

There are ___ penguins in the penguins data frame.

Reuse

CC-BY-SA-4.0