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

Method getVectorHistogram_Hive

core/src/main/java/io/ddf/DDF.java:1083–1085  ·  view source on GitHub ↗
(String columnName, int numBins)

Source from the content-addressed store, hash-verified

1081
1082 // for backward compatibility
1083 public List<HistogramBin> getVectorHistogram_Hive(String columnName, int numBins) throws DDFException {
1084 return getVectorApproxHistogram(columnName, numBins);
1085 }
1086 public List<HistogramBin> getVectorApproxHistogram(String columnName, int numBins) throws DDFException {
1087 // TODO need to check columnName
1088 return this.getBinningHandler().getVectorApproxHistogram(columnName, numBins);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected