Skip to content
Snippets Groups Projects
Commit a2390ba2 authored by Mickael Da Silva's avatar Mickael Da Silva
Browse files

Graphes pour analyse prealable OK

parent 91fc8b5c
No related merge requests found
src/Images/graphe_memoire.png

184 KiB | W: | H:

src/Images/graphe_memoire.png

184 KiB | W: | H:

src/Images/graphe_memoire.png
src/Images/graphe_memoire.png
src/Images/graphe_memoire.png
src/Images/graphe_memoire.png
  • 2-up
  • Swipe
  • Onion skin
src/Images/graphe_temps.png

179 KiB | W: | H:

src/Images/graphe_temps.png

178 KiB | W: | H:

src/Images/graphe_temps.png
src/Images/graphe_temps.png
src/Images/graphe_temps.png
src/Images/graphe_temps.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -2,12 +2,12 @@ library(ggplot2) ...@@ -2,12 +2,12 @@ library(ggplot2)
perf <- read.table("perf.dat", header = TRUE) perf <- read.table("perf.dat", header = TRUE)
ggplot(perf, aes(x=taille, y=temps, group=tri, colour=as.character(tri))) + ggplot(perf, aes(x=taille, y=temps, group=tri, colour=tri)) +
geom_point() + geom_smooth() + facet_grid(tri~sort) + ggtitle("Graphe des temps d'exécution") geom_point() + geom_smooth() + facet_grid(tri~sort) + ggtitle("Graphe des temps d'exécution")
ggsave("../Images/graphe_temps.png") ggsave("../Images/graphe_temps.png")
ggplot(perf, aes(x=taille, y=mem, group=tri, colour=as.character(tri))) + ggplot(perf, aes(x=taille, y=mem, group=tri, colour=tri)) +
geom_point() + geom_smooth() + facet_grid(tri~sort) + ggtitle("Graphe des consommations mémoire") geom_point() + geom_smooth() + facet_grid(tri~sort) + ggtitle("Graphe des consommations mémoire")
ggsave("../Images/graphe_memoire.png") ggsave("../Images/graphe_memoire.png")
\ No newline at end of file
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