Package org.geotools.process.classify
Interface ClassificationStats
-
- All Known Implementing Classes:
CoverageClassStats.Results,FeatureClassStats.Results
public interface ClassificationStatsA classification of data into classes, with a count and statistics for each class.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Longcount(int i)The count of values for the speciifed class.Set<Statistic>getStats()The statistics maintained for each class.Rangerange(int i)The value range for the specified class.intsize()Number of classes.Doublevalue(int i, Statistic stat)The stat value for the specified class and statistic type.
-
-
-
Method Detail
-
size
int size()
Number of classes.
-
getStats
Set<Statistic> getStats()
The statistics maintained for each class.
-
range
Range range(int i)
The value range for the specified class.
-
value
Double value(int i, Statistic stat)
The stat value for the specified class and statistic type.
-
count
Long count(int i)
The count of values for the speciifed class.
-
-