Cleaning up the software folder.
[pingpong.git] / plot_scripts / plot_ia_graph
diff --git a/plot_scripts/plot_ia_graph b/plot_scripts/plot_ia_graph
deleted file mode 100644 (file)
index 848f242..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-# Script to plot inter-arrival timestamp graphs for network traffic analysis
-#
-# by Rahmadi Trimananda (rahmadi.trimananda@uci.edu)
-# Programming Language Research Group @ University of California, Irvine
-# Fall 2017
-
-# ************ #
-# BASIC SETUP  #
-# ************ #
-#set terminal postscript landscape "Arial, 18"
-#set terminal postscript eps font 'Helvetica,20' enhanced color 
-set terminal pngcairo enhanced font 'Verdana,10'
-set autoscale
-unset key
-unset log
-unset label
-set xtics auto
-set ytics auto
-set xlabel "Packet Number"
-set ylabel "Time (seconds)"
-set xrange [:]
-set yrange [0:]
-
-# ***************** #
-# PER DEVICE SETUP  #
-# ***************** #
-# WeMo switch
-#set output '../result_ia/wemo_switch_incoming.ps'
-#set output '../result_ia/wemo_switch_incoming.eps'
-set output '../result_ia/wemo_switch_inter_arrival_incoming.png'
-set title "WeMo Switch Inter-Arrival Incoming Traffic"
-plot "../result_ia/wemo_switch_incoming.dat" using 1:2 with lines
-set output '../result_ia/wemo_switch_inter_arrival_outgoing.png'
-set title "WeMo Switch Inter-Arrival Outgoing Traffic"
-plot "../result_ia/wemo_switch_outgoing.dat" using 1:2 with lines
-