Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This discretisation technique is great when the distribution of the variable is
to work properly, it might help to increase the precision value, that is,
the number of decimal values allowed to define each bin. If the variable has a
narrow range or you are sorting into several bins, allow greater precision
(i.e., if precision = 3, then 0.001; if precision = 7, then 0.0001).
(i.e., if precision = 3, then 0.001; if precision = 7, then 0.0000001).

:class:`GeometricWidthDiscretiser()` works only with numerical variables. A list of
variables to discretise can be indicated, or the discretiser will automatically select
Expand Down
2 changes: 1 addition & 1 deletion feature_engine/discretisation/geometric_width.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class GeometricWidthDiscretiser(BaseDiscretiser):
to work properly, it might help to increase the precision value, that is,
the number of decimal values allowed to define each bin. If the variable has a
narrow range or you are sorting into several bins, allow greater precision
(i.e., if precision = 3, then 0.001; if precision = 7, then 0.0001).
(i.e., if precision = 3, then 0.001; if precision = 7, then 0.0000001).

The :class:`GeometricWidthDiscretiser()` works only with numerical variables.
A list of variables to discretise can be indicated, or the discretiser will
Expand Down