Skip to content

Commit

Permalink
tabs not spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
TheChymera committed Jul 10, 2017
1 parent 2374dda commit 23cb4db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions samri/pipelines/fc.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@ def correlation_matrix(ts,
brain_mask = path.abspath(path.expanduser(brain_mask))

labels_masker = NiftiLabelsMasker(
labels_img=brain_mask,
standardize=True,
memory='nilearn_cache',
verbose=5
labels_img=brain_mask,
standardize=True,
memory='nilearn_cache',
verbose=5
)

timeseries = labels_masker.fit_transform(ts)
Expand Down
6 changes: 3 additions & 3 deletions samri/plotting/connectivity.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def plot_connectivity_matrix(correlation_matrix,
np.fill_diagonal(correlation_matrix, 0)

sns.heatmap(correlation_matrix,
xticklabels=labels_np,
yticklabels=labels_np,
square = 1
xticklabels=labels_np,
yticklabels=labels_np,
square = 1
)

plt.show()
Expand Down

0 comments on commit 23cb4db

Please sign in to comment.