Uses of Class
org.anchoranalysis.math.histogram.Histogram
| Package | Description |
|---|---|
| org.anchoranalysis.math.histogram |
The
Histogram data class and related operations. |
-
Uses of Histogram in org.anchoranalysis.math.histogram
Methods in org.anchoranalysis.math.histogram that return Histogram Modifier and Type Method Description HistogramHistogram. cropRemoveLargerValues(long maxCount)LikecropRemoveSmallerValues(long)but larger values are removed rather than smaller values if the total count is too high.HistogramHistogram. cropRemoveSmallerValues(long maxCount)Creates aHistogramreusing the bins in the current histogram, but with an upper limit on the total count.HistogramHistogram. duplicate()Creates a deep-copy of the current object.HistogramHistogram. threshold(DoublePredicate predicate)Generates a new histogram containing only values that match a predicate.Methods in org.anchoranalysis.math.histogram with parameters of type Histogram Modifier and Type Method Description voidHistogram. addHistogram(Histogram other)Adds the counts from another histogram to the current object.static doubleHistogramStatistics. coefficientOfVariation(Histogram histogram)Calculates the coefficient-of-variation of a distribution of values, represented by their histogram.static doubleHistogramStatistics. kurtosis(Histogram histogram)Calculates the kurtosis of a distribution of values, represented by their histogram.static doubleHistogramStatistics. skewness(Histogram histogram)Calculates the skewness of a distribution of values, represented by their histogram.