-
Notifications
You must be signed in to change notification settings - Fork 0
/
seq13.R
185 lines (134 loc) · 4.39 KB
/
seq13.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# Package ggformula
install.packages("ggformula")
library(ggformula)
mtcars %>%
gf_dhistogram(~ wt) %>%
gf_dens(~ wt)
head(diamonds)
# distribution variable discrète
diamonds %>% count(cut)
diamonds %>% gf_bar(~cut)
# distribution variable continue
diamonds %>% mutate(x=cut(price,seq(0,20000,by=1000))) %>% count(x)
diamonds %>% gf_histogram(~price)
# distribution lissée de la variable continue
diamonds %>%
gf_dens(~price) %>%
gf_dens(~price, bw=1000, color="red")
## Exercice 13.1 ----
naissances%>%
count(agemere)
# histogramme de la variable caractère
naissances%>%
gf_bar(~agemere)
# conversion de la variable en facteur
naissances_2<-as_tibble(naissances)%>%
arrange(agemere)%>% #faire test sans cette ligne pour montrer importance d'ordonner valeurs
mutate(agemere_qualitative=as_factor(agemere))
naissances_2%>%
count(agemere_qualitative)
naissances_2%>%
gf_bar(~agemere_qualitative)
## Suite diapo ----
# Affichage nuage de points
diamonds %>% gf_point( price ~ carat )
diamonds %>% gf_boxplot( price ~ cut )
head(economics,n=3)
economics %>% gf_line( unemploy ~ date )
diamonds %>%
sample_n(size = 500) %>%
gf_point(price ~ carat, colour=~cut) %>%
gf_labs(
title="Lien entre prix et poids des diamants",
caption="Source ggplot2",
x="Poids en carats",
y="Prix en dollars") %>%
gf_refine(
scale_y_continuous(breaks=c(0,9000,18000))) %>%
gf_theme(theme_bw())
## Exercice 13.2 ----
covid <- rio::import(file.path(chemin,"covid-hospit-2023-01-24-19h03.csv"))
covid <- as_tibble(covid)
covid_22<-covid%>%
filter(sexe==0&dep=='22')
covid_22%>%
gf_line(hosp~jour)%>%
gf_labs(
title="Évolution des hospitalisations du Covid-19 au cours du temps dans les Côtes d'Armor",
caption="Source: DATA.GOUV",
x="Date",
y="Hsopitalisation cas Covid-19"
)%>%
gf_refine(
scale_x_date(breaks="3 month", date_labels = "%b %Y")
)
# Sauvegarde du dernier graphique créé
ggsave("mngraphique.png",
width = 12, height = 8, unit = "cm", dpi = 300)
## Suite diapo ----
# Sauvegarde d'un graphique stocké
graphique_22_covid<-covid_22%>%
gf_line(hosp~jour)%>%
gf_labs(
title="Évolution des hospitalisations du Covid-19 au cours du temps dans les Côtes d'Armor",
caption="Source: DATA.GOUV",
x="Date",
y="Hospitalisation cas Covid-19"
)%>%
gf_refine(
scale_x_date(breaks="3 month", date_labels = "%b %Y")
)
ggsave("mngraphique.png",plot=graphique_22_covid,
width = 12, height = 8, unit = "cm", dpi = 300)
naissances %>%
select(agepere,agemere) %>%
gather(parent,age) %>%
count(parent,age) %>%
mutate(n=ifelse(parent=="agepere",-n,n),
parent=factor(parent,levels=c("agepere","agemere"),labels=c("Père","Mère"))) %>%
gf_col(n ~ age,
fill = ~parent) %>%
gf_refine(scale_y_continuous(labels = abs),
coord_flip())
r <- mtcars %>% gf_histogram(~wt)
class(r)
lengths(r)
install.packages("patchwork")
library(patchwork)
g1 <- mtcars %>% gf_histogram(~mpg)
g2 <- mtcars %>% gf_histogram(~wt)
g3 <- mtcars %>% gf_point(wt ~ mpg)
(g1 | g2) / g3
## Exercice récapitulatif ----
library(lubridate)
library(zoo)
serie_emploi <- rio::import(file.path(chemin,"Serie_d_emploi.RDS"))
serie_emploi <- as_tibble(serie_emploi)
head(serie_emploi)
table_dep<- arrow::read_parquet(file.path(chemin,"dep2014.parquet"))
table_reg<- arrow::read_parquet(file.path(chemin,"reg2014.parquet"))
serie_emploi_2<-serie_emploi%>%
mutate(DEP=gsub(" ","",substr(Dept,1,3)))%>%
left_join(.,select(table_dep,DEP,REGION),by='DEP')%>%
left_join(.,select(table_reg,REGION,NCC),by='REGION')%>%
mutate(trimestre=as.yearqtr(as.Date(Date_string)))
table_graphique<-serie_emploi_2%>%
group_by(REGION,NCC,trimestre)%>%
summarise(somme_effectif=sum(Effectif))%>%
arrange(REGION,NCC,trimestre)%>%
mutate(indicatrice_effectif=100*somme_effectif/somme_effectif[1])
table_graphique%>%
gf_line(indicatrice_effectif~trimestre,colour=~NCC)%>%
gf_refine(
scale_x_yearqtr(breaks = seq(from = sort(unique(table_graphique$trimestre))[2],
to = max(unique(table_graphique$trimestre)),
by = 0.5),
format = "%Y T%q")
)%>%
gf_labs(
title="Évolution relative de l'emploi par région (2014)",
caption="Source: Formation",
x="Trimestre",
y="Effectif base 100 au T4 2010"
)%>%
gf_theme(legend.position = "bottom")