babyNames: Names of children as recorded by the US Social Security...

Description Usage Format Details Source Examples

Description

The US Social Security Administration provides yearly lists of names given to babies. . These data combine the yearly lists.

babyNames is the raw data from the SSA. The case is a year-name-sex, for example: Jane F 1922. The count is the number of children of that sex given that name in that year. Names assigned to fewer than five children of one sex in any year are not listed, presumably out of privacy concerns.

Usage

1

Format

babyNames consists of 1,792,091 entries, each of which has four variables:

name

The name (as a factor)

sex

F or M

count

The number of babies given that name and of that sex.

year

Year of birth

babyNamesYearly is a tabulation of babyNames that gives the total number of births of each sex and the number of unique names. It is provided for convenience.

Details

babyNames was tabulated with dplyr to produce babyNamesYearly. group_by(babyNames,year,sex) %>% summarize(nbirths=sum(count),nnames=length(unique(name)))

Source

The data were compiled from the Social Security Administration web site: http://www.ssa.gov/oact/babynames/names.zip.

Examples

1
2

dtkaplan/DCF-devel documentation built on May 15, 2019, 4:58 p.m.