Package weka.core
Class ChebyshevDistance
java.lang.Object
weka.core.NormalizableDistance
weka.core.ChebyshevDistance
- All Implemented Interfaces:
Serializable
,DistanceFunction
,OptionHandler
,RevisionHandler
,TechnicalInformationHandler
Implements the Chebyshev distance. The distance between two vectors is the greatest of their differences along any coordinate dimension.
For more information, see:
Wikipedia. Chebyshev distance. URL http://en.wikipedia.org/wiki/Chebyshev_distance. BibTeX:
For more information, see:
Wikipedia. Chebyshev distance. URL http://en.wikipedia.org/wiki/Chebyshev_distance. BibTeX:
@misc{missing_id, author = {Wikipedia}, title = {Chebyshev distance}, URL = {http://en.wikipedia.org/wiki/Chebyshev_distance} }Valid options are:
-D Turns off the normalization of attribute values in distance calculation.
-R <col1,col2-col4,...> Specifies list of columns to used in the calculation of the distance. 'first' and 'last' are valid indices. (default: first-last)
-V Invert matching sense of column indices.
- Version:
- $Revision: 8034 $
- Author:
- Fracpete (fracpete at waikato dot ac dot nz)
- See Also:
-
Field Summary
Fields inherited from class weka.core.NormalizableDistance
R_MAX, R_MIN, R_WIDTH
-
Constructor Summary
ConstructorDescriptionConstructs an Chebyshev Distance object, Instances must be still set.ChebyshevDistance
(Instances data) Constructs an Chebyshev Distance object and automatically initializes the ranges. -
Method Summary
Modifier and TypeMethodDescriptionReturns the revision string.Returns an instance of a TechnicalInformation object, containing detailed information about the technical background of this class, e.g., paper reference or book this class is based on.Returns a string describing this object.Methods inherited from class weka.core.NormalizableDistance
attributeIndicesTipText, clean, distance, distance, distance, distance, dontNormalizeTipText, getAttributeIndices, getDontNormalize, getInstances, getInvertSelection, getOptions, getRanges, initializeRanges, initializeRanges, initializeRanges, initializeRangesEmpty, inRanges, invertSelectionTipText, listOptions, postProcessDistances, rangesSet, setAttributeIndices, setDontNormalize, setInstances, setInvertSelection, setOptions, toString, update, updateRanges, updateRanges, updateRanges, updateRangesFirst
-
Constructor Details
-
ChebyshevDistance
public ChebyshevDistance()Constructs an Chebyshev Distance object, Instances must be still set. -
ChebyshevDistance
Constructs an Chebyshev Distance object and automatically initializes the ranges.- Parameters:
data
- the instances the distance function should work on
-
-
Method Details
-
globalInfo
Returns a string describing this object.- Specified by:
globalInfo
in classNormalizableDistance
- Returns:
- a description of the evaluator suitable for displaying in the explorer/experimenter gui
-
getTechnicalInformation
Returns an instance of a TechnicalInformation object, containing detailed information about the technical background of this class, e.g., paper reference or book this class is based on.- Specified by:
getTechnicalInformation
in interfaceTechnicalInformationHandler
- Returns:
- the technical information about this class
-
getRevision
Returns the revision string.- Specified by:
getRevision
in interfaceRevisionHandler
- Returns:
- the revision
-