Closed gbordyugov closed 6 years ago
If apply() were replaced by __call__() in https://github.com/zalando/expan/blob/dev/expan/core/binning.py#L48
apply()
__call__()
it would be easier to apply bins to data frames by simply writing binned_df = bin(df, feature)
binned_df = bin(df, feature)
addressed by https://github.com/zalando/expan/pull/169
@gbordyugov can I close this issue?
If
apply()
were replaced by__call__()
in https://github.com/zalando/expan/blob/dev/expan/core/binning.py#L48it would be easier to apply bins to data frames by simply writing
binned_df = bin(df, feature)