diff --git a/module2/exo3/exercice_fr.html b/module2/exo3/exercice_fr.html new file mode 100644 index 0000000000000000000000000000000000000000..54cfd088ae3229752864aa2f033a1f50c772f23c --- /dev/null +++ b/module2/exo3/exercice_fr.html @@ -0,0 +1,414 @@ + + + + + + + + + + + + + + +Réaliser un affichage graphique + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +
+

Création du plot

+
plot(values, type = "l",col="blue", xlim=c(1,100),ylim = c(1,25),ylab = "", xlab = "")
+
+
+

Création de l’histogramme

+
hist(values, xlim = c(0,25), ylim = c(0,25), col = "blue", main = "", xlab = "",ylab = "")
+
+ + + + +
+ + + + + + + + + + + + + + +