-for(pl in c("cluster", "grid")) {
- yy <- subset(xx, Platform == pl)
- points(yy$Size, yy$Conv_max, xlab="Size", ylab="Time")
+# compute the time range: 0..max+20%
+time_range <- c(0, range(xx$Conv_max)[2] * 1.2)
+
+# first draw the bars
+barplot(xx$Conv_max, axes=FALSE, col="red",
+ names=xx$Algo,
+ ylim=time_range)
+barplot(xx$Conv_avg, axes=FALSE, col="green",
+ add=TRUE)
+barplot(xx$Idle_avg, axes=FALSE, col="blue",
+ add=TRUE)
+
+# draw the time axis on the left
+axis(2, labels=TRUE)
+mtext("Time (s)", side=2, line=2.5)
+
+title(xlab="Algorithms")
+
+# start a new graph, but drawn on the same device
+
+# compute the data range
+x_data_range <- c(0.6, length(xx$Algo) + 0.4)
+data_range <- c(0, range(xx$Data_amnt)[2] * 1.04)
+
+# draw the data amnt line graph
+#par(new=TRUE)
+#plot(xx$Data_amnt, axes=FALSE, xlab="", type="b",
+# xlim=x_data_range,
+# yaxs="i", ylim=data_range)
+
+for (alg in unique(xx$Algo)) {
+ print(alg);
+ yy <- subset(xx, Algo == alg)
+ par(new=TRUE)
+ plot(yy$Index, yy$Data_amnt, axes=FALSE, xlab="", type="b",
+ xlim=x_data_range,
+ yaxs="i", ylim=data_range)