From 429f2b52c31220d06ee492178dc4bd40b5a072ac Mon Sep 17 00:00:00 2001 From: Suki Date: Fri, 3 Nov 2023 15:23:14 -0400 Subject: [PATCH] issue#165 bug-fix --- .../plot_MI_imbalanced_hyppo_testing.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/examples/hypothesis_testing/plot_MI_imbalanced_hyppo_testing.py b/examples/hypothesis_testing/plot_MI_imbalanced_hyppo_testing.py index c8a5478a4..dbcb23ccb 100644 --- a/examples/hypothesis_testing/plot_MI_imbalanced_hyppo_testing.py +++ b/examples/hypothesis_testing/plot_MI_imbalanced_hyppo_testing.py @@ -92,12 +92,14 @@ def make_multiview_classification( n_samples = 100 n_features = 10000 -n_features_views = [10, n_features] +n_features_1 = 10 +n_features_2 = n_features +n_features_views = [n_features_1, n_features_1 + n_features_2] X, y = make_multiview_classification( n_samples=n_samples, - n_features_1=10, - n_features_2=n_features, + n_features_1=n_features_1, + n_features_2=n_features_2, cluster_std=2.0, seed=seed, )