-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c225cd
commit de00f9b
Showing
27 changed files
with
9,009 additions
and
3,917 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,26 @@ | ||
base_path = 'data/' | ||
file_base = 'window_quality_performance_diff_qual_n7_s7_50_80' | ||
#file_base = 'window_quality_performance_diff_qual_n7_s7_20_100' | ||
#file_base = 'window_quality_performance_diff_perce_n7_s7_50_89' | ||
#file_base = 'window_quality_performance_diff_perce_n7_s7_20_100' | ||
# set terminal png enhanced | ||
file_bases = 'window_quality_performance_diff_qual_n7_s7_50_80 window_quality_performance_diff_qual_n7_s7_20_100 window_quality_performance_diff_perce_n7_s7_50_89 window_quality_performance_diff_perce_n7_s7_20_100' | ||
|
||
set terminal postscript eps color enhanced | ||
set key box top left inside Left samplen 1 | ||
set xtics autofreq 1 font ",20" | ||
set ytics autofreq 0.04 font ",20" | ||
set yrange [0.84:1] | ||
#set ytics 0.02 | ||
set size 1,1 | ||
set key box top left inside Left samplen 1 spacing 1.15 | ||
set key enhanced | ||
set key font ",24" | ||
set xtics autofreq 1 font ",26" | ||
set ytics autofreq 0.04 font ",26" | ||
set yrange [0.60:1] | ||
set size 1.2,1.2 | ||
set origin 0,0 | ||
set border 3 | ||
set ylabel "Metric Value" font ",22" | ||
set xlabel "Number Of Services" font ",22" | ||
# set grid | ||
set ylabel "Metric Value" font ",28" offset -2 | ||
set xlabel "Number Of Services" font ",28" offset -1 | ||
set tics nomirror | ||
set key bottom right | ||
set key enhanced | ||
#set key outside | ||
|
||
|
||
# Optional: Uncomment for multiplot layout | ||
# set multiplot layout 2,3 rowsfirst scale 1.1,0.9 | ||
|
||
do for [i=3:7] { | ||
set output sprintf('%s_n%d.eps', file_base,i) | ||
set label sprintf("%d Vert", i) at graph 0.5, graph -0.3 center | ||
plot for [j=1:i] base_path.sprintf('%s_n%d_w%d.dat',file_base, i, j) using 1:2 title sprintf(' W Size %d', j) with linespoints pointtype (j) | ||
set output | ||
unset label | ||
set lmargin 15 | ||
do for [file in file_bases] { | ||
do for [i=3:7] { | ||
set output sprintf('%s_n%d.eps', file, i) | ||
plot for [j=1:i] base_path.sprintf('%s_n%d_w%d.dat', file, i, j) using 1:2 title sprintf('W Size %d', j) with linespoints pointtype (j) pointsize 3 | ||
set output | ||
} | ||
} | ||
|
||
# Optional: Uncomment if using multiplot | ||
# unset multiplot | ||
|
Oops, something went wrong.