From 5e5bef3c3c9a1d317ed22b24d2aed2bebd2887d6 Mon Sep 17 00:00:00 2001 From: Marko Toplak Date: Fri, 24 Mar 2023 15:01:19 +0100 Subject: [PATCH] Fix RemoveMultinomial description --- Orange/widgets/data/owcontinuize.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Orange/widgets/data/owcontinuize.py b/Orange/widgets/data/owcontinuize.py index 4efad17301d..f8a355741a8 100644 --- a/Orange/widgets/data/owcontinuize.py +++ b/Orange/widgets/data/owcontinuize.py @@ -62,8 +62,8 @@ class MethodDesc(NamedTuple): "One indicator variable for each value", False), MethodDesc( - Continuize.RemoveMultinomial, "Remove if more than 3 values", "remove if >3", - "Remove variables with more than three values; indicator otherwise"), + Continuize.RemoveMultinomial, "Remove if more than 2 values", "remove if >2", + "Remove variables with more than two values; indicator otherwise"), MethodDesc( Continuize.Remove, "Remove", "remove", "Remove variable"),