Package adams.data.binning.operation
Interface Wrapping.BinValueExtractor<T>
-
- Type Parameters:
T
- the type of object to process
- All Known Implementing Classes:
BinnableDataset.ClassValueBinValueExtractor
,BinnableDataset.GroupedClassValueBinValueExtractor
,BinnableInstances.ClassValueBinValueExtractor
,BinnableInstances.GroupedClassValueBinValueExtractor
,Wrapping.IndexedBinValueExtractor
- Enclosing class:
- Wrapping
public static interface Wrapping.BinValueExtractor<T>
Interface for extracting values for bins from arbitrary objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
extractBinValue(T object)
Extracts the numeric value to use for binning from the object.
-
-
-
Method Detail
-
extractBinValue
double extractBinValue(T object)
Extracts the numeric value to use for binning from the object.- Parameters:
object
- the object to process- Returns:
- the extracted value
-
-