Statistics¶
The statistics module performs cluster-based permutation testing on MNI-space NIfTI volumes produced by the simulation pipeline. It supports two analysis types: group comparison (responders vs non-responders) and correlation (voxelwise correlation with a continuous outcome measure, ACES-style).
graph LR
NIFTI[MNI NIfTI Volumes] --> LOAD[Load Group Data]
CSV[Subject CSV] --> CFG[Config]
CFG --> TEST[Voxelwise Test]
LOAD --> TEST
TEST --> PERM[Permutation Engine]
PERM --> SIG[Significant Clusters]
SIG --> REPORT[Summary Report]
SIG --> PLOTS[Null Distribution Plots]
SIG --> MAPS[NIfTI Output Maps]
style PERM fill:#2d5a27,stroke:#4a8,color:#fff
Group Comparison¶
Compare two groups (e.g., responders vs non-responders) using cluster-based permutation testing with voxelwise t-tests. Supports both unpaired (independent samples) and paired designs.
from tit.stats import GroupComparisonConfig, run_group_comparison
# Load subjects from CSV (columns: subject_id, simulation_name, response)
subjects = GroupComparisonConfig.load_subjects("/data/my_project/subjects.csv")
config = GroupComparisonConfig(
project_dir="/data/my_project",
analysis_name="responder_comparison",
subjects=subjects,
test_type=GroupComparisonConfig.TestType.UNPAIRED,
alternative=GroupComparisonConfig.Alternative.TWO_SIDED,
n_permutations=5000,
alpha=0.05,
cluster_threshold=0.05,
cluster_stat=GroupComparisonConfig.ClusterStat.MASS,
tissue_type=GroupComparisonConfig.TissueType.GREY,
group1_name="Responders",
group2_name="Non-Responders",
)
result = run_group_comparison(config)
print(f"Significant clusters: {result.n_significant_clusters}")
print(f"Significant voxels: {result.n_significant_voxels}")
print(f"Analysis time: {result.analysis_time:.1f}s")
print(f"Output directory: {result.output_dir}")
Correlation¶
Test for voxelwise correlation between electric field magnitude and a continuous outcome measure (e.g., clinical effect size). Supports Pearson and Spearman correlation with optional subject-level weights.
from tit.stats import CorrelationConfig, run_correlation
# Load subjects from CSV (columns: subject_id, simulation_name, effect_size; optional: weight)
subjects = CorrelationConfig.load_subjects("/data/my_project/correlation_subjects.csv")
config = CorrelationConfig(
project_dir="/data/my_project",
analysis_name="efield_outcome_correlation",
subjects=subjects,
correlation_type=CorrelationConfig.CorrelationType.PEARSON,
n_permutations=5000,
alpha=0.05,
cluster_threshold=0.05,
cluster_stat=CorrelationConfig.ClusterStat.MASS,
tissue_type=CorrelationConfig.TissueType.GREY,
use_weights=True,
effect_metric="Clinical Improvement",
)
result = run_correlation(config)
print(f"Significant clusters: {result.n_significant_clusters}")
print(f"Significant voxels: {result.n_significant_voxels}")
Configuration¶
Subject Definitions¶
Both analysis types use a nested Subject dataclass to define per-subject metadata. Subjects are typically loaded from CSV files via the load_subjects class method.
CSV columns: subject_id, simulation_name, response (0 or 1).
| Field | Type | Description |
|---|---|---|
subject_id |
str |
Subject identifier (e.g., "001") |
simulation_name |
str |
Name of the simulation to load |
response |
int |
Group assignment: 1 = group 1, 0 = group 2 |
CSV columns: subject_id, simulation_name, effect_size; optional: weight.
| Field | Type | Default | Description |
|---|---|---|---|
subject_id |
str |
Subject identifier | |
simulation_name |
str |
Name of the simulation to load | |
effect_size |
float |
Continuous outcome measure | |
weight |
float |
1.0 |
Subject-level weight |
Enums¶
| Enum | Values | Used By |
|---|---|---|
GroupComparisonConfig.TestType |
UNPAIRED, PAIRED |
Group comparison only |
GroupComparisonConfig.Alternative |
TWO_SIDED, GREATER, LESS |
Group comparison only |
CorrelationConfig.CorrelationType |
PEARSON, SPEARMAN |
Correlation only |
ClusterStat |
MASS, SIZE |
Both (nested as GroupComparisonConfig.ClusterStat / CorrelationConfig.ClusterStat) |
TissueType |
GREY, WHITE, ALL |
Both (nested as GroupComparisonConfig.TissueType / CorrelationConfig.TissueType) |
Statistical Parameters¶
These parameters are shared by both GroupComparisonConfig and CorrelationConfig:
| Parameter | Type | Default | Description |
|---|---|---|---|
project_dir |
str |
Path to the BIDS project root | |
analysis_name |
str |
Name for this analysis run | |
subjects |
list[Subject] |
List of subject definitions | |
cluster_threshold |
float |
0.05 |
Uncorrected p-value threshold for cluster formation |
cluster_stat |
ClusterStat |
MASS |
Cluster statistic: "mass" (sum of t-values) or "size" (voxel count) |
n_permutations |
int |
1000 |
Number of permutations for null distribution |
alpha |
float |
0.05 |
Family-wise error rate for cluster significance |
n_jobs |
int |
-1 |
Number of parallel jobs (-1 = all CPUs) |
tissue_type |
TissueType |
GREY |
Tissue mask: "grey", "white", or "all" |
nifti_file_pattern |
str \| None |
None |
Custom NIfTI filename pattern (auto-resolved from tissue_type if None) |
atlas_files |
list[str] |
[] |
Atlas filenames for overlap analysis |
NIfTI File Patterns¶
The tissue_type field determines which NIfTI files are loaded from each subject's simulation output:
| TissueType | Resolved Pattern |
|---|---|
GREY |
grey_{simulation_name}_TI_MNI_MNI_TI_max.nii.gz |
WHITE |
white_{simulation_name}_TI_MNI_MNI_TI_max.nii.gz |
ALL |
{simulation_name}_TI_MNI_MNI_TI_max.nii.gz |
Set nifti_file_pattern to override the auto-resolved pattern.
Output¶
Results are saved to derivatives/ti-toolbox/stats/<analysis_type>/<analysis_name>/ within the project directory. Both analysis types produce the following:
| File | Description |
|---|---|
significant_voxels_mask.nii.gz |
Binary mask of significant voxels |
pvalues_map.nii.gz |
Negative log10 p-value map |
permutation_null_distribution.pdf |
Null distribution with observed clusters |
cluster_size_mass_correlation.pdf |
Cluster size vs mass scatter plot |
analysis_summary.txt |
Text summary of results |
permutation_details.txt |
Per-permutation log |
*_analysis_*.log |
Timestamped run log |
Group comparison additionally produces:
| File | Description |
|---|---|
average_responders.nii.gz |
Mean field map for group 1 |
average_non_responders.nii.gz |
Mean field map for group 2 |
difference_map.nii.gz |
Group 1 minus group 2 difference map |
Correlation additionally produces:
| File | Description |
|---|---|
correlation_map.nii.gz |
Full voxelwise correlation map |
correlation_map_thresholded.nii.gz |
Correlation map masked to significant voxels |
t_statistics_map.nii.gz |
Voxelwise t-statistic map |
average_efield.nii.gz |
Mean electric field across all subjects |
Result Dataclasses¶
GroupComparisonResult¶
| Field | Type | Description |
|---|---|---|
success |
bool |
Whether the analysis completed |
output_dir |
str |
Path to the output directory |
n_responders |
int |
Number of group 1 subjects |
n_non_responders |
int |
Number of group 2 subjects |
n_significant_voxels |
int |
Count of significant voxels |
n_significant_clusters |
int |
Count of significant clusters |
cluster_threshold |
float |
Cluster statistic threshold from null distribution |
analysis_time |
float |
Total runtime in seconds |
clusters |
list |
Cluster details (size, MNI center) |
log_file |
str |
Path to the analysis log |
CorrelationResult¶
| Field | Type | Description |
|---|---|---|
success |
bool |
Whether the analysis completed |
output_dir |
str |
Path to the output directory |
n_subjects |
int |
Number of subjects |
n_significant_voxels |
int |
Count of significant voxels |
n_significant_clusters |
int |
Count of significant clusters |
cluster_threshold |
float |
Cluster statistic threshold from null distribution |
analysis_time |
float |
Total runtime in seconds |
clusters |
list |
Cluster details (size, MNI center, mean/peak r) |
log_file |
str |
Path to the analysis log |
API Reference¶
tit.stats.config.GroupComparisonConfig
dataclass
¶
GroupComparisonConfig(project_dir: str, analysis_name: str, subjects: list[Subject], test_type: TestType = UNPAIRED, alternative: Alternative = TWO_SIDED, cluster_threshold: float = 0.05, cluster_stat: ClusterStat = MASS, n_permutations: int = 1000, alpha: float = 0.05, n_jobs: int = -1, tissue_type: TissueType = GREY, nifti_file_pattern: str | None = None, group1_name: str = 'Responders', group2_name: str = 'Non-Responders', value_metric: str = 'Current Intensity', atlas_files: list[str] = list())
Configuration for group comparison permutation testing.
Subject
dataclass
¶
A single subject in a group comparison analysis.
load_subjects
classmethod
¶
Load group comparison subjects from a CSV file.
Expected columns: subject_id, simulation_name, response (0 or 1).
Source code in tit/stats/config.py
tit.stats.config.GroupComparisonResult
dataclass
¶
GroupComparisonResult(success: bool, output_dir: str, n_responders: int, n_non_responders: int, n_significant_voxels: int, n_significant_clusters: int, cluster_threshold: float, analysis_time: float, clusters: list, log_file: str)
Result of a group comparison permutation test.
tit.stats.config.CorrelationConfig
dataclass
¶
CorrelationConfig(project_dir: str, analysis_name: str, subjects: list[Subject], correlation_type: CorrelationType = PEARSON, cluster_threshold: float = 0.05, cluster_stat: ClusterStat = MASS, n_permutations: int = 1000, alpha: float = 0.05, n_jobs: int = -1, use_weights: bool = True, tissue_type: TissueType = GREY, nifti_file_pattern: str | None = None, effect_metric: str = 'Effect Size', field_metric: str = 'Electric Field Magnitude', atlas_files: list[str] = list())
Configuration for correlation-based permutation testing.
Subject
dataclass
¶
A single subject in a correlation analysis.
load_subjects
classmethod
¶
Load correlation subjects from a CSV file.
Expected columns: subject_id, simulation_name, effect_size. Optional column: weight.
Source code in tit/stats/config.py
tit.stats.config.CorrelationResult
dataclass
¶
CorrelationResult(success: bool, output_dir: str, n_subjects: int, n_significant_voxels: int, n_significant_clusters: int, cluster_threshold: float, analysis_time: float, clusters: list, log_file: str)
Result of a correlation permutation test.
tit.stats.permutation.run_group_comparison ¶
run_group_comparison(config: GroupComparisonConfig, callback_handler=None, stop_callback=None) -> GroupComparisonResult
Run cluster-based permutation testing for group comparison.
Parameters¶
config : GroupComparisonConfig Fully specified configuration. callback_handler : logging.Handler, optional GUI log handler. stop_callback : callable, optional Returns True to abort.
Source code in tit/stats/permutation.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | |
tit.stats.permutation.run_correlation ¶
run_correlation(config: CorrelationConfig, callback_handler=None, stop_callback=None) -> CorrelationResult
Run cluster-based permutation testing for correlation (ACES-style).
Parameters¶
config : CorrelationConfig Fully specified configuration. callback_handler : logging.Handler, optional GUI log handler. stop_callback : callable, optional Returns True to abort.
Source code in tit/stats/permutation.py
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 | |
tit.stats.engine.PermutationEngine ¶
PermutationEngine(*, cluster_threshold: float = 0.05, n_permutations: int = 1000, alpha: float = 0.05, cluster_stat: str = 'mass', alternative: str = 'two-sided', n_jobs: int = -1, log: Logger | None = None)
Master class for cluster-based permutation testing.
Stores all control parameters as self.* so methods only need data arrays.
Source code in tit/stats/engine.py
correct_groups ¶
correct_groups(responders, non_responders, *, p_values, t_statistics, valid_mask, test_type: str = 'unpaired', perm_log_file: str | None = None, subject_ids_resp: list | None = None, subject_ids_non_resp: list | None = None) -> tuple
Cluster-based permutation correction for group comparison.
Returns (sig_mask, threshold, sig_clusters, null_dist, observed_clusters,
correlation_data).
Source code in tit/stats/engine.py
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 | |
correct_correlation ¶
correct_correlation(subject_data, effect_sizes, *, r_values, t_statistics, p_values, valid_mask, correlation_type: str = 'pearson', weights=None, perm_log_file: str | None = None, subject_ids: list | None = None) -> tuple
Cluster-based permutation correction for correlation analysis.
Returns (sig_mask, threshold, sig_clusters, null_dist, observed_clusters,
correlation_data).
Source code in tit/stats/engine.py
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 | |
tit.stats.engine.cluster_analysis ¶
Connected-component analysis with MNI coordinate mapping.
Returns a list of cluster dicts sorted by size (descending).
Source code in tit/stats/engine.py
tit.stats.nifti.load_subject_nifti_ti_toolbox ¶
load_subject_nifti_ti_toolbox(subject_id: str, simulation_name: str, nifti_file_pattern: str = 'grey_{simulation_name}_TI_MNI_MNI_TI_max.nii.gz', dtype=float32) -> tuple[ndarray, Nifti1Image, str]
Load a NIfTI file from TI-Toolbox BIDS structure
Parameters:¶
subject_id : str Subject ID (e.g., '070') simulation_name : str Simulation name (e.g., 'ICP_RHIPPO') nifti_file_pattern : str, optional Pattern for NIfTI files. Default: 'grey_{simulation_name}_TI_MNI_MNI_TI_max.nii.gz' Available variables: {subject_id}, {simulation_name} dtype : numpy dtype, optional Data type to load (default: float32)
Returns:¶
data : ndarray NIfTI data img : nibabel Nifti1Image NIfTI image object filepath : str Full path to the loaded file
Source code in tit/stats/nifti.py
tit.stats.nifti.load_group_data_ti_toolbox ¶
load_group_data_ti_toolbox(subject_configs: list[dict], nifti_file_pattern: str = 'grey_{simulation_name}_TI_MNI_MNI_TI_max.nii.gz', dtype=float32) -> tuple[ndarray, Nifti1Image, list[str]]
Load multiple subjects from TI-Toolbox BIDS structure
Parameters:¶
subject_configs : list of dict List of subject configurations with keys: - 'subject_id': Subject ID (e.g., '070') - 'simulation_name': Simulation name (e.g., 'ICP_RHIPPO') nifti_file_pattern : str, optional Pattern for NIfTI files dtype : numpy dtype, optional Data type to load (default: float32)
Returns:¶
data_4d : ndarray (x, y, z, n_subjects) 4D array with all loaded data template_img : nibabel Nifti1Image Template image from first subject subject_ids : list of str List of successfully loaded subject IDs