Index: doc/theses/mike_brooks_MMath/plots/ListCommon.py
===================================================================
--- doc/theses/mike_brooks_MMath/plots/ListCommon.py	(revision 6c58850ceae3b910f371a05435f5d01aede1c834)
+++ doc/theses/mike_brooks_MMath/plots/ListCommon.py	(revision 78bc398830904397dee9e2540d256e32effc24ac)
@@ -9,12 +9,5 @@
 from subprocess import Popen, PIPE
 
-def getSingleResults(infileLocal, *,
-    tgtMovement = 'all',
-    tgtPolarity = 'all',
-    tgtAccessor = 'all',
-    tgtInterleave = 0.0 ):
-
-    infile = os.path.dirname(os.path.abspath(__file__)) + '/../benchmarks/list/' + infileLocal
-
+def getDataset( infile ):
     # grep to remove lines that end in comma; these were error runs
     with Popen("grep '[^,]$' " + infile, shell=True, stdout=PIPE) as process:
@@ -75,4 +68,16 @@
         timings.loc[peerGroup.index, 'BaselineIntrlOpDurNs'] = baselineDur
     timings['OpDurRelIntrl'] = timings['mean_op_dur_ns'] / timings['BaselineIntrlOpDurNs']
+
+    return timings
+
+def getSingleResults(infileLocal, *,
+    tgtMovement = 'all',
+    tgtPolarity = 'all',
+    tgtAccessor = 'all',
+    tgtInterleave = 0.0 ):
+
+    infile = os.path.dirname(os.path.abspath(__file__)) + '/../benchmarks/list/' + infileLocal
+
+    timings = getDataset( infile )
 
     movements = timings['movement'].unique()
Index: doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf.gp	(revision 6c58850ceae3b910f371a05435f5d01aede1c834)
+++ doc/theses/mike_brooks_MMath/plots/list-zoomout-noshuf.gp	(revision 78bc398830904397dee9e2540d256e32effc24ac)
@@ -18,7 +18,7 @@
 
 plot INDIR."/plot-list-zoomout-noshuf.dat" \
-       i 2 using 1:2 title "STL" with points lt rgb "forest-green"	pt  3 ps 1 lw 1, \
+       i 1 using 1:2 title "STL" with points lt rgb "forest-green"	pt  3 ps 1 lw 1, \
     '' i 0 using 1:2 title "intrusives" with points lt rgb "black"	pt  1 ps 1 lw 1, \
-    '' i 1 using 1:2 notitle with points lt rgb "black"	    pt  1 ps 1 lw 1, \
+    '' i 2 using 1:2 notitle with points lt rgb "black"	    pt  1 ps 1 lw 1, \
     '' i 3 using 1:2 notitle with points lt rgb "black"	pt  1 ps 1 lw 1, \
     '' i 4 using 1:2 notitle with points lt rgb "black"	pt  1  ps 1 lw 1
Index: doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf.gp
===================================================================
--- doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf.gp	(revision 6c58850ceae3b910f371a05435f5d01aede1c834)
+++ doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf.gp	(revision 78bc398830904397dee9e2540d256e32effc24ac)
@@ -18,7 +18,7 @@
 
 plot INDIR."/plot-list-zoomout-shuf.dat" \
-       i 2 using 1:2 title "STL" with points lt rgb "forest-green"	pt  3 ps 1 lw 1, \
+       i 1 using 1:2 title "STL" with points lt rgb "forest-green"	pt  3 ps 1 lw 1, \
     '' i 0 using 1:2 title "intrusives" with points lt rgb "black"	pt  1 ps 1 lw 1, \
-    '' i 1 using 1:2 notitle with points lt rgb "black"	    pt  1 ps 1 lw 1, \
+    '' i 2 using 1:2 notitle with points lt rgb "black"	    pt  1 ps 1 lw 1, \
     '' i 3 using 1:2 notitle with points lt rgb "black"	pt  1 ps 1 lw 1, \
     '' i 4 using 1:2 notitle with points lt rgb "black"	pt  1  ps 1 lw 1
