Exemplo n.º 1
0
def dataset_lines(path, dataset_key, base=None, **kwargs):
    # This would filter those problems where a == 'mid-high'
    # filfn = lambda x : x['a'] != 'mid-high'
    filfn = lambda x : True

    settings = results.list_settings(path, filfn, group=algorithm_settings+[dataset_key])
    graph.dataset_lines(settings, dataset_key, name, key, **kwargs)
Exemplo n.º 2
0
def bar(path, base=None, **kwargs):
    settings = results.list_settings(path, group=algorithm_settings)
    graph.bxes(settings, name, key, **kwargs)
Exemplo n.º 3
0
def lines(path, xkey, base=None, **kwargs):
    settings = results.list_settings(path, group=[xkey])
    graph.lines(settings, name, key, xkey, **kwargs)