-
Notifications
You must be signed in to change notification settings - Fork 1
/
population.R
68 lines (57 loc) · 2.53 KB
/
population.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
library(tidyverse)
library(scales)
source("/home/colin/R/misc/data-bzh-tools-master/main.R")
pop <- read_csv2("https://bretagne.territoires.opendatasoft.com/explore/dataset/population-active-25-54-ans-par-categorie-socio-professionnelle-et-activite-1968/download/?format=csv&timezone=Europe/Berlin&use_labels_for_header=true")
#Total
pop %>%
group_by(Année) %>%
summarize(Somme = sum(value, na.rm = TRUE)) %>%
ggplot(aes(Année, Somme)) +
geom_bar(stat = "identity", fill = databzh$colour1) +
scale_y_continuous(labels = comma) +
labs(title = "Évolution de la population active en Bretagne",
subtitle = "Données via Open Data Territoire",
caption = "http://data-bzh.fr") +
databzhTheme()
# Par département
pop %>%
mutate(Département = as.factor(Département)) %>%
group_by(Année, Département) %>%
summarize(Somme = sum(value, na.rm = TRUE)) %>%
ggplot(aes(Année, Somme, group = Département, col = Département)) +
geom_line(size = 2) +
scale_color_manual(values = databzh$colours) +
scale_y_continuous(labels = comma) +
labs(title = "Évolution de la population active par département",
subtitle = "Données via Open Data Territoire",
caption = "http://data-bzh.fr") +
databzhTheme()
# Par CSP, actifs
pop %>%
mutate(Département = as.factor(Département)) %>%
.[grep("Actifs", .$`CSP - Activité`),] %>%
mutate(`CSP - Activité` = stringr::str_replace_all(`CSP - Activité`, "Ayant Un Emploi", "")) %>%
group_by(Année, `CSP - Activité`) %>%
summarize(Somme = sum(value, na.rm = TRUE)) %>%
ggplot(aes(Année, Somme, group = `CSP - Activité`, col = `CSP - Activité`)) +
geom_line(size = 2) +
scale_color_manual(values = databzh$colours) +
scale_y_continuous(labels = comma) +
labs(title = "Évolution de la population active en Bretagne",
subtitle = "Données via Open Data Territoire",
caption = "http://data-bzh.fr") +
databzhTheme()
# Par CSP, actifs
pop %>%
mutate(Département = as.factor(Département)) %>%
.[grep("Chômeurs", .$`CSP - Activité`),] %>%
group_by(Année, `CSP - Activité`) %>%
summarize(Somme = sum(value, na.rm = TRUE)) %>%
ggplot(aes(Année, Somme, group = `CSP - Activité`, col = `CSP - Activité`)) +
geom_line(size = 2) +
scale_color_manual(values = databzh$colours) +
scale_y_continuous(labels = comma) +
labs(title = "Évolution de la population de chômeurs en Bretagne",
subtitle = "Données via Open Data Territoire",
caption = "http://data-bzh.fr") +
databzhTheme()