Skip to content

Commit 0c3f73a

Browse files
committed
fix: Typo in leaf size fn name.
1 parent 32a0ae6 commit 0c3f73a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DataFrame/DecisionTree.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ findBestSplit cfg target conds df =
267267
let
268268
(t, f) = partitionDataFrame c df
269269
in
270-
nRows t >= minLeafSize cfg && nRows f >= minLeafSiz cfg
270+
nRows t >= minLeafSize cfg && nRows f >= minLeafSize cfg
271271
)
272272
(nubOrd conds)
273273
sortedConditions = take 10 (sortBy (flip compare `on` evalGain) validConds)

0 commit comments

Comments
 (0)