1 ## Usage: launch R, and then: source("script.r")
3 ## save, and chane default options
4 osp <- options("scipen")
7 ## load dataset (variable is "ds")
10 ## extract data for plain algorithms, in real mode
11 #ds.base <- subset(ds, Mode == "R" & grepl("[lt]_plain", Algo))
13 ## extract data for one experiment
15 # Mode == "R" & Distrib == 1 & Ratio == "1:1" &
16 # Platform == "cluster" & Size == 16 & Topo == "line")
20 draw <- function(dset = ds,
24 draw_platform = "cluster",
25 draw_topo = "hcube") {
27 ## extract desired data
29 Mode == draw_mode & Distrib == draw_distrib &
31 Platform == draw_platform & Topo == draw_topo)
33 ## reorder lines (first "plain", then "bookkeeping")
34 dset <- rbind(subset(dset, grepl("plain", Algo)),
35 subset(dset, grepl("bookkeeping", Algo)))
36 dset <- dset[order(dset$Size), ]
38 ## finally, add an "Index" attribute(, for further processing
39 dset <- cbind(dset, Index=seq(1, length(dset$Size))) # FIXME
43 ## save the graphical parameters
44 p <- par(no.readonly=TRUE)
46 par(mar=c(13, 4, 4, 4) + 0.1, # change margins
49 par(las=3) # always draw labels vertically
51 ## compute the time range: 0..max+20%
52 time_range <- c(0, range(dset$Conv_max)[2] * 1.2)
54 ## first draw the bars
55 barplot(dset$Conv_max, axes=FALSE, col="red",
58 barplot(dset$Conv_avg, axes=FALSE, col="green",
60 barplot(dset$Idle_avg, axes=FALSE, col="blue",
63 ## draw the time axis on the left
65 mtext("Simulated time (s)", side=2, line=2.5)
67 title(xlab="Algorithms")
69 ## compute the data range
70 x_data_range <- c(0.6, length(dset$Algo) + 0.4)
71 data_range <- c(0, range(dset$Data_amnt)[2] * 1.04)
73 ## draw the data amnt line graphs
74 for (alg in unique(dset$Algo)) {
76 dset.da <- subset(dset, Algo == alg)
77 ## start a new graph, but drawn on the same device
79 plot(dset.da$Index, dset.da$Data_amnt, axes=FALSE, xlab="", type="b",
81 yaxs="i", ylim=data_range)
84 ## draw the data amnt axis on the right
86 mtext("Data amount (relative)", side=4, line=2.5)
89 t <- paste0(dset$Mode[1], dset$Distrib[1], " / ",
91 dset$Platform[1], " / ", dset$Topo[1])
94 ## restore the graphical parameters
100 draw2 <- function(dset = ds,
104 draw_platform = "cluster",
105 draw_topo = "hcube") {
107 ## extract desired data
109 Mode == draw_mode & Distrib == draw_distrib &
110 Ratio == draw_ratio &
111 Platform == draw_platform & Topo == draw_topo)
113 ## reorder lines (first "plain", then "bookkeeping")
114 dset <- rbind(subset(dset, grepl("plain", Algo)),
115 subset(dset, grepl("bookkeeping", Algo)))
116 dset <- dset[order(dset$Size), ]
118 ## keep only useful data
119 dset.long <- data.frame(Algo=dset$Algo, Size=dset$Size,
120 Idle_avg=dset$Idle_avg,
121 Conv_avg=dset$Conv_avg,
122 Conv_max=dset$Conv_max)
124 ## reshape data -> wide
125 dset.wide <- reshape(dset.long, direction="wide",
126 idvar="Algo", timevar="Size")
129 rownames(dset.wide) <- sub("bookkeeping", "virtual", dset.wide$Algo)
130 #colnames(dset.wide) <- sub("^[^.]*\\.", "", colnames(dset.wide))
132 ## remove first column (aka "Algo")
133 dset.mat <- as.matrix(dset.wide[-1])
135 dset.plot <- dset.mat[, c(FALSE,FALSE,TRUE)]
136 barplot(dset.plot, beside=TRUE,
137 names.arg=sub("^[^.]*\\.", "", colnames(dset.plot)),
138 col=rainbow(nrow(dset.mat), s=.5))
140 dset.plot <- dset.mat[, c(FALSE,TRUE,FALSE)]
141 barplot(dset.plot, beside=TRUE,
142 axes=FALSE, axisnames=FALSE, add=TRUE,
144 args.legend=list(x="topleft", inset=c(.02,0), title="Algorithms"),
145 col=rainbow(nrow(dset.mat)))
147 dset.plot <- dset.mat[, c(TRUE,FALSE,FALSE)]
148 barplot(dset.plot, beside=TRUE,
149 axes=FALSE, axisnames=FALSE, add=TRUE,
150 col=rainbow(nrow(dset.mat), v=.5))
152 ## finally, set titles
153 t <- paste0(dset$Mode[1], dset$Distrib[1], " / ",
154 dset$Ratio[1], " / ",
155 dset$Platform[1], " / ", dset$Topo[1])
156 title(xlab="Platform size",
157 ylab="Simulated time (s)",
162 msg <- function(text,
165 readline("Press <Enter> to continue\n")
170 msg("First test, with algorithms \"plain\"...", wait = FALSE);
171 draw(subset(ds, grepl("[lt]_plain", Algo)), draw_distrib="N")
173 msg("... with draw2()...")
174 draw2(subset(ds, grepl("[lt]_plain", Algo)), draw_distrib="N")
176 msg("Second test, with algorithms \"bookkeeping\"...");
177 draw(subset(ds, grepl("[lt]_bookkeeping", Algo)), draw_distrib="N")
179 msg("... with draw2()...")
180 draw2(subset(ds, grepl("[lt]_bookkeeping", Algo)), draw_distrib="N")
182 msg("Third test, with all algorithms...");
183 draw(draw_distrib="N")
185 msg("... with draw2()...")
186 draw2(draw_distrib="N")
189 system("mkdir -pv graphs")
190 for (m in c("R", "I")) {
191 for (d in c("1", "N")) {
192 for (r in c("10:1", "1:1", "1:10")) {
193 for (t in c("line", "torus", "hcube")) {
194 for (p in c("grid", "cluster")) {
195 message(sprintf(">>> Drawing: %s%s / %s / %s / %s", m, d, r, p, t))
196 pdf(file=sprintf("graphs/%s%s-%s-%s-%s.pdf", m, d, r, p, t))
197 draw2(#subset(ds, grepl("[lt]_plain", Algo)),
198 draw_mode=m, draw_distrib=d, draw_ratio=r,
199 draw_topo=t, draw_platform=p)
207 ## restore default options