| babynamesIL | R Documentation |
Names given to babies born in Israel from 1949-2024, sourced from the Israeli Central Bureau of Statistics (CBS/LAMAS).
babynamesIL
A tibble with six columns:
Demographic sector (character): "Jewish", "Muslim", "Christian-Arab", or "Druze"
Birth year (numeric): 1949-2024
Sex (character): "M" for male, "F" for female
Baby name in Hebrew (character)
Count of babies given this name in that year (integer)
Proportion of babies with this name within the year/sector/sex group (numeric, 0-1)
The primary data source is CBS release 391/2025, which contains comprehensive baby name statistics from 1949 to 2024. The data is filtered to include only names given to at least 5 babies in a given year.
Data was downloaded from: CBS Release 391/2025
The data covers four demographic sectors:
Jewish - Jewish population
Muslim - Muslim population
Christian-Arab - Christian Arab population
Druze - Druze population
babynamesIL_1948: Legacy 1948 data (from earlier CBS release)
babynamesIL_other: Archived "Other" sector data (1985-2021)
babynamesIL_totals: Aggregated totals by name/sector/sex
"Christian" sector renamed to "Christian-Arab"
"Other" sector removed from main data (see babynamesIL_other)
1948 data moved to separate object (see babynamesIL_1948)
babynamesIL_totals, babynamesIL_1948, babynamesIL_other
# Most popular names in 2024
library(dplyr)
babynamesIL |>
filter(year == 2024, sector == "Jewish") |>
group_by(sex) |>
slice_max(n, n = 5)
# Names over time
babynamesIL |>
filter(name == "\u05E0\u05D5\u05E2\u05DD", sector == "Jewish") |>
select(year, sex, n, prop)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.