Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/karaniwachira/baby_names_analysis

Data Analysis: Baby Names Exploration
https://github.com/karaniwachira/baby_names_analysis

data data-analysis quarto quartopub r rstats tidyverse-ggplot2

Last synced: 6 days ago
JSON representation

Data Analysis: Baby Names Exploration

Awesome Lists containing this project

README

        

# 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