We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32a0ae6 commit 0c3f73aCopy full SHA for 0c3f73a
src/DataFrame/DecisionTree.hs
@@ -267,7 +267,7 @@ findBestSplit cfg target conds df =
267
let
268
(t, f) = partitionDataFrame c df
269
in
270
- nRows t >= minLeafSize cfg && nRows f >= minLeafSiz cfg
+ nRows t >= minLeafSize cfg && nRows f >= minLeafSize cfg
271
)
272
(nubOrd conds)
273
sortedConditions = take 10 (sortBy (flip compare `on` evalGain) validConds)
0 commit comments