From 1820fa7897a9c1b5dd257e82689ce2b7a39f320d Mon Sep 17 00:00:00 2001 From: "T.Thost" <51490138+tthost@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:19:17 +0200 Subject: [PATCH] Update plot_comparison_under_sampling.py Fixed another typo --- examples/under-sampling/plot_comparison_under_sampling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/under-sampling/plot_comparison_under_sampling.py b/examples/under-sampling/plot_comparison_under_sampling.py index e2418e304..233230381 100644 --- a/examples/under-sampling/plot_comparison_under_sampling.py +++ b/examples/under-sampling/plot_comparison_under_sampling.py @@ -140,7 +140,7 @@ def plot_decision_function(X, y, clf, ax, title=None): # selected can be specified. # :class:`~imblearn.under_sampling.RandomUnderSampler` is the most naive way of # performing such selection by randomly selecting a given number of samples by -# the targetted class. +# the targeted class. # %% from imblearn.under_sampling import RandomUnderSampler