Skip to content
Snippets Groups Projects
perf.R 224 B
Newer Older
Mickael Da Silva's avatar
R
Mickael Da Silva committed
library(ggplot2)

perf <- read.table("perf.dat", header = TRUE)

ggplot(perf, aes(x=taille, y=temps, group=tri, colour=as.character(tri))) + geom_point() + 
geom_smooth() + ggtitle("Notre super graphe")

ggsave("graphe.png")