tfcache-comparison
Changes
analysis/throughput.R 7(+7 -0)
Details
analysis/throughput.R 7(+7 -0)
diff --git a/analysis/throughput.R b/analysis/throughput.R
index d0f00bf..62d3113 100644
--- a/analysis/throughput.R
+++ b/analysis/throughput.R
@@ -33,6 +33,13 @@ for (iter_application in iter_applications) {
}
}
+temp <- aggregate
+temp[4:13] <- NULL
+temp[4] <- NULL
+temp[5:8] <- NULL
+print("")
+reshape(temp, timevar = "users", idvar = c("application", "version"), direction = "wide")
+
plot <- ggplot(aggregate, aes(x = factor(users), y = median_percentage, fill = version)) +
geom_bar(position = "dodge", stat = "identity") +
geom_errorbar(aes(ymin = min_percentage, ymax = max_percentage), width = .2, position = position_dodge(.9)) +