diff --git a/module3/exo3/exercice_fr.Rmd b/module3/exo3/exercice_fr.Rmd index 4ce89665c41ad55bdbbd4f1c54de561b32867b92..0a78d12d9334ac9b4c7358656dc03637c3dd7ef4 100644 --- a/module3/exo3/exercice_fr.Rmd +++ b/module3/exo3/exercice_fr.Rmd @@ -213,7 +213,8 @@ labs(x = "Date", scale_x_date(date_labels = "%m-%Y", date_breaks = "6 months") + scale_y_continuous(labels = label_number()) + theme_bw() + -theme(axis.title = element_text(color = "black", face = "bold")) +theme(axis.title = element_text(color = "black", face = "bold"), + legend.position = "bottom") ``` @@ -228,7 +229,8 @@ labs(x = "Date", scale_x_date(date_labels = "%m-%Y", date_breaks = "6 months") + scale_y_log10(labels = label_number()) + theme_bw() + -theme(axis.title = element_text(color = "black", face = "bold")) +theme(axis.title = element_text(color = "black", face = "bold"), + legend.position = "bottom") ```