Skip to content
New issue

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

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

Already on GitHub? # to your account

[ENH]: Introduce JuniferConnectivityMeasure #348

Merged
merged 10 commits into from
Jul 19, 2024
Merged
1 change: 1 addition & 0 deletions docs/changes/newsfragments/348.change
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
For :class:`.CrossParcellationFC`, ``aggregation_method`` and ``correlation_method`` have been renamed to ``agg_method`` and ``corr_method`` respectively and ``agg_method_params`` has been added; for ``FunctionalConnectivityBase``, :class:`.FunctionalConnectivityParcels`, :class:`.FunctionalConnectivitySpheres`, :class:`.EdgeCentricFCParcels` and :class:`.EdgeCentricFCSpheres`, ``cor_method`` and ``cor_method_params`` have been renamed to ``conn_method`` and ``conn_method_params`` by `Synchon Mandal`_
1 change: 1 addition & 0 deletions docs/changes/newsfragments/348.enh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
``FunctionalConnectivity``-family Markers now use :class:`sklearn.covariance.EmpiricalCovariance` as the default covariance estimator and ``correlation`` as the default connecivity matrix kind by `Synchon Mandal`_
1 change: 1 addition & 0 deletions docs/changes/newsfragments/348.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Introduce :class:`.JuniferConnectivityMeasure` for customising functional connectivity matrix kinds and measurements by `Synchon Mandal`_
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@
"Engine",
"positive",
"negative",
"estimator",
}
# numpydoc_validation_checks = {
# "all",
Expand Down
1 change: 1 addition & 0 deletions ignore_words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ sepulcre
arange
sinc
whit
amin
3 changes: 2 additions & 1 deletion junifer/external/nilearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# License: AGPL

from .junifer_nifti_spheres_masker import JuniferNiftiSpheresMasker
from .junifer_connectivity_measure import JuniferConnectivityMeasure


__all__ = ["JuniferNiftiSpheresMasker"]
__all__ = ["JuniferNiftiSpheresMasker", "JuniferConnectivityMeasure"]
Loading