Skip to content
Snippets Groups Projects
Commit a520f85f authored by Daniel.Kalioudjoglou's avatar Daniel.Kalioudjoglou
Browse files

rajout d un zero au paste

parent add4fc72
No related branches found
No related tags found
No related merge requests found
Pipeline #543668 failed
......@@ -24,7 +24,7 @@ tab_valeurs <- tab_ecln %>%
select(TypeZone,Zone,CodeZone,date=Periode,variable=Indicateur, valeur=Valeur)
tab_evol <- tab_ecln %>%
select(TypeZone,Zone,CodeZone,date=Periode,variable=Indicateur, valeur=TauxEvolution12Mois) %>%
mutate(variable = paste("evol12m_",variable))
mutate(variable = paste0("evol12m_",variable))
source_ecln <- bind_rows(tab_valeurs,tab_evol) %>%
mutate(valeur = format(valeur, scientific = FALSE)) %>%
pivot_wider(names_from = variable,values_from = valeur)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment