MCPcopy Create free account
hub / github.com/ddf-project/DDF / binning

Method binning

core/src/main/java/io/ddf/DDF.java:490–493  ·  view source on GitHub ↗
(String column, String binningType, int numBins, double[] breaks, boolean includeLowest,
                     boolean right)

Source from the content-addressed store, hash-verified

488 // ///// binning
489 // This one is kept for backward compatible
490 public DDF binning(String column, String binningType, int numBins, double[] breaks, boolean includeLowest,
491 boolean right) throws DDFException {
492 return this.getBinningHandler().binning(column, binningType, numBins, breaks, true, includeLowest, right, 3);
493 }
494
495 public DDF binning(String column, String binningType, int numBins, double[] breaks, boolean toLabels, boolean includeLowest,
496 boolean right, int precision) throws DDFException {

Calls 2

getBinningHandlerMethod · 0.95
binningMethod · 0.65