From ef78f179cd4619b0a66a93ab1388dae247cab74d Mon Sep 17 00:00:00 2001 From: Primoz Date: Mon, 6 Feb 2023 11:19:04 +0100 Subject: [PATCH] Add neccessary parameters to plot method. --- exploration/expl_features_groups_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exploration/expl_features_groups_analysis.py b/exploration/expl_features_groups_analysis.py index 7810972..7830dcf 100644 --- a/exploration/expl_features_groups_analysis.py +++ b/exploration/expl_features_groups_analysis.py @@ -283,7 +283,7 @@ xs, y_recall, y_fscore, recall_std, fscore_std = sort_tuples_to_lists(sensor_gro # %% [markdown] # ### Visualize sensors groups F1 and recall scores print(sensor_groups_importance_scores) -plot_sequential_progress_of_feature_addition_scores(xs, y_recall, y_fscore, recall_std, fscore_std, +plot_sequential_progress_of_feature_addition_scores(xs, y_recall, y_fscore, recall_std, fscore_std, recall_std, fscore_std, title="Sequential addition of sensors and its F1, and recall scores") # %%