onbabynames: Names of babies in Ontario Between 1917 and 2018

Description Usage Format Source Examples

Description

A database containing the first names of babies born in Ontario between 1917 and 2018. Counts of fewer than 5 names were suppressed for privacy.

Usage

1

Format

A database containing 161 703 lines and 4 columns:

year

Year

sex

F for female and M for male

name

Name

n

Frequency

Source

https://data.ontario.ca/dataset/eb4c585c-6ada-4de7-8ff1-e876fb1a6b0b/resource/919b7260-aafd-4af1-a427-38a51dbc8436/download/ontario_top_baby_names_male_1917-2018_en_fr.csv

https://data.ontario.ca/dataset/4d339626-98f9-49fe-aede-d64f03fa914f/resource/0c4aec56-b2b8-499b-9739-68ab8a56e69a/download/ontario_top_baby_names_female_1917-2018_en_fr.csv

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  library(dplyr)

  # The five most popular girls names in Ontario in 2018
  onbabynames %>%
    filter(year == 2018 & sex == "F") %>%
    arrange(desc(n)) %>%
    head(5)

  library(ggplot2)

  # The popularity of the five most popular girls names in Ontario in 2018
  # between 1917 and 2018

  girls2018 <- onbabynames %>%
    filter(year == 2018 & sex == "F") %>%
    arrange(desc(n)) %>%
    select(name) %>%
    head(5)

  onbabynames %>%
    filter(name %in% girls2018$name) %>%
    ggplot(aes(x = year, y = n, color = name)) +
    geom_line()

onbabynames documentation built on May 3, 2021, 9:08 a.m.