Skip to content

Commit

Permalink
make remove_model default
Browse files Browse the repository at this point in the history
  • Loading branch information
36000 committed Dec 7, 2020
1 parent 71d924b commit c01e3e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions AFQ/viz/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,12 +672,12 @@ class GroupCSVComparison():

def __init__(self, out_folder, csv_fnames, names, is_special="",
subjects=None,
scalar_bounds={'lb': {'dti_fa': 0.2},
'ub': {'dti_md': 0.002}},
scalar_bounds={'lb': {'FA': 0.2},
'ub': {'MD': 0.002}},
bundles=None,
percent_nan_tol=10,
percent_edges_removed=10,
remove_model=False,
remove_model=True,
mat_bundle_converter=BUNDLE_MAT_2_PYTHON,
mat_column_converter=CSV_MAT_2_PYTHON,
mat_scale_converter=SCALE_MAT_2_PYTHON,
Expand Down Expand Up @@ -713,7 +713,7 @@ def __init__(self, out_folder, csv_fnames, names, is_special="",
series of scalar / threshold pairs used as a white-matter mask
on the profiles (any values outside of the threshold will be
marked NaN and not used or set to 0, depending on the case).
Default: {'lb': {'dti_fa': 0.2}, 'ub': {'dti_md': 0.002}}
Default: {'lb': {'FA': 0.2}, 'ub': {'MD': 0.002}}
bundles : list of strings, optional
Bundles to compare.
Expand All @@ -739,7 +739,7 @@ def __init__(self, out_folder, csv_fnames, names, is_special="",
remove_model : bool, optional
Whether to remove prefix of scalars which specify model
i.e., dti_fa => FA.
Default: False
Default: True
mat_bundle_converter : dictionary, optional
Dictionary that maps matlab bundle names to python bundle names.
Expand Down

0 comments on commit c01e3e7

Please sign in to comment.