From: Razvan Deaconescu Date: Fri, 6 Aug 2010 14:16:01 +0000 (+0300) Subject: ConfigFiles: fix image file names in scenario-pre-post.r X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=5b7499de1af8c55e7938acd0c730c11465153ac1;p=p2p-testing-infrastructure.git ConfigFiles: fix image file names in scenario-pre-post.r --- diff --git a/ConfigFiles/scenario-pre-post.r b/ConfigFiles/scenario-pre-post.r index c5a8a3f..9cb164e 100644 --- a/ConfigFiles/scenario-pre-post.r +++ b/ConfigFiles/scenario-pre-post.r @@ -31,7 +31,7 @@ scale_x_continuous("Percent", limits=c(0, 100), breaks=seq(0, 100, 10)) + scale_y_continuous("Download speed (Mbit/s)", limits=c(0, 8), breaks=seq(0, 8, 0.5)) + coord_cartesian() + scale_colour_manual("Legend") + -opts(title=paste(campaign_name, "Scenario-rd: a test swarm (1 Seeder, 1 Leecher), all peers have an 8 Mbit/s BW", sep="\n")) +opts(title=paste(campaign_name, "scenario-pre-post: a test swarm (1 Seeder, 1 Leecher), all peers have an 8 Mbit/s BW", sep="\n")) # plot data as an eps file postscript(paste(target_folder, "scenario-pre-post-dlspeed-percent.eps", sep="/")) @@ -39,7 +39,7 @@ print(p) dev.off() # plot data as an png file -png(paste(target_folder, "scenario-rd-dlspeed-percent.png", sep="/"), width = 1280, height = 800) +png(paste(target_folder, "scenario-pre-post-dlspeed-percent.png", sep="/"), width = 1280, height = 800) print(p) dev.off() @@ -53,14 +53,14 @@ scale_x_continuous("Time(s)") + scale_y_continuous("Download speed (Mbit/s)", limits=c(0, 8), breaks=seq(0, 8, 0.5)) + coord_cartesian() + scale_colour_manual("Legend") + -opts(title=paste(campaign_name, "Scenario-rd: a test swarm (1 Seeder, 1 Leecher), all peers have an 8 Mbit/s BW", sep="\n")) +opts(title=paste(campaign_name, "scenario-pre-post: a test swarm (1 Seeder, 1 Leecher), all peers have an 8 Mbit/s BW", sep="\n")) # plot data as an eps file -postscript(paste(target_folder, "scenario-rd-dlspeed-time.eps", sep="/")) +postscript(paste(target_folder, "scenario-pre-post-dlspeed-time.eps", sep="/")) print(p) dev.off() # plot data as an png file -png(paste(target_folder, "scenario-rd-dlspeed-time.png", sep="/"), width = 1280, height = 800) +png(paste(target_folder, "scenario-pre-post-dlspeed-time.png", sep="/"), width = 1280, height = 800) print(p) dev.off()