Package adams.data.utils
Class LOWESS
- java.lang.Object
-
- adams.data.utils.LOWESS
-
public class LOWESS extends Object
A helper class for LOWESS.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Field Summary
Fields Modifier and Type Field Description protected static Point2DComparator
m_Comparator
the comparator to use.protected static Logger
m_Logger
the logger.static int
MIN_WINDOW_SIZE
the minimum window size.
-
Constructor Summary
Constructors Constructor Description LOWESS()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static List<Point2D>
calculate(List<Point2D> points, int windowSize)
Performs LOWESS on the given data.static TechnicalInformation
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.
-
-
-
Field Detail
-
m_Comparator
protected static Point2DComparator m_Comparator
the comparator to use.
-
m_Logger
protected static Logger m_Logger
the logger.
-
MIN_WINDOW_SIZE
public static final int MIN_WINDOW_SIZE
the minimum window size.- See Also:
- Constant Field Values
-
-
Method Detail
-
calculate
public static List<Point2D> calculate(List<Point2D> points, int windowSize)
Performs LOWESS on the given data.- Parameters:
points
- the points to process
-
getTechnicalInformation
public static TechnicalInformation 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.- Returns:
- the technical information about this class
-
-