Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/karaniwachira/baby_names_analysis
- Owner: KaraniWachira
- Created: 2024-08-19T12:17:27.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T12:28:15.000Z (5 months ago)
- Last Synced: 2024-11-08T20:32:05.483Z (2 months ago)
- Topics: data, data-analysis, quarto, quartopub, r, rstats, tidyverse-ggplot2
- Language: HTML
- Homepage: https://karani.quarto.pub/baby-names-exploration/
- Size: 896 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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