diff --git a/docs/_downloads/06bb0f682e15138dfd659b791a14e9c6/plot_variable_importance_classif.zip b/docs/_downloads/06bb0f682e15138dfd659b791a14e9c6/plot_variable_importance_classif.zip index a29ba15..c6c28aa 100644 Binary files a/docs/_downloads/06bb0f682e15138dfd659b791a14e9c6/plot_variable_importance_classif.zip and b/docs/_downloads/06bb0f682e15138dfd659b791a14e9c6/plot_variable_importance_classif.zip differ diff --git a/docs/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip b/docs/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip index f17e32f..791cda9 100644 Binary files a/docs/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip and b/docs/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip differ diff --git a/docs/_downloads/117422582fb46cc8ed6549598a2d87de/plot_dcrt_example.zip b/docs/_downloads/117422582fb46cc8ed6549598a2d87de/plot_dcrt_example.zip index 3b73f38..4336aec 100644 Binary files a/docs/_downloads/117422582fb46cc8ed6549598a2d87de/plot_dcrt_example.zip and b/docs/_downloads/117422582fb46cc8ed6549598a2d87de/plot_dcrt_example.zip differ diff --git a/docs/_downloads/1a99dc8cb1c22f91072d67cf26fce26c/plot_knockoff_aggregation.zip b/docs/_downloads/1a99dc8cb1c22f91072d67cf26fce26c/plot_knockoff_aggregation.zip index 84ad1c1..6adfd9f 100644 Binary files a/docs/_downloads/1a99dc8cb1c22f91072d67cf26fce26c/plot_knockoff_aggregation.zip and b/docs/_downloads/1a99dc8cb1c22f91072d67cf26fce26c/plot_knockoff_aggregation.zip differ diff --git a/docs/_downloads/5ca231767268e6cd969e65225d673650/plot_fmri_data_example.zip b/docs/_downloads/5ca231767268e6cd969e65225d673650/plot_fmri_data_example.zip index 598f0b9..3e37f1f 100644 Binary files a/docs/_downloads/5ca231767268e6cd969e65225d673650/plot_fmri_data_example.zip and b/docs/_downloads/5ca231767268e6cd969e65225d673650/plot_fmri_data_example.zip differ diff --git a/docs/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip b/docs/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip index 7df92ca..cbca6b4 100644 Binary files a/docs/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip and b/docs/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip differ diff --git a/docs/_downloads/707d94040f5ada342e781499193f46f1/plot_diabetes_variable_importance_example.zip b/docs/_downloads/707d94040f5ada342e781499193f46f1/plot_diabetes_variable_importance_example.zip index 3a2f3aa..d17b796 100644 Binary files a/docs/_downloads/707d94040f5ada342e781499193f46f1/plot_diabetes_variable_importance_example.zip and b/docs/_downloads/707d94040f5ada342e781499193f46f1/plot_diabetes_variable_importance_example.zip differ diff --git a/docs/_downloads/76c0979bf6618aa210fd11bb28dcf896/plot_fmri_data_example.py b/docs/_downloads/76c0979bf6618aa210fd11bb28dcf896/plot_fmri_data_example.py index 92c6936..68c696a 100644 --- a/docs/_downloads/76c0979bf6618aa210fd11bb28dcf896/plot_fmri_data_example.py +++ b/docs/_downloads/76c0979bf6618aa210fd11bb28dcf896/plot_fmri_data_example.py @@ -55,7 +55,7 @@ from sklearn.svm import LinearSVR from sklearn.utils import Bunch -from hidimstat.ada_svr import ada_svr +from hidimstat.adaptative_permutation_threshold_SVR import ada_svr from hidimstat.clustered_inference import clustered_inference from hidimstat.ensemble_clustered_inference import ensemble_clustered_inference from hidimstat.permutation_test import permutation_test, permutation_test_pval diff --git a/docs/_downloads/931385a6992917f918857d6a3ee9f780/plot_fmri_data_example.ipynb b/docs/_downloads/931385a6992917f918857d6a3ee9f780/plot_fmri_data_example.ipynb index bee59e0..9630b96 100644 --- a/docs/_downloads/931385a6992917f918857d6a3ee9f780/plot_fmri_data_example.ipynb +++ b/docs/_downloads/931385a6992917f918857d6a3ee9f780/plot_fmri_data_example.ipynb @@ -22,7 +22,7 @@ }, "outputs": [], "source": [ - "import numpy as np\nimport pandas as pd\nfrom nilearn import datasets\nfrom nilearn.image import mean_img\nfrom nilearn.input_data import NiftiMasker\nfrom nilearn.plotting import plot_stat_map, show\nfrom sklearn.cluster import FeatureAgglomeration\nfrom sklearn.feature_extraction import image\nfrom sklearn.linear_model import Ridge\nfrom sklearn.svm import LinearSVR\nfrom sklearn.utils import Bunch\n\nfrom hidimstat.ada_svr import ada_svr\nfrom hidimstat.clustered_inference import clustered_inference\nfrom hidimstat.ensemble_clustered_inference import ensemble_clustered_inference\nfrom hidimstat.permutation_test import permutation_test, permutation_test_pval\nfrom hidimstat.standardized_svr import standardized_svr\nfrom hidimstat.stat_tools import pval_from_scale, zscore_from_pval\n\nn_job = None" + "import numpy as np\nimport pandas as pd\nfrom nilearn import datasets\nfrom nilearn.image import mean_img\nfrom nilearn.input_data import NiftiMasker\nfrom nilearn.plotting import plot_stat_map, show\nfrom sklearn.cluster import FeatureAgglomeration\nfrom sklearn.feature_extraction import image\nfrom sklearn.linear_model import Ridge\nfrom sklearn.svm import LinearSVR\nfrom sklearn.utils import Bunch\n\nfrom hidimstat.adaptative_permutation_threshold_SVR import ada_svr\nfrom hidimstat.clustered_inference import clustered_inference\nfrom hidimstat.ensemble_clustered_inference import ensemble_clustered_inference\nfrom hidimstat.permutation_test import permutation_test, permutation_test_pval\nfrom hidimstat.standardized_svr import standardized_svr\nfrom hidimstat.stat_tools import pval_from_scale, zscore_from_pval\n\nn_job = None" ] }, { diff --git a/docs/_downloads/e08c0f6d4aade0f0eaf8ba56dbbfd9c9/plot_2D_simulation_example.zip b/docs/_downloads/e08c0f6d4aade0f0eaf8ba56dbbfd9c9/plot_2D_simulation_example.zip index c6638cb..0de36ef 100644 Binary files a/docs/_downloads/e08c0f6d4aade0f0eaf8ba56dbbfd9c9/plot_2D_simulation_example.zip and b/docs/_downloads/e08c0f6d4aade0f0eaf8ba56dbbfd9c9/plot_2D_simulation_example.zip differ diff --git a/docs/_sources/api.rst.txt b/docs/_sources/api.rst.txt index 1393744..84be6a2 100644 --- a/docs/_sources/api.rst.txt +++ b/docs/_sources/api.rst.txt @@ -15,7 +15,6 @@ Functions .. autosummary:: :toctree: generated/ - ada_svr aggregate_quantiles clustered_inference data_simulation diff --git a/docs/_sources/auto_examples/index.rst.txt b/docs/_sources/auto_examples/index.rst.txt index b5e3be9..f6e4e93 100644 --- a/docs/_sources/auto_examples/index.rst.txt +++ b/docs/_sources/auto_examples/index.rst.txt @@ -87,35 +87,35 @@ Examples Gallery .. raw:: html -