source: doc/theses/mike_brooks_MMath/plots/list-1ord.py@ 2581f1e

Last change on this file since 2581f1e was e8a7b66d, checked in by Michael Brooks <mlbrooks@…>, 3 weeks ago

switch list perf winner-loser plot to uniform treatment of all first-order effects; add discussion of key conclusion that fx is not your big-ticket item

  • Property mode set to 100644
File size: 781 bytes
Line 
1import pandas as pd
2import numpy as np
3import os
4import sys
5
6sys.path.insert(0, os.path.dirname(__file__))
7from ListCommon import *
8
9physicals = ['machine', 'SizeZone']
10ops = ['movement', 'polarity', 'accessor']
11fx = ['fx']
12bkgnd = ['NumNodes'] # never drilled/marginalized, always conditioned
13
14assert( set( explanations )
15 - set( ['InterleaveFrac'] ) # unused and always zero
16 ==
17 set(physicals) | set(ops) | set(fx) | set(bkgnd) )
18
19printHistos(
20 tgtMovement = 'all',
21 tgtPolarity = 'all',
22 tgtAccessor = 'all',
23 drillOn=physicals )
24
25printHistos(
26 tgtMovement = 'all',
27 tgtPolarity = 'all',
28 tgtAccessor = 'all',
29 drillOn=ops )
30
31printHistos(
32 tgtMovement = 'all',
33 tgtPolarity = 'all',
34 tgtAccessor = 'all',
35 drillOn=fx )
Note: See TracBrowser for help on using the repository browser.