babynamesIL_totals: Israeli Baby Names - Aggregated Totals

babynamesIL_totalsR Documentation

Israeli Baby Names - Aggregated Totals

Description

Total count of babies per name across all years (1949-2024), by sector and sex. These totals come directly from the CBS source data and include all registrations, even from years where the name was given to fewer than 5 babies. This means the totals may be higher than the sum of yearly counts in babynamesIL, which only includes years with at least 5 babies.

Usage

babynamesIL_totals

Format

A tibble with four columns:

sector

Demographic sector (character): "Jewish", "Muslim", "Christian-Arab", or "Druze"

sex

Sex (character): "M" for male, "F" for female

name

Baby name in Hebrew (character)

total

Total count across all years, including years below the 5-baby threshold (integer)

See Also

babynamesIL

Examples


# Most popular names of all time in the Jewish sector
library(dplyr)
babynamesIL_totals |>
  filter(sector == "Jewish") |>
  group_by(sex) |>
  slice_max(total, n = 10)



babynamesIL documentation built on April 10, 2026, 9:06 a.m.