| tableau_marche_travail | R Documentation |
Synthetise tous les indicateurs du marche du travail en un tableau institutionnel unique, comparable aux publications OIT/ILOSTAT et aux rapports nationaux sur l'emploi.
tableau_marche_travail(
indicateurs,
pays = "Pays",
annee = as.integer(format(Sys.Date(), "%Y")),
source = NULL
)
indicateurs |
list – Liste nommee d'objets saf_emploi ou tibbles (protection_sociale, taux_sous_utilisation) |
pays |
character – Nom du pays. Defaut : "Pays" |
annee |
integer – Annee. Defaut : annee courante |
source |
character ou NULL – Source. Defaut : NULL |
Un tibble institutionnel
set.seed(42)
n <- 500
ind <- data.frame(
actif = rbinom(n, 1, 0.65),
employe = rbinom(n, 1, 0.55),
informel = rbinom(n, 1, 0.72),
poids = runif(n, 0.8, 1.3),
stringsAsFactors = FALSE
)
r1 <- suppressMessages(taux_activite(ind, "actif", poids="poids"))
r2 <- suppressMessages(taux_emploi(ind, "employe", poids="poids"))
r3 <- suppressMessages(emploi_informel(ind, "informel", poids="poids"))
tableau_marche_travail(list(activite=r1, emploi=r2, informel=r3),
pays="Centrafrique", annee=2026L)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.