powered by
Calcule l'IDH et ses trois dimensions (santé, éducation, revenu) selon la méthodologie officielle PNUD post-2010. Applicable au niveau national ou infranational.
calcul_idh( esperance_vie, annees_scol_moy, annees_scol_att, rnb_habitant, niveau = c("national", "infranational"), annee = NULL )
Une liste avec : idh, indice_sante, indice_education, indice_revenu, categorie.
idh
indice_sante
indice_education
indice_revenu
categorie
numeric — Espérance de vie à la naissance (années)
numeric — Durée moyenne de scolarisation (années)
numeric — Durée attendue de scolarisation (années)
numeric — RNB par habitant en PPA (USD constants 2017)
character — "national" ou "infranational". Défaut : "national".
"national"
"infranational"
integer ou NULL — Année de référence. Défaut : NULL.
PNUD (2023). Technical Notes: Calculating the Human Development Indices.
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