Commit b6b0a4af authored by Hugues de Courson's avatar Hugues de Courson

V2 du commit de l'exo

parent de366a66
...@@ -54,7 +54,8 @@ vivantes_nonfum <- sum(data$Status[data$Smoker=="No"]=="Alive") ...@@ -54,7 +54,8 @@ vivantes_nonfum <- sum(data$Status[data$Smoker=="No"]=="Alive")
decedees_fum <- sum(data$Status[data$Smoker=="Yes"]=="Dead") decedees_fum <- sum(data$Status[data$Smoker=="Yes"]=="Dead")
decedees_nonfum <- sum(data$Status[data$Smoker=="No"]=="Dead") decedees_nonfum <- sum(data$Status[data$Smoker=="No"]=="Dead")
tab_1 <- data.frame(Vivantes = c(vivantes_fum,vivantes_nonfum), Decedees = c(decedees_fum,decedees_nonfum), row.names = c("Fumeuses","Non fumeuses")) tab_1 <- data.frame(Vivantes = c(vivantes_fum,vivantes_nonfum),
Decedees = c(decedees_fum,decedees_nonfum), row.names = c("Fumeuses","Non fumeuses"))
kable(tab_1,align = 'l') kable(tab_1,align = 'l')
``` ```
...@@ -73,7 +74,10 @@ nb_viv <- sum(data$Status=="Alive") ...@@ -73,7 +74,10 @@ nb_viv <- sum(data$Status=="Alive")
nb_deces <-sum(data$Status=="Dead") nb_deces <-sum(data$Status=="Dead")
tot <- sum(data$Status=="Alive"|data$Status=="Dead") tot <- sum(data$Status=="Alive"|data$Status=="Dead")
tab_2 <- data.frame(cbind(rbind(mort_fum, vivant_fum, nb_fum)), rbind(mort_nonfum,vivant_nonfum, nb_nonfum),rbind(nb_deces,nb_viv,tot)) tab_2 <- data.frame(cbind(rbind(mort_fum, vivant_fum, nb_fum)),
rbind(mort_nonfum,vivant_nonfum, nb_nonfum),
rbind(nb_deces,nb_viv,tot))
row.names(tab_2) <- c("Decedees", "Vivantes","Total") row.names(tab_2) <- c("Decedees", "Vivantes","Total")
names(tab_2) <- c("Fumeuses", "Non Fumeuses", "Total") names(tab_2) <- c("Fumeuses", "Non Fumeuses", "Total")
...@@ -83,8 +87,10 @@ kable(tab_2,align = "c") ...@@ -83,8 +87,10 @@ kable(tab_2,align = "c")
# Representation graphique # Representation graphique
Ceci passe par la création d'un tableau avec les pourcentages de mortalité Ceci passe par la création d'un tableau avec les pourcentages de mortalité
```{r representation graphique taux de mortalite} ```{r representation graphique taux de mortalite}
tab_3 <- data.frame(cbind(rbind((sum(data$Status[data$Smoker=="Yes"]=="Dead")/sum(data$Smoker=="Yes"))*100,(sum(data$Status[data$Smoker=="Yes"]=="Alive")/sum(data$Smoker=="Yes"))*100)), tab_3 <- data.frame(cbind(rbind((sum(data$Status[data$Smoker=="Yes"]=="Dead")/sum(data$Smoker=="Yes"))*100,
rbind((sum(data$Status[data$Smoker=="No"]=="Dead")/sum(data$Smoker=="No"))*100,(sum(data$Status[data$Smoker=="No"]=="Alive")/sum(data$Smoker=="No"))*100)) (sum(data$Status[data$Smoker=="Yes"]=="Alive")/sum(data$Smoker=="Yes"))*100)),
rbind((sum(data$Status[data$Smoker=="No"]=="Dead")/sum(data$Smoker=="No"))*100,
(sum(data$Status[data$Smoker=="No"]=="Alive")/sum(data$Smoker=="No"))*100))
names(tab_3) <- c("Fumeuses", "Non fumeuses") names(tab_3) <- c("Fumeuses", "Non fumeuses")
row.names(tab_3) <- c("Decedees", "Vivantes") row.names(tab_3) <- c("Decedees", "Vivantes")
...@@ -156,10 +162,12 @@ tab_5 <- ftable(data[,c(1,2,4)]) ...@@ -156,10 +162,12 @@ tab_5 <- ftable(data[,c(1,2,4)])
tab_5 <- round(prop.table(tab_5,2)*100,1) tab_5 <- round(prop.table(tab_5,2)*100,1)
tab_5 <- rbind(tab_5, tab1(data$cl_age)$output.table[,1]) tab_5 <- rbind(tab_5, tab1(data$cl_age)$output.table[,1])
tab_5 <- as.table(tab_5) tab_5 <- as.table(tab_5)
row.names(tab_5) <- c("Non fumeuses vivantes ", "Non fumeuses decedees", "Fumeuses vivantes", "Fumeuses decedees" ,"Effectifs") row.names(tab_5) <- c("Non fumeuses vivantes ", "Non fumeuses decedees",
"Fumeuses vivantes", "Fumeuses decedees" ,"Effectifs")
colnames(tab_5) <- c("[18;34]", "[35;54]", "[55;64]", "[65;[") colnames(tab_5) <- c("[18;34]", "[35;54]", "[55;64]", "[65;[")
kable(tab_5,"latex", align = "c") %>% kable_styling(latex_options = "striped", stripe_index = c(1,2)) kable(tab_5,"latex", align = "c") %>% kable_styling(latex_options = "striped",
stripe_index = c(1,2))
``` ```
## Et maintenant on trace les barplots ## Et maintenant on trace les barplots
...@@ -170,14 +178,18 @@ Et autre [lien](https://sites.google.com/site/rgraphiques/realiser-des-graphique ...@@ -170,14 +178,18 @@ Et autre [lien](https://sites.google.com/site/rgraphiques/realiser-des-graphique
```{r deuxieme barplot} ```{r deuxieme barplot}
par(mar = c(5,5,5,13)) par(mar = c(5,5,5,13))
barplot(tab_5[c(1:4),], col = c("gray","black","gray","black"), density = c(30,30,40,100),angle = c(70,70,0,0)) barplot(tab_5[c(1:4),], col = c("gray","black","gray","black"), density = c(30,30,40,100),
angle = c(70,70,0,0))
xmin <- par("usr")[1] xmin <- par("usr")[1]
xmax <- par("usr")[2] xmax <- par("usr")[2]
ymin <- par("usr")[3] ymin <- par("usr")[3]
ymax <- par("usr")[4] ymax <- par("usr")[4]
par(xpd=TRUE) par(xpd=TRUE)
lambda <- 0.025 lambda <- 0.025
legend(((1 + lambda) * par("usr")[2] - lambda * par("usr")[1]),50, legend = c("Non fumeuses vivantes", "Non fumeuses decedees", "Fumeuses vivantes", "Fumeuses decedees"), fill = c("gray","black","gray","black"),density = c(30,30,40,100),angle = (c(70,70,0,0))) legend(((1 + lambda) * par("usr")[2] - lambda * par("usr")[1]),50,
legend = c("Non fumeuses vivantes", "Non fumeuses decedees",
"Fumeuses vivantes", "Fumeuses decedees"),
fill = c("gray","black","gray","black"),density = c(30,30,40,100),angle = (c(70,70,0,0)))
``` ```
...@@ -199,8 +211,8 @@ On récupère les valeurs min et max du plot précédent ...@@ -199,8 +211,8 @@ On récupère les valeurs min et max du plot précédent
## Et maintenant on peut obtenir les intervalles de confiance ## Et maintenant on peut obtenir les intervalles de confiance
<!--# Pour le premier groupe d'age non fumeuses decedees--> #Pour le premier groupe d'age non fumeuses decedees
```{r IC premier groupe dage non fum, include=FALSE} ```{r IC premier groupe dage non fum}
x <- tab_5[2,1] x <- tab_5[2,1]
n <- tab_5[5,1] n <- tab_5[5,1]
...@@ -209,8 +221,8 @@ IC1<- round(IC(x),1) ...@@ -209,8 +221,8 @@ IC1<- round(IC(x),1)
IC1 <- paste(c(IC1[1],"[",IC1[2],"-",IC1[3],"]"),collapse = "") IC1 <- paste(c(IC1[1],"[",IC1[2],"-",IC1[3],"]"),collapse = "")
``` ```
<!--# Pour le premier groupe d'age fumeuses decedees--> # Pour le premier groupe d'age fumeuses decedees
```{r IC premier groupe dage fum, include=FALSE} ```{r IC premier groupe dage fum}
x <- tab_5[4,1] x <- tab_5[4,1]
n <- tab_5[5,1] n <- tab_5[5,1]
...@@ -219,8 +231,8 @@ IC2 <- round(IC(x),1) ...@@ -219,8 +231,8 @@ IC2 <- round(IC(x),1)
IC2 <- paste(c(IC2[1],"[",IC2[2],"-",IC2[3],"]"), collapse = "") IC2 <- paste(c(IC2[1],"[",IC2[2],"-",IC2[3],"]"), collapse = "")
``` ```
<!--# Pour le deuxième groupe d'age non fum--> # Pour le deuxième groupe d'age non fum
```{r IC deuxieme groupe dage non fum, include=FALSE} ```{r IC deuxieme groupe dage non fum}
x <- tab_5[2,2] x <- tab_5[2,2]
n <- tab_5[5,2] n <- tab_5[5,2]
...@@ -229,8 +241,8 @@ IC3 <- round(IC(x),1) ...@@ -229,8 +241,8 @@ IC3 <- round(IC(x),1)
IC3 <- paste(c(IC3[1],"[",IC3[2],"-",IC3[3],"]"),collapse = "") IC3 <- paste(c(IC3[1],"[",IC3[2],"-",IC3[3],"]"),collapse = "")
``` ```
<!--# Pour le deuxième groupe d'age fum--> # Pour le deuxième groupe d'age fum
```{r IC deuxieme groupe dage fum, include=FALSE} ```{r IC deuxieme groupe dage fum}
x <- tab_5[4,2] x <- tab_5[4,2]
n <- tab_5[5,2] n <- tab_5[5,2]
...@@ -239,8 +251,8 @@ IC4 <- round(IC(x),1) ...@@ -239,8 +251,8 @@ IC4 <- round(IC(x),1)
IC4 <- paste(c(IC4[1],"[",IC4[2],"-",IC4[3],"]"),collapse = "") IC4 <- paste(c(IC4[1],"[",IC4[2],"-",IC4[3],"]"),collapse = "")
``` ```
<!--# Pour le troisieme groupe d'age non fum--> # Pour le troisieme groupe d'age non fum
```{r IC troisieme groupe dage non fum, include=FALSE} ```{r IC troisieme groupe dage non fum}
x <- tab_5[2,3] x <- tab_5[2,3]
n <- tab_5[5,3] n <- tab_5[5,3]
...@@ -249,8 +261,8 @@ IC5 <- round(IC(x),1) ...@@ -249,8 +261,8 @@ IC5 <- round(IC(x),1)
IC5 <- paste(c(IC5[1],"[",IC5[2],"-",IC5[3],"]"),collapse = "") IC5 <- paste(c(IC5[1],"[",IC5[2],"-",IC5[3],"]"),collapse = "")
``` ```
<!--# Pour le troisieme groupe d'age fum--> # Pour le troisieme groupe d'age fum
```{r IC troisieme groupe dage fum, include=FALSE} ```{r IC troisieme groupe dage fum}
x <- tab_5[4,3] x <- tab_5[4,3]
n <- tab_5[5,3] n <- tab_5[5,3]
...@@ -258,8 +270,8 @@ n <- tab_5[5,3] ...@@ -258,8 +270,8 @@ n <- tab_5[5,3]
IC6 <- round(IC(x),1) IC6 <- round(IC(x),1)
IC6 <- paste(c(IC6[1],"[",IC6[2],"-",IC6[3],"]"),collapse = "") IC6 <- paste(c(IC6[1],"[",IC6[2],"-",IC6[3],"]"),collapse = "")
``` ```
<!--# Pour le quatrieme groupe d'age non fum--> # Pour le quatrieme groupe d'age non fum
```{r IC quatrieme groupe dage non fum, include=FALSE} ```{r IC quatrieme groupe dage non fum}
x <- tab_5[2,4] x <- tab_5[2,4]
n <- tab_5[5,4] n <- tab_5[5,4]
...@@ -269,8 +281,8 @@ IC7 <- paste(c(IC7[1],"[",IC7[2],"-",IC7[3],"]"),collapse = "") ...@@ -269,8 +281,8 @@ IC7 <- paste(c(IC7[1],"[",IC7[2],"-",IC7[3],"]"),collapse = "")
``` ```
<!--# Pour le quatrieme groupe d'age fum--> Pour le quatrieme groupe d'age fum
```{r IC quatrieme groupe dage fum, include=FALSE} ```{r IC quatrieme groupe dage fum}
x <- tab_5[4,4] x <- tab_5[4,4]
n <- tab_5[5,4] n <- tab_5[5,4]
...@@ -334,7 +346,8 @@ Pour cela on introduit un polynome fractionnaire dans le modèle de régression. ...@@ -334,7 +346,8 @@ Pour cela on introduit un polynome fractionnaire dans le modèle de régression.
library(mfp) library(mfp)
reguniage2 <- mfp(deces~fp(Age, df =4, select = 1, scale = T), family = binomial, data = data) reguniage2 <- mfp(deces~fp(Age, df =4, select = 1, scale = T),
family = binomial, data = data)
summary(reguniage2) summary(reguniage2)
``` ```
...@@ -351,4 +364,8 @@ logistic.display(regtot) ...@@ -351,4 +364,8 @@ logistic.display(regtot)
``` ```
Et là on constate une inversion de l'odds ratio associé au tabac lorsque l'on ajuste sur l'âge... Et là on constate une inversion de l'odds ratio associé au tabac lorsque l'on ajuste sur l'âge...
\ No newline at end of file Soit l'âge est un facteur confondant sur la relation entre le fait d'être fumeur et le risque de décés, soit il s'agit d'un modificateur de l'effet.
Dans tous les cas l'interprétation brute du de la relation entre le fait de fumer et l'âge n'est pas juste.
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019) (preloaded format=pdflatex 2020.3.21) 5 APR 2020 17:46 This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019) (preloaded format=pdflatex 2020.3.21) 5 APR 2020 18:30
entering extended mode entering extended mode
restricted \write18 enabled. restricted \write18 enabled.
%&-line parsing enabled. %&-line parsing enabled.
...@@ -841,192 +841,214 @@ File: ts1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern ...@@ -841,192 +841,214 @@ File: ts1lmtt.fd 2009/10/30 v1.6 Font defs for Latin Modern
Package xcolor Warning: Incompatible color definition on input line 183. Package xcolor Warning: Incompatible color definition on input line 183.
Package xcolor Warning: Incompatible color definition on input line 193. Package xcolor Warning: Incompatible color definition on input line 194.
Package xcolor Warning: Incompatible color definition on input line 193. Package xcolor Warning: Incompatible color definition on input line 194.
LaTeX Font Info: External font `lmex10' loaded for size LaTeX Font Info: External font `lmex10' loaded for size
(Font) <10> on input line 195. (Font) <10> on input line 196.
LaTeX Font Info: External font `lmex10' loaded for size LaTeX Font Info: External font `lmex10' loaded for size
(Font) <7> on input line 195. (Font) <7> on input line 196.
LaTeX Font Info: External font `lmex10' loaded for size LaTeX Font Info: External font `lmex10' loaded for size
(Font) <5> on input line 195. (Font) <5> on input line 196.
Package xcolor Warning: Incompatible color definition on input line 211.
[1 [1
{/usr/local/texlive/2019/texmf-var/fonts/map/pdftex/updmap/pdftex.map}] {/usr/local/texlive/2019/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
Package xcolor Warning: Incompatible color definition on input line 229. Package xcolor Warning: Incompatible color definition on input line 212.
Package xcolor Warning: Incompatible color definition on input line 233.
Package xcolor Warning: Incompatible color definition on input line 229.
Package xcolor Warning: Incompatible color definition on input line 233.
Package xcolor Warning: Incompatible color definition on input line 248.
Package xcolor Warning: Incompatible color definition on input line 252.
Package xcolor Warning: Incompatible color definition on input line 258.
Package xcolor Warning: Incompatible color definition on input line 264.
Package xcolor Warning: Incompatible color definition on input line 258.
Package xcolor Warning: Incompatible color definition on input line 264.
Package xcolor Warning: Incompatible color definition on input line 270.
Package xcolor Warning: Incompatible color definition on input line 276.
Package xcolor Warning: Incompatible color definition on input line 275.
Package xcolor Warning: Incompatible color definition on input line 281.
Package xcolor Warning: Incompatible color definition on input line 275.
Package xcolor Warning: Incompatible color definition on input line 281.
<exercice_fr_files/figure-latex/representation graphique taux de mortalite-1.pd <exercice_fr_files/figure-latex/representation graphique taux de mortalite-1.pd
f, id=93, 393.47pt x 232.87pt> f, id=121, 393.47pt x 232.87pt>
File: exercice_fr_files/figure-latex/representation graphique taux de mortalite File: exercice_fr_files/figure-latex/representation graphique taux de mortalite
-1.pdf Graphic file (type pdf) -1.pdf Graphic file (type pdf)
<use exercice_fr_files/figure-latex/representation graphique taux de mortalite- <use exercice_fr_files/figure-latex/representation graphique taux de mortalite-
1.pdf> 1.pdf>
Package pdftex.def Info: exercice_fr_files/figure-latex/representation graphiqu Package pdftex.def Info: exercice_fr_files/figure-latex/representation graphiqu
e taux de mortalite-1.pdf used on input line 277. e taux de mortalite-1.pdf used on input line 283.
(pdftex.def) Requested size: 393.46902pt x 232.86942pt. (pdftex.def) Requested size: 393.46902pt x 232.86942pt.
[2] [2]
Package xcolor Warning: Incompatible color definition on input line 282. Package xcolor Warning: Incompatible color definition on input line 288.
Package xcolor Warning: Incompatible color definition on input line 293. Package xcolor Warning: Incompatible color definition on input line 299.
Package xcolor Warning: Incompatible color definition on input line 293. Package xcolor Warning: Incompatible color definition on input line 299.
Package xcolor Warning: Incompatible color definition on input line 297. Package xcolor Warning: Incompatible color definition on input line 303.
Package xcolor Warning: Incompatible color definition on input line 304. Package xcolor Warning: Incompatible color definition on input line 310.
Package xcolor Warning: Incompatible color definition on input line 304. Package xcolor Warning: Incompatible color definition on input line 310.
Package xcolor Warning: Incompatible color definition on input line 312. Package xcolor Warning: Incompatible color definition on input line 318.
Package xcolor Warning: Incompatible color definition on input line 319. Package xcolor Warning: Incompatible color definition on input line 325.
Package xcolor Warning: Incompatible color definition on input line 319. Package xcolor Warning: Incompatible color definition on input line 325.
Package hyperref Warning: Difference (2) between bookmark levels is greater Package hyperref Warning: Difference (2) between bookmark levels is greater
(hyperref) than one, level fixed on input line 330. (hyperref) than one, level fixed on input line 336.
Package xcolor Warning: Incompatible color definition on input line 338. Package xcolor Warning: Incompatible color definition on input line 344.
[3 <./exercice_fr_files/figure-latex/representation graphique taux de mortalite [3 <./exercice_fr_files/figure-latex/representation graphique taux de mortalite
-1.pdf>] -1.pdf>]
Package xcolor Warning: Incompatible color definition on input line 346. Package xcolor Warning: Incompatible color definition on input line 352.
Package xcolor Warning: Incompatible color definition on input line 346. Package xcolor Warning: Incompatible color definition on input line 352.
<exercice_fr_files/figure-latex/var classe dage-1.pdf, id=110, 422.57875pt x 25 <exercice_fr_files/figure-latex/var classe dage-1.pdf, id=138, 422.57875pt x 25
7.96375pt> 7.96375pt>
File: exercice_fr_files/figure-latex/var classe dage-1.pdf Graphic file (type p File: exercice_fr_files/figure-latex/var classe dage-1.pdf Graphic file (type p
df) df)
<use exercice_fr_files/figure-latex/var classe dage-1.pdf> <use exercice_fr_files/figure-latex/var classe dage-1.pdf>
Package pdftex.def Info: exercice_fr_files/figure-latex/var classe dage-1.pdf Package pdftex.def Info: exercice_fr_files/figure-latex/var classe dage-1.pdf
used on input line 348. used on input line 354.
(pdftex.def) Requested size: 422.5906pt x 257.97096pt. (pdftex.def) Requested size: 422.5906pt x 257.97096pt.
Package xcolor Warning: Incompatible color definition on input line 370. Package xcolor Warning: Incompatible color definition on input line 376.
Package xcolor Warning: Incompatible color definition on input line 376. Package xcolor Warning: Incompatible color definition on input line 382.
Package xcolor Warning: Incompatible color definition on input line 376. Package xcolor Warning: Incompatible color definition on input line 382.
<exercice_fr_files/figure-latex/table contingence-1.pdf, id=113, 422.57875pt x <exercice_fr_files/figure-latex/table contingence-1.pdf, id=141, 422.57875pt x
257.96375pt> 257.96375pt>
File: exercice_fr_files/figure-latex/table contingence-1.pdf Graphic file (type File: exercice_fr_files/figure-latex/table contingence-1.pdf Graphic file (type
pdf) pdf)
<use exercice_fr_files/figure-latex/table contingence-1.pdf> <use exercice_fr_files/figure-latex/table contingence-1.pdf>
Package pdftex.def Info: exercice_fr_files/figure-latex/table contingence-1.pdf Package pdftex.def Info: exercice_fr_files/figure-latex/table contingence-1.pdf
used on input line 383. used on input line 389.
(pdftex.def) Requested size: 422.5906pt x 257.97096pt. (pdftex.def) Requested size: 422.5906pt x 257.97096pt.
Package xcolor Warning: Incompatible color definition on input line 385. Package xcolor Warning: Incompatible color definition on input line 391.
[4 <./exercice_fr_files/figure-latex/var classe dage-1.pdf>] [4 <./exercice_fr_files/figure-latex/var classe dage-1.pdf>]
Package xcolor Warning: Incompatible color definition on input line 393. Package xcolor Warning: Incompatible color definition on input line 401.
Package xcolor Warning: Incompatible color definition on input line 401.
Package xcolor Warning: Incompatible color definition on input line 393. Package xcolor Warning: Incompatible color definition on input line 430.
Package xcolor Warning: Incompatible color definition on input line 422. Package xcolor Warning: Incompatible color definition on input line 446.
Package xcolor Warning: Incompatible color definition on input line 434. Package xcolor Warning: Incompatible color definition on input line 446.
Package xcolor Warning: Incompatible color definition on input line 434. Overfull \vbox (0.9326pt too high) detected at line 446
[]
<exercice_fr_files/figure-latex/deuxieme barplot-1.pdf, id=128, 411.5375pt x 21
Package xcolor Warning: Incompatible color definition on input line 446.
[5 <./exercice_fr_files/figure-latex/table contingence-1.pdf>]
Package xcolor Warning: Incompatible color definition on input line 446.
Package xcolor Warning: Incompatible color definition on input line 446.
<exercice_fr_files/figure-latex/deuxieme barplot-1.pdf, id=169, 411.5375pt x 21
9.82124pt> 9.82124pt>
File: exercice_fr_files/figure-latex/deuxieme barplot-1.pdf Graphic file (type File: exercice_fr_files/figure-latex/deuxieme barplot-1.pdf Graphic file (type
pdf) pdf)
<use exercice_fr_files/figure-latex/deuxieme barplot-1.pdf> <use exercice_fr_files/figure-latex/deuxieme barplot-1.pdf>
Package pdftex.def Info: exercice_fr_files/figure-latex/deuxieme barplot-1.pdf Package pdftex.def Info: exercice_fr_files/figure-latex/deuxieme barplot-1.pdf
used on input line 436. used on input line 448.
(pdftex.def) Requested size: 411.5365pt x 219.8207pt. (pdftex.def) Requested size: 411.5365pt x 219.8207pt.
[5 <./exercice_fr_files/figure-latex/table contingence-1.pdf>]
Package xcolor Warning: Incompatible color definition on input line 440. Package xcolor Warning: Incompatible color definition on input line 452.
Package xcolor Warning: Incompatible color definition on input line 444. Package xcolor Warning: Incompatible color definition on input line 456.
Package xcolor Warning: Incompatible color definition on input line 444. Package xcolor Warning: Incompatible color definition on input line 456.
Package xcolor Warning: Incompatible color definition on input line 449. Package xcolor Warning: Incompatible color definition on input line 461.
Package xcolor Warning: Incompatible color definition on input line 456. Package xcolor Warning: Incompatible color definition on input line 468.
Package xcolor Warning: Incompatible color definition on input line 456. Package xcolor Warning: Incompatible color definition on input line 468.
Package xcolor Warning: Incompatible color definition on input line 465. Package xcolor Warning: Incompatible color definition on input line 478.
Package xcolor Warning: Incompatible color definition on input line 472. Package xcolor Warning: Incompatible color definition on input line 485.
Package xcolor Warning: Incompatible color definition on input line 472. Package xcolor Warning: Incompatible color definition on input line 485.
Package xcolor Warning: Incompatible color definition on input line 498. Package xcolor Warning: Incompatible color definition on input line 491.
[6 <./exercice_fr_files/figure-latex/deuxieme barplot-1.pdf>]
Package xcolor Warning: Incompatible color definition on input line 502. Package xcolor Warning: Incompatible color definition on input line 495.
Package xcolor Warning: Incompatible color definition on input line 495.
Package xcolor Warning: Incompatible color definition on input line 500.
Package xcolor Warning: Incompatible color definition on input line 502.
Package xcolor Warning: Incompatible color definition on input line 507.
Package xcolor Warning: Incompatible color definition on input line 509.
Package xcolor Warning: Incompatible color definition on input line 507.
Package xcolor Warning: Incompatible color definition on input line 513.
[6 <./exercice_fr_files/figure-latex/deuxieme barplot-1.pdf>]
Package xcolor Warning: Incompatible color definition on input line 517. Package xcolor Warning: Incompatible color definition on input line 517.
...@@ -1034,7 +1056,16 @@ Package xcolor Warning: Incompatible color definition on input line 517. ...@@ -1034,7 +1056,16 @@ Package xcolor Warning: Incompatible color definition on input line 517.
Package xcolor Warning: Incompatible color definition on input line 517. Package xcolor Warning: Incompatible color definition on input line 517.
Package xcolor Warning: Incompatible color definition on input line 533. Package xcolor Warning: Incompatible color definition on input line 522.
Package xcolor Warning: Incompatible color definition on input line 529.
Package xcolor Warning: Incompatible color definition on input line 529.
Package xcolor Warning: Incompatible color definition on input line 535.
Package xcolor Warning: Incompatible color definition on input line 539. Package xcolor Warning: Incompatible color definition on input line 539.
...@@ -1043,42 +1074,183 @@ Package xcolor Warning: Incompatible color definition on input line 539. ...@@ -1043,42 +1074,183 @@ Package xcolor Warning: Incompatible color definition on input line 539.
Package xcolor Warning: Incompatible color definition on input line 539. Package xcolor Warning: Incompatible color definition on input line 539.
Package xcolor Warning: Incompatible color definition on input line 558. Package xcolor Warning: Incompatible color definition on input line 544.
Package xcolor Warning: Incompatible color definition on input line 566. Package xcolor Warning: Incompatible color definition on input line 551.
Package xcolor Warning: Incompatible color definition on input line 551.
Package xcolor Warning: Incompatible color definition on input line 557.
Package xcolor Warning: Incompatible color definition on input line 561.
Package xcolor Warning: Incompatible color definition on input line 561.
Package xcolor Warning: Incompatible color definition on input line 566. Package xcolor Warning: Incompatible color definition on input line 566.
Package xcolor Warning: Incompatible color definition on input line 573.
Package xcolor Warning: Incompatible color definition on input line 573.
Package xcolor Warning: Incompatible color definition on input line 579.
Package xcolor Warning: Incompatible color definition on input line 583.
Package xcolor Warning: Incompatible color definition on input line 583.
Package xcolor Warning: Incompatible color definition on input line 588.
Package xcolor Warning: Incompatible color definition on input line 595.
Package xcolor Warning: Incompatible color definition on input line 595.
Package xcolor Warning: Incompatible color definition on input line 601.
Package xcolor Warning: Incompatible color definition on input line 605.
Package xcolor Warning: Incompatible color definition on input line 605.
Package xcolor Warning: Incompatible color definition on input line 610.
Package xcolor Warning: Incompatible color definition on input line 617.
Package xcolor Warning: Incompatible color definition on input line 617.
Package xcolor Warning: Incompatible color definition on input line 617.
[7] [7]
Package xcolor Warning: Incompatible color definition on input line 598. Package xcolor Warning: Incompatible color definition on input line 617.
Package xcolor Warning: Incompatible color definition on input line 617.
Package xcolor Warning: Incompatible color definition on input line 623.
Package xcolor Warning: Incompatible color definition on input line 627.
Package xcolor Warning: Incompatible color definition on input line 627.
Package xcolor Warning: Incompatible color definition on input line 631.
Package xcolor Warning: Incompatible color definition on input line 638.
Package xcolor Warning: Incompatible color definition on input line 638.
Package xcolor Warning: Incompatible color definition on input line 644.
Package xcolor Warning: Incompatible color definition on input line 648.
Package xcolor Warning: Incompatible color definition on input line 648.
Package xcolor Warning: Incompatible color definition on input line 652.
Package xcolor Warning: Incompatible color definition on input line 659.
Package xcolor Warning: Incompatible color definition on input line 604.
Package xcolor Warning: Incompatible color definition on input line 659.
Package xcolor Warning: Incompatible color definition on input line 604.
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 623. Package hyperref Warning: Difference (2) between bookmark levels is greater
(hyperref) than one, level fixed on input line 677.
Package xcolor Warning: Incompatible color definition on input line 685.
Package xcolor Warning: Incompatible color definition on input line 689.
Package xcolor Warning: Incompatible color definition on input line 689.
Package xcolor Warning: Incompatible color definition on input line 696.
Package xcolor Warning: Incompatible color definition on input line 704.
Package xcolor Warning: Incompatible color definition on input line 704.
[8] [8]
Package atveryend Info: Empty hook `AfterLastShipout' on input line 623.
Package xcolor Warning: Incompatible color definition on input line 720.
Package xcolor Warning: Incompatible color definition on input line 726.
Package xcolor Warning: Incompatible color definition on input line 726.
Package xcolor Warning: Incompatible color definition on input line 745.
Package xcolor Warning: Incompatible color definition on input line 754.
Package xcolor Warning: Incompatible color definition on input line 754.
[9]
Package xcolor Warning: Incompatible color definition on input line 786.
Package xcolor Warning: Incompatible color definition on input line 792.
Package xcolor Warning: Incompatible color definition on input line 792.
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 816.
[10]
Package atveryend Info: Empty hook `AfterLastShipout' on input line 816.
(./exercice_fr.aux) (./exercice_fr.aux)
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 623. Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 816.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 623. Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 816.
Package rerunfilecheck Info: File `exercice_fr.out' has not changed. Package rerunfilecheck Info: File `exercice_fr.out' has not changed.
(rerunfilecheck) Checksum: C352FFB35B1EC2FC22964352551A6C9A;4549. (rerunfilecheck) Checksum: AA0EB80DB2301816D62E873CDC0D574F;6382.
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 623. Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 816.
) )
Here is how much of TeX's memory you used: Here is how much of TeX's memory you used:
14750 strings out of 492616 14775 strings out of 492616
214645 string characters out of 6129481 215137 string characters out of 6129481
340591 words of memory out of 5000000 342038 words of memory out of 5000000
18375 multiletter control sequences out of 15000+600000 18389 multiletter control sequences out of 15000+600000
52237 words of font info for 72 fonts, out of 8000000 for 9000 52320 words of font info for 73 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191 1141 hyphenation exceptions out of 8191
32i,9n,38p,1190b,455s stack positions out of 5000i,500n,10000p,200000b,80000s 32i,9n,38p,974b,457s stack positions out of 5000i,500n,10000p,200000b,80000s
{/usr/local/texlive/2019/texmf-dist/fonts/enc/dvips/lm/lm-ec.enc}{/usr/local/ {/usr/local/texlive/2019/texmf-dist/fonts/enc/dvips/lm/lm-ec.enc}{/usr/local/
texlive/2019/texmf-dist/fonts/enc/dvips/lm/lm-ts1.enc}</usr/local/texlive/2019/ texlive/2019/texmf-dist/fonts/enc/dvips/lm/lm-ts1.enc}</usr/local/texlive/2019/
texmf-dist/fonts/type1/public/lm/lmbx10.pfb></usr/local/texlive/2019/texmf-dist texmf-dist/fonts/type1/public/lm/lmbx10.pfb></usr/local/texlive/2019/texmf-dist
...@@ -1088,10 +1260,10 @@ m/lmr12.pfb></usr/local/texlive/2019/texmf-dist/fonts/type1/public/lm/lmr17.pfb ...@@ -1088,10 +1260,10 @@ m/lmr12.pfb></usr/local/texlive/2019/texmf-dist/fonts/type1/public/lm/lmr17.pfb
></usr/local/texlive/2019/texmf-dist/fonts/type1/public/lm/lmtk10.pfb></usr/loc ></usr/local/texlive/2019/texmf-dist/fonts/type1/public/lm/lmtk10.pfb></usr/loc
al/texlive/2019/texmf-dist/fonts/type1/public/lm/lmtt10.pfb></usr/local/texlive al/texlive/2019/texmf-dist/fonts/type1/public/lm/lmtt10.pfb></usr/local/texlive
/2019/texmf-dist/fonts/type1/public/lm/lmtti10.pfb> /2019/texmf-dist/fonts/type1/public/lm/lmtti10.pfb>
Output written on exercice_fr.pdf (8 pages, 245114 bytes). Output written on exercice_fr.pdf (10 pages, 248764 bytes).
PDF statistics: PDF statistics:
200 PDF objects out of 1000 (max. 8388607) 241 PDF objects out of 1000 (max. 8388607)
168 compressed objects within 2 object streams 206 compressed objects within 3 object streams
28 named destinations out of 1000 (max. 500000) 37 named destinations out of 1000 (max. 500000)
10413 words of extra memory for PDF output out of 12000 (max. 10000000) 10469 words of extra memory for PDF output out of 12000 (max. 10000000)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment