Clément Krebs 5 年 前
コミット
cf46df9e0d
1 ファイル変更2 行追加2 行削除
  1. 2 2
      plot_approfondie.r

+ 2 - 2
plot_approfondie.r

@@ -8,9 +8,9 @@ for (operation in listOPs) {
         ggplot(d[d$Operation == operation ,], aes(x=n, y=Temps, color=Structure)) + geom_smooth() +
             ggtitle(operation) + xlab("Nombre d'éléments") + ylab("Temps d'exécution") +
             theme(plot.title = element_text(hjust = 0.5)) + facet_grid(Structure ~ Operation)
-        ggsave(paste(operation, "_tps_appro2.png", sep=""))
+        ggsave(paste(operation, "_tps_appro.png", sep=""))
         ggplot(d[d$Operation == operation ,], aes(x=n, y=Mem, color=Structure)) + geom_smooth() +
             ggtitle(operation) + xlab("Nombre d'éléments") + ylab("Consommation mémoire") +
             theme(plot.title = element_text(hjust = 0.5)) + facet_grid(Structure ~ Operation)
-        ggsave(paste(operation, "_mem_appro2.png", sep=""))
+        ggsave(paste(operation, "_mem_appro.png", sep=""))
 }