Skip to content
Snippets Groups Projects
Commit ee57dd24 authored by LITIERE MALRIC's avatar LITIERE MALRIC
Browse files

re modif rpolt3

parent b3584400
Branches
No related merge requests found
......@@ -38,7 +38,7 @@ for i in 1 2 3 4 5
for i in 1 2 3 4 5
do
for taille in 250000 500000 1000000 2000000 4000000 8000000 16000000
for taille in 250000 500000 1000000 2000000 4000000 8000000 16000000
do
for typeTableau in 'aleatoire' 'range' 'inverse' 'constant' 'middle'
do
......
......@@ -13,25 +13,25 @@ bulle <- subset(df, algo == "bulle" )
#temps
ggplot(fusion, aes(x = taille, y = temps, color = typeTableau)) +
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test tri fusion du temps en fonction de la taille",x="Taille",y="Temps", color = "Type tableau")+
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test fusion : temps en fonction de taille",x="Taille",y="Temps", color = "Type tableau")+
theme_fivethirtyeight()+theme(axis.title=element_text())
ggsave("tab_fusion2.png")
ggplot(insert, aes(x = taille, y = temps, color = typeTableau)) +
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test tri insertion du temps en fonction de la taille",x="Taille",y="Temps", color = "Type tableau")+
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test insert : temps en fonction de taille",x="Taille",y="Temps", color = "Type tableau")+
theme_fivethirtyeight()+theme(axis.title=element_text())
ggsave("tab_insert2.png")
ggplot(rapide, aes(x = taille, y = temps, color = typeTableau)) +
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test tri rapide du temps en fonction de la taille",x="Taille",y="Temps", color = "Type tableau")+
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test rapide : temps en fonction de taille",x="Taille",y="Temps", color = "Type tableau")+
theme_fivethirtyeight()+theme(axis.title=element_text())
ggsave("tab_rapide2.png")
ggplot(bulle, aes(x = taille, y = temps, color = typeTableau)) +
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test tri à bulle du temps en fonction de la taille",x="Taille",y="Temps", color = "Type tableau")+
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test bulle : temps en fonction de taille",x="Taille",y="Temps", color = "Type tableau")+
theme_fivethirtyeight()+theme(axis.title=element_text())
ggsave("tab_bulle2.png")
......@@ -40,19 +40,19 @@ ggsave("tab_bulle2.png")
#memoire
ggplot(fusion, aes(x = taille, y = mem, color = typeTableau)) +
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test tri fusion de la memoire en fonction de la taille",x="Taille",y="Temps", color = "Type tableau")+
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test fusion : mem en fonction de taille",x="Taille",y="Temps", color = "Type tableau")+
theme_fivethirtyeight()+theme(axis.title=element_text())
ggsave("tab_fusion2meme.png")
ggplot(insert, aes(x = taille, y = mem, color = typeTableau)) +
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test tri insertion de la memoire en fonction de la taille",x="Taille",y="Temps", color = "Type tableau")+
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test insert : mem en fonction de taille",x="Taille",y="Temps", color = "Type tableau")+
theme_fivethirtyeight()+theme(axis.title=element_text())
ggsave("tab_insert2meme.png")
ggplot(rapide, aes(x = taille, y = mem, color = typeTableau)) +
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test tri : mem en fonction de taille",x="Taille",y="Temps", color = "Type tableau")+
geom_smooth(size=1.5,alpha=0.8)+ geom_point()+ labs(title="Test rapide : mem en fonction de taille",x="Taille",y="Temps", color = "Type tableau")+
theme_fivethirtyeight()+theme(axis.title=element_text())
ggsave("tab_rapide2mem.png")
......
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