| babynamesIL_totals | R Documentation |
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.
babynamesIL_totals
A tibble with four columns:
Demographic sector (character): "Jewish", "Muslim", "Christian-Arab", or "Druze"
Sex (character): "M" for male, "F" for female
Baby name in Hebrew (character)
Total count across all years, including years below the 5-baby threshold (integer)
babynamesIL
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.