Package adams.data.binning.algorithm
Interface BinningAlgorithmUser
-
- All Known Implementing Classes:
ArrayBinning
,BinnedNumericClassCrossValidationFoldGenerator
,BinnedNumericClassRandomSplitGenerator
,GroupedBinnedNumericClassCrossValidationFoldGenerator
,GroupedBinnedNumericClassRandomSplitGenerator
,SpreadSheetRowBinning
public interface BinningAlgorithmUser
Interface for classes that use a binning algorithm.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
algorithmTipText()
Returns the tip text for this property.BinningAlgorithm
getAlgorithm()
Returns the binning algorithm.void
setAlgorithm(BinningAlgorithm value)
Sets the binning algorithm.
-
-
-
Method Detail
-
setAlgorithm
void setAlgorithm(BinningAlgorithm value)
Sets the binning algorithm.- Parameters:
value
- the algorithm
-
getAlgorithm
BinningAlgorithm getAlgorithm()
Returns the binning algorithm.- Returns:
- the algorithm
-
algorithmTipText
String algorithmTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-