diff --git a/README.md b/README.md
index 74943f1d200dfffb21be61d945bd8a4bfd6ba581..a57e91794038e77509bf4e64f86ded13134d9995 100644
--- a/README.md
+++ b/README.md
@@ -84,11 +84,11 @@ Description de la démarche systématique et de l'espace d'exploration pour chaq
 
 ### Temps d'exécution
 
-![plot](graph_time.png)
+![plot](graphs/graph_time.png)
 
 ### Consommation mémoire
 
-![plot](graph_memoire.png)
+![plot](graphs/graph_memoire.png)
 
 ### Analyse des résultats préalables
 
diff --git a/graphs/graphique.R b/graphs/graphique.R
index 064d053770f00cfb104de8f25f7d81bc18f4376b..0fccf12f837875a51e755c7b0b23062dc56e1cf7 100755
--- a/graphs/graphique.R
+++ b/graphs/graphique.R
@@ -11,7 +11,7 @@ facet_grid(
 ) +
 ggsave("graph_time.png")
 
-ggplot(perf,aes(OpSize,Mem)) +
+ggplot(perf,aes(OpSize,Memory)) +
 geom_smooth() +
 facet_grid(
     rows = vars(Type),
diff --git a/shellscript/script.sh b/shellscript/script.sh
index 6690490aaa5270da58c039d60d9d9e8b5fd4d2d2..954816a1388e459e1857f4bf4d5a0a22ac107040 100755
--- a/shellscript/script.sh
+++ b/shellscript/script.sh
@@ -31,7 +31,7 @@ cd ../src
 /usr/bin/javac *.java
 
 
-echo -e "Size\tOperation\tOpSize\tType\tTime\tMem"
+echo -e "Size\tOperation\tOpSize\tType\tTime\tMemory"
 
 for size in ${structSize[*]}; do
     for operation in ${operationType[*]}; do