I'd also like to suggest what would probably be co...
# datascience
h
I'd also like to suggest what would probably be considered a breaking change, make
valueSelector
the last parameter in the
binBy
methods (the ones that don't also have a
groupOp
at least). This would allow the following:
Copy code
val avgWbccByAgeRange = patients.binByInt(binSize = 10, rangeStart = 20) { it.age }
                                .averageByInt { it.whiteBloodCellCount }