Cleaning up the software folder.
[pingpong.git] / plot_scripts / plot_ts_graph_dlink_combined
diff --git a/plot_scripts/plot_ts_graph_dlink_combined b/plot_scripts/plot_ts_graph_dlink_combined
deleted file mode 100644 (file)
index 84b2439..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-# Script to plot time series graphs for network traffic analysis
-#
-# by Rahmadi Trimananda (rahmadi.trimananda@uci.edu)
-# Programming Language Research Group @ University of California, Irvine
-# Winter 2018
-
-# ************ #
-# BASIC SETUP  #
-# ************ #
-set terminal pngcairo enhanced font 'Verdana,10'
-set autoscale
-set key
-unset log
-unset label
-set xtics 50
-set xtics rotate by 60 right
-set ytics auto
-set xlabel "Packet Timestamp (hh:mm:ss)"
-set ylabel "Packet Size (bytes)"
-set xdata time
-set timefmt "%H:%M:%S"
-set xrange [:]
-set yrange [0:]
-
-# ***************** #
-# PER DEVICE SETUP  #
-# ***************** #
-# DLink switch local
-# wlan1 / eth0
-set output './result/dlink_switch_wlan_timestamp_local_incoming_combined.png'
-set title "DLink Switch Incoming Local Traffic (wlan1/eth0)"
-plot "./result/dlink_switch_wlan_local_incoming.dat" using 1:2 with lines title "wlan1", "./result/dlink_switch_eth_local_incoming.dat" using 1:2 with lines title "eth0", "./result/dlink_phone_wlan_local_outgoing.dat" using 1:2 with lines title "wlan1-phone-outgoing", "./result/dlink_phone_wlan_local_incoming.dat" using 1:2 with lines title "wlan1-phone-incoming"
-set output './result/dlink_switch_wlan_timestamp_local_outgoing_combined.png'
-set title "DLink Switch Outgoing Local Traffic (wlan1/eth0)"
-plot "./result/dlink_switch_wlan_local_outgoing.dat" using 1:2 with lines title "wlan1", "./result/dlink_switch_eth_local_outgoing.dat" using 1:2 with lines title "eth0", "./result/dlink_phone_wlan_local_outgoing.dat" using 1:2 with lines title "wlan1-phone-outgoing", "./result/dlink_phone_wlan_local_incoming.dat" using 1:2 with lines title "wlan1-phone-incoming"
-
-# DLink switch remote
-# wlan1
-set output './result/dlink_switch_wlan_timestamp_remote_incoming_combined.png'
-set title "DLink Switch Incoming Remote Traffic (wlan1/eth0)"
-plot "./result/dlink_switch_wlan_remote_incoming.dat" using 1:2 with lines title "wlan1", "./result/dlink_switch_eth_remote_incoming.dat" using 1:2 with lines title "eth0"
-set output './result/dlink_switch_wlan_timestamp_remote_outgoing_combined.png'
-set title "DLink Switch Outgoing Remote Traffic (wlan1/eth0)"
-plot "./result/dlink_switch_wlan_remote_outgoing.dat" using 1:2 with lines title "wlan1", "./result/dlink_switch_eth_remote_outgoing.dat" using 1:2 with lines title "eth0"