Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mine-cetinkaya-rundel/ukbabynames
UK Baby Names Data
https://github.com/mine-cetinkaya-rundel/ukbabynames
data opendata r-package uk
Last synced: 9 days ago
JSON representation
UK Baby Names Data
- Host: GitHub
- URL: https://github.com/mine-cetinkaya-rundel/ukbabynames
- Owner: mine-cetinkaya-rundel
- Created: 2017-06-20T11:13:51.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2022-03-25T14:41:10.000Z (over 2 years ago)
- Last Synced: 2024-06-11T18:12:50.891Z (5 months ago)
- Topics: data, opendata, r-package, uk
- Language: R
- Homepage: https://mine-cetinkaya-rundel.github.io/ukbabynames
- Size: 29.9 MB
- Stars: 20
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "80%"
)
```# ukbabynames
[![CRAN status](https://www.r-pkg.org/badges/version/ukbabynames)](https://cran.r-project.org/package=ukbabynames)
[![Lifecycle:
stable](https://img.shields.io/badge/lifecycle-stable-green.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![R build status](https://github.com/mine-cetinkaya-rundel/ukbabynames/workflows/R-CMD-check/badge.svg)](https://github.com/mine-cetinkaya-rundel/ukbabynames/actions)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/ukbabynames)](https://cran.r-project.org/package=ukbabynames)
[![R-CMD-check](https://github.com/mine-cetinkaya-rundel/ukbabynames/workflows/R-CMD-check/badge.svg)](https://github.com/mine-cetinkaya-rundel/ukbabynames/actions)This package contains five datasets:
* `ewbabynames`: For each year from 1996 to 2020, the number of children of each sex given each name in England and Wales. All names with more than 3 uses are included. Provided by the UK Office of National Statistics.
* `nibabynames`: For each year from 1997 to 2020, the number of children of each sex given each name in Northern Ireland. Provided by the Northern Ireland Statistics and Research Agency.
* `scotbabynames`: For each year from 1974 to 2020, the number of children of each sex given each name in Scotland. Provided by the National Records of Scotland.
* `ukbabynames`: Each of the above datasets is bound into one dataset with an added nation column based on which dataset it came from.
* `rankings`: A longitudinal dataset containing the top-100 baby girl and top-100 baby boy names over the period 1904 to 1994, only in England and Wales.
It is inspired by Hadley Wickham's [**babynames**](https://cran.r-project.org/package=babynames) package.
## Installation
You can install the released version of ukbabynames from [CRAN](https://cran.r-project.org/) with:
```{r eval = FALSE}
install.packages("ukbabynames")
```You can install the development version of openintro from GitHub with:
```{r eval = FALSE}
# install.packages("devtools")
devtools::install_github("mine-cetinkaya-rundel/ukbabynames")
```