Skip to content

KaraniWachira/baby_names_analysis

Repository files navigation

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