Skip to content

Commit 2a7d2d7

Browse files
authored
Merge pull request #4076 from JuliaPlots/mkb/fix_wand
fix the wand binning
2 parents e3ea971 + 0ba580b commit 2a7d2d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/recipes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ function _auto_binning_nbins(
795795
elseif mode == :fd # Freedman–Diaconis rule
796796
_cl(_span(v) / (2 * _iqr(v) / nd))
797797
elseif mode == :wand
798-
_cl(wand_edges(v)) # this makes this function not type stable, but the type instability does not propagate
798+
wand_edges(v) # this makes this function not type stable, but the type instability does not propagate
799799
else
800800
error("Unknown auto-binning mode $mode")
801801
end

0 commit comments

Comments
 (0)