You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We call continuous feature a feature with numerical values.
In issue #25 I proposed to expand a continuous feature in a set of binary features.
Another solution discussed with Bruno: possibility to add requests such as feat < x where feat is a numerical feature and x a numerical value.
It can be very useful to add the clustering of a continuous feature following a given gap, maybe with min and/or max values:
X.feat[gap=g] will cluster the values of X.feat by packs of size g
X.feat[gap=g, min=a, max=b] will cluster the values between a and b by pack of size g, with two packs for all values < a and > b.
The text was updated successfully, but these errors were encountered:
We call continuous feature a feature with numerical values.
In issue #25 I proposed to expand a continuous feature in a set of binary features.
Another solution discussed with Bruno: possibility to add requests such as
feat < x
wherefeat
is a numerical feature andx
a numerical value.It can be very useful to add the clustering of a continuous feature following a given gap, maybe with min and/or max values:
X.feat[gap=g]
will cluster the values of X.feat by packs of size gX.feat[gap=g, min=a, max=b]
will cluster the values between a and b by pack of size g, with two packs for all values < a and > b.The text was updated successfully, but these errors were encountered: