Skip to content

Commit

Permalink
Update figures.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JulioAPeraza committed Jan 18, 2024
1 parent 36a58d4 commit c12dad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nimare/reports/figures.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,12 +402,12 @@ def plot_clusters(img, out_filename):


def _plot_true_voxels(maps_arr, ids_, out_filename):
"""Plot percentage of true voxels.
"""Plot percentage of valid voxels.
.. versionadded:: 0.2.2
"""
n_studies, n_voxels = maps_arr
n_studies, n_voxels = maps_arr.shape
mask = ~np.isnan(maps_arr) & (maps_arr != 0)

x_label, y_label = "Voxels Included", "ID"
Expand Down

0 comments on commit c12dad7

Please sign in to comment.