(String columnName, int numBins)
| 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); |
| 1089 | |
| 1090 | } |
| 1091 | |
| 1092 | public List<HistogramBin> getVectorHistogram(String columnName, int numBins) throws DDFException { |
| 1093 | // TODO need to check columnName |
no test coverage detected