tfcache-comparison
Changes
analysis/throughput.R 4(+2 -2)
Details
analysis/throughput.R 4(+2 -2)
diff --git a/analysis/throughput.R b/analysis/throughput.R
index 62d3113..6fc9a1b 100644
--- a/analysis/throughput.R
+++ b/analysis/throughput.R
@@ -3,7 +3,7 @@ library(ggforce)
requests <- read.csv2("../applications/output/requests-handled.csv", header=TRUE, sep=",", dec=".")
-print("median")
+print("throughput -> aggregating")
aggregate <- aggregate(formula = requests~application+version+users+execution, data = requests, FUN = length)
names(aggregate)[names(aggregate) == "requests"] <- "time"
@@ -37,7 +37,7 @@ temp <- aggregate
temp[4:13] <- NULL
temp[4] <- NULL
temp[5:8] <- NULL
-print("")
+print("throughput median values")
reshape(temp, timevar = "users", idvar = c("application", "version"), direction = "wide")
plot <- ggplot(aggregate, aes(x = factor(users), y = median_percentage, fill = version)) +