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