summaryrefslogtreecommitdiff
path: root/code/perflow/flow_interarrival_all.R
diff options
context:
space:
mode:
Diffstat (limited to 'code/perflow/flow_interarrival_all.R')
-rw-r--r--code/perflow/flow_interarrival_all.R10
1 files changed, 10 insertions, 0 deletions
diff --git a/code/perflow/flow_interarrival_all.R b/code/perflow/flow_interarrival_all.R
new file mode 100644
index 0000000..a10e7a2
--- /dev/null
+++ b/code/perflow/flow_interarrival_all.R
@@ -0,0 +1,10 @@
+all_times = read.csv(file="../../data/perflow/all_arrivel_time.csv", header=TRUE, sep=",")
+udp_times = read.csv(file="../../data/perflow/udp_arrivel_time.csv", header=TRUE, sep=",")
+
+all_cdf = ecdf(all_times$time)
+udp_cdf = ecdf(udp_times$time)
+
+plot(all_cdf, col="red", main="CDF of inter-arrival times of ALL flows", xlab="time (s)", ylab="probability", xlim=c(0,0.1), ylim=c(0,1))
+dev.print(png, '../../plots/perflow/interarrival_all.png', width=500)
+
+#quit()