Population structure indicators at national level

Data - Eurostat

Info

source dataset Title .html .rData
eurostat demo_pjanind Population structure indicators at national level 2026-03-25 2026-03-26

Last

Code
demo_pjanind %>%
  group_by(time) %>%
  summarise(Nobs = n()) %>%
  arrange(desc(time)) %>%
  head(3) %>%
  print_table_conditional()
time Nobs
2025 2475
2024 2405
2023 2350

Example

Code
include_graphics("https://ec.europa.eu/eurostat/statistics-explained/images/3/39/Population_age_structure_indicators%2C_1_January_2023_%28%25%29_V1.png")

indic_de

Code
demo_pjanind %>%
  left_join(indic_de, by = "indic_de") %>%
  group_by(indic_de, Indic_de) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
indic_de Indic_de Nobs
PC_FM Women per 100 men 2755
DEPRATIO3 Age dependency ratio, 3rd variant (population 0 to 19 years and 65 years or over to population 20 to 64 years) 2574
OLDDEP3 Old-age dependency ratio 3rd variant (population 65 years or over to population 20 to 64 years) 2574
YOUNGDEP3 Young-age dependency ratio 3rd variant (population 0 to 19 years to population 20 to 64 years) 2574
MEDAGEPOP Median age of population 2569
PC_Y0_14 Proportion of population aged 0-14 years 2562
PC_Y0_19 Proportion of population aged 0-19 years 2562
PC_Y0_4 Proportion of population aged 0-4 years 2562
PC_Y10_14 Proportion of population aged 10-14 years 2562
PC_Y15_19 Proportion of population aged 15-19 years 2562
PC_Y15_24 Proportion of population aged 15-24 years 2562
PC_Y20_24 Proportion of population aged 20-24 years 2562
PC_Y20_39 Proportion of population aged 20-39 years 2562
PC_Y25_29 Proportion of population aged 25-29 years 2562
PC_Y25_44 Proportion of population aged 25-44 years 2562
PC_Y25_49 Proportion of population aged 25-49 years 2562
PC_Y30_34 Proportion of population aged 30-34 years 2562
PC_Y35_39 Proportion of population aged 35-39 years 2562
PC_Y40_44 Proportion of population aged 40-44 years 2562
PC_Y40_59 Proportion of population aged 40-59 years 2562
PC_Y45_49 Proportion of population aged 45-49 years 2562
PC_Y45_64 Proportion of population aged 45-64 years 2562
PC_Y50_54 Proportion of population aged 50-54 years 2562
PC_Y50_64 Proportion of population aged 50-64 years 2562
PC_Y55_59 Proportion of population aged 55-59 years 2562
PC_Y5_9 Proportion of population aged 5-9 years 2562
PC_Y60_64 Proportion of population aged 60-64 years 2562
PC_Y60_MAX Proportion of population aged 60 years and more 2562
PC_Y65_MAX Proportion of population aged 65 years and more 2562
YOUNGDEP1 Young-age dependency ratio 1st variant (population 0 to 14 years to population 15 to 64 years) 2562
YOUNGDEP2 Young-age dependency ratio 2nd variant (population 0 to 19 years to population 20 to 59 years) 2562
PC_Y65_69 Proportion of population aged 65-69 years 2561
DEPRATIO1 Age dependency ratio, 1st variant (population 0 to 14 years and 65 years or over to population 15 to 64 years) 2560
DEPRATIO2 Age dependency ratio, 2nd variant (population 0 to 19 years and 60 years or over to population 20 to 59 years) 2560
OLDDEP1 Old-age dependency ratio 1st variant (population 65 years or over to population 15 to 64 years) 2560
OLDDEP2 Old-age dependency ratio 2nd variant (population 60 years or over to population 20 to 59 years) 2560
PC_Y70_74 Proportion of population aged 70-74 years 2559
FMEDAGEPOP Median age of population - females 2551
MMEDAGEPOP Median age of population - males 2549
PC_Y60_79 Proportion of population aged 60-79 years 2541
PC_Y65_79 Proportion of population aged 65-79 years 2541
PC_Y75_79 Proportion of population aged 75-79 years 2541
PC_Y80_MAX Proportion of population aged 80 years and more 2509
PC_Y80_84 Proportion of population aged 80-84 years 2500
PC_Y85_MAX Proportion of population aged 85 years and more 2468
PC_Y0_17 Proportion of population aged 0-17 years 2462
DEPRATIO4 Age dependency ratio, 4th variant (population 0 to 24 years and 65 years or over to population 25 to 64 years) 502
OLDDEP4 Old-age dependency ratio 4th variant (population 65 years or over to population 25 to 64 years) 502
YOUNGDEP4 Young-age dependency ratio 4th variant (population 0 to 24 years to population 25 to 64 years) 502
PC_Y15_29 Proportion of population aged 15-29 years 322
PC_Y75_MAX Proportion of population aged 75 years and more 318
PC_Y100_MAX Proportion of population aged 100 years and more 289
PC_Y20_64 Proportion of population aged 20-64 years 289
PC_Y15_74 Proportion of population aged 15-74 years 288
PC_Y0_18 Proportion of population aged 0-18 years 277

geo

Code
demo_pjanind %>%
  left_join(geo, by = "geo") %>%
  group_by(geo, Geo) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

time

Code
demo_pjanind %>%
  group_by(time) %>%
  summarise(Nobs = n()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

Table 2023

Code
demo_pjanind %>%
  filter(time == "2023",
         indic_de %in% c("YOUNGDEP1", "OLDDEP1", "DEPRATIO1")) %>%
  spread(indic_de, values) %>%
  left_join(geo, by = "geo") %>%
  arrange(-DEPRATIO1) %>%
  select_if(~ n_distinct(.) > 1) %>%
  select(geo, Geo, everything()) %>%
  print_table_conditional