Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI]: Fix examples #352

Merged
merged 5 commits into from
Jul 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix example
  • Loading branch information
fraimondo committed Jul 18, 2024
commit bb919262e7eb36f7986c611c79ac7b21bfd9a88b
4 changes: 2 additions & 2 deletions examples/run_compute_parcel_mean.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
feature = marker.fit_transform(element_data)
# Print the output
print(feature.keys())
print(feature["VBM_GM"]["data"].shape) # Shape is (1 x parcels)
print(feature["VBM_GM"]["aggregation"]["data"].shape) # Shape is (1 x parcels)

###############################################################################
# Perform parcel aggregation on BOLD data (4D) from SPM Auditory dataset
Expand All @@ -54,4 +54,4 @@
feature = marker.fit_transform(element_data)
# Print the output
print(feature.keys())
print(feature["BOLD"]["data"].shape) # Shape is (timepoints x parcels)
print(feature["BOLD"]["aggregation"]["data"].shape) # Shape is (timepoints x parcels)