Skip to content

Commit

Permalink
fix small syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lionelkusch committed Feb 21, 2025
1 parent 437af43 commit 5d5cedc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/hidimstat/ensemble_clustered_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def _degrouping(ward, beta_hat, pval, pval_corr, one_minus_pval, one_minus_pval_
1 - p-values at cluster level
one_minus_pval_corr : ndarray, shape (n_clusters,)
1 - corrected p-values at cluster level
Returns
-------
beta_hat : ndarray, shape (n_features,) or (n_features, n_times)
Expand All @@ -123,6 +124,7 @@ def _degrouping(ward, beta_hat, pval, pval_corr, one_minus_pval, one_minus_pval_
1 - p-values for individual features
one_minus_pval_corr : ndarray, shape (n_features,)
1 - corrected p-values for individual features
Notes
-----
The beta_hat values are rescaled by dividing by the cluster size
Expand Down Expand Up @@ -502,7 +504,7 @@ def ensemble_clustered_inference_pvalue(
References
----------
[1] footbibliography::
.. footbibliography::
"""
results = Parallel(n_jobs=n_jobs, verbose=verbose)(
delayed(clustered_inference_pvalue)(
Expand Down

0 comments on commit 5d5cedc

Please sign in to comment.