parser.add_option("","--bit-word", default=False, type="string", help="Provide the path for the bit-word pickle file")
parser.add_option("","--hist-ranks", default=False, type="string", help="Provide the path for the hist-ranks pickle file")
parser.add_option("","--cum-hist-signif", default=False, type="string", help="Provide the path for the cum-hist-signif pickle file")

# use glob.glob('filename') to extract files from opts.pickle_files

(opts,args)=parser.parse_args()

try: os.mkdir(opts.output_path)
except: pass


################   PLOTS   #############################################################

# Initializing the html output
InspiralUtils.message(opts, "Initialisation...")
opts = InspiralUtils.initialise(opts, __prog__, __version__)
fnameList = []
tagList = []
fig_num = 0
comments = ""

###########################################################################################
if opts.verbose:
  print 'Generating Plots...'

colorDIC = {'ann':'b', 'mvsc':'g', 'svm':'r', 'ovl':'c', 'combined':'m'}
labelDIC = {'ann':'ANN', 'mvsc':'MVSC', 'svm':'SVM', 'ovl':'OVL', 'combined':'MVC$_{\mathrm{max}}$'}

matplotlib.rc('text', usetex=True)
Exemplo n.º 2
0
                  type="string",
                  help="Provide the path for the cum-hist-signif pickle file")

# use glob.glob('filename') to extract files from opts.pickle_files

(opts, args) = parser.parse_args()

try:
    os.mkdir(opts.output_path)
except:
    pass

################   PLOTS   #############################################################

# Initializing the html output
InspiralUtils.message(opts, "Initialisation...")
opts = InspiralUtils.initialise(opts, __prog__, __version__)
fnameList = []
tagList = []
fig_num = 0
comments = ""

###########################################################################################
if opts.verbose:
    print 'Generating Plots...'

colorDIC = {'ann': 'b', 'mvsc': 'g', 'svm': 'r', 'ovl': 'c', 'combined': 'm'}
labelDIC = {
    'ann': 'ANN',
    'mvsc': 'MVSC',
    'svm': 'SVM',