penguins.Rd
Body measurements for three species of penguins on the Palmer Archipelago in Antarctica.
penguins
A data frame with 333 rows and 8 variables:
a factor denoting penguin species (Adélie, Chinstrap and Gentoo)
a factor denoting island in Palmer Archipelago, Antarctica (Biscoe, Dream or Torgersen)
a number denoting bill length (millimeters)
a number denoting bill depth (millimeters)
an integer denoting flipper length (millimeters)
an integer denoting body mass (grams)
a factor denoting penguin sex (female, male)
an integer denoting the study year (2007, 2008, or 2009)
This data set is borrowed from the R package palmerpenguins
by Allison Horst, Alison Hill and Kristen Gorman (https://allisonhorst.github.io/palmerpenguins/). Check out their webpage for complimentary penguin artwork!
penguins
is a great introductory data set used throughout the data science and machine learning community (all the variables are exogenous; penguins can't choose their measurements!). To make things a bit easier, all rows with NAs were removed (to avoid issues like passing na.rm = TRUE
to summary routines like mean()
and so on).