Learn R Programming

statAfrikR (version 0.1.0)

calcul_idh: Calculer l'Indice de Développement Humain (IDH)

Description

Calcule l'IDH et ses trois dimensions (santé, éducation, revenu) selon la méthodologie officielle PNUD post-2010. Applicable au niveau national ou infranational.

Usage

calcul_idh(
  esperance_vie,
  annees_scol_moy,
  annees_scol_att,
  rnb_habitant,
  niveau = c("national", "infranational"),
  annee = NULL
)

Value

Une liste avec : idh, indice_sante, indice_education, indice_revenu, categorie.

Arguments

esperance_vie

numeric — Espérance de vie à la naissance (années)

annees_scol_moy

numeric — Durée moyenne de scolarisation (années)

annees_scol_att

numeric — Durée attendue de scolarisation (années)

rnb_habitant

numeric — RNB par habitant en PPA (USD constants 2017)

niveau

character — "national" ou "infranational". Défaut : "national".

annee

integer ou NULL — Année de référence. Défaut : NULL.

References

PNUD (2023). Technical Notes: Calculating the Human Development Indices.

Examples

Run this code
idh <- calcul_idh(
  esperance_vie   = 61.2,
  annees_scol_moy = 5.4,
  annees_scol_att = 9.8,
  rnb_habitant    = 2350,
  annee           = 2023
)
cat("IDH :", idh$idh)

Run the code above in your browser using DataLab