Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • dreal-pdl/csd/propre.ecln
1 result
Select Git revision
Show changes
Commits on Source (10)
...@@ -4,3 +4,5 @@ ...@@ -4,3 +4,5 @@
.Ruserdata .Ruserdata
extdata/ extdata/
data/ data/
data-raw/*.xls
data-raw/*.csv
This diff is collapsed.
skeleton.html skeleton.html
www/*
...@@ -237,26 +237,26 @@ creer_graphique_series_temporelles_prix( ...@@ -237,26 +237,26 @@ creer_graphique_series_temporelles_prix(
### Commercialisation des appartements par EPCI ### Commercialisation des appartements par EPCI
```{r collectifcartes_volume} ```{r collectifcartes_volume}
creer_carte_volume<-function(data=indic_ecln, creer_carte_volume(data=indic_ecln,
code_region = params$reg, code_region = params$reg,
indicateurs = c("Encours","Mises en vente","Ventes"), indicateurs = c("Encours","Mises en vente","Ventes"),
type_logement="Appartements", type_logement="Appartements",
type_indicateur="Cumul annuel", type_indicateur="Cumul annuel",
titre="Volumes de ventes, mises en vente et encours d'appartements", titre="Volumes de ventes, mises en vente et encours d'appartements",
titre_legende="", titre_legende="",
bas_de_page=caption_carte_appartements) bas_de_page=caption_carte_appartements)
``` ```
```{r collectifcartes_volume} ```{r collectifcartes_evol}
creer_carte_evolution<-function(data=indic_ecln, creer_carte_evolution(data=indic_ecln,
code_region = params$reg, code_region = params$reg,
indicateurs = c("Encours","Mises en vente","Ventes"), indicateurs = c("Encours","Mises en vente","Ventes"),
type_logement="Appartements", type_logement="Appartements",
type_indicateur="Cumul annuel", type_indicateur="Cumul annuel",
titre="Volumes de ventes, mises en vente et encours d'appartements", titre="Volumes de ventes, mises en vente et encours d'appartements",
titre_legende="", titre_legende="",
bas_de_page=caption_carte_appartements) bas_de_page=caption_carte_appartements)
``` ```
...@@ -341,27 +341,27 @@ creer_graphique_series_temporelles_prix( ...@@ -341,27 +341,27 @@ creer_graphique_series_temporelles_prix(
### Commercialisation des maisons par EPCI ### Commercialisation des maisons par EPCI
```{r collectifcartes_volume} ```{r collectifcartes_volume_epci}
creer_carte_volume<-function(data=indic_ecln, creer_carte_volume(data=indic_ecln,
code_region = params$reg, code_region = params$reg,
indicateurs = c("Encours","Mises en vente","Ventes"), indicateurs = c("Encours","Mises en vente","Ventes"),
type_logement="Maisons", type_logement="Maisons",
type_indicateur="Cumul annuel", type_indicateur="Cumul annuel",
titre="Volumes de ventes, mises en vente et encours d'appartements", titre="Volumes de ventes, mises en vente et encours d'appartements",
titre_legende="", titre_legende="",
bas_de_page=caption_carte_appartements) bas_de_page=caption_carte_appartements)
``` ```
```{r collectifcartes_volume} ```{r collectifcartes_evol_epci}
creer_carte_evolution<-function(data=indic_ecln, creer_carte_evolution(data=indic_ecln,
code_region = params$reg, code_region = params$reg,
indicateurs = c("Encours","Mises en vente","Ventes"), indicateurs = c("Encours","Mises en vente","Ventes"),
type_logement="Maisons", type_logement="Maisons",
type_indicateur="Cumul annuel", type_indicateur="Cumul annuel",
titre="Volumes de ventes, mises en vente et encours d'appartements", titre="Volumes de ventes, mises en vente et encours d'appartements",
titre_legende="", titre_legende="",
bas_de_page=caption_carte_appartements) bas_de_page=caption_carte_appartements)
``` ```