Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 693 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 693 Bytes

In this case study, we will explore the babynames data set, which comes in R’s babynames package

Data Library

babynames describes the popularity of different childrens’ names as recorded by the United States Social Security Administration. The data set contains five variables:

name - A name

year - A year

sex - A biological sex ("F" = Female, "M" = Male)

n - The number of children of that sex who were given that name in that year

prop - The proportion of children of that sex who were given that name in that year

Packages used

Tidyverse

install.packages("tidyverse") to install

babyname package

install.packages("babynames") to install