summaryrefslogtreecommitdiff
path: root/code/perflow/flow_interarrival_udp.R
blob: 8a080032dde7259b9b1b8bd9a5cfe6a469d440c9 (plain)
1
2
3
4
5
6
7
8
udp_times = read.csv(file="../../data/perflow/udp_arrivel_time.csv", header=TRUE, sep=",")

udp_cdf = ecdf(udp_times$time)

plot(udp_cdf, col="black", main="CDF of inter-arrival times of UDP flows", xlab="time (s)", ylab="probability", xlim=c(0,0.002), ylim=c(0,1))
dev.print(png, '../../plots/perflow/interarrival_udp.png', width=500)

#quit()