Class LoessInterpolator

java.lang.Object
org.apache.commons.math3.analysis.interpolation.LoessInterpolator
All Implemented Interfaces:
Serializable, UnivariateInterpolator

public class LoessInterpolator extends Object implements UnivariateInterpolator, Serializable
Implements the Local Regression Algorithm (also Loess, Lowess) for interpolation of real univariate functions.

For reference, see William S. Cleveland - Robust Locally Weighted Regression and Smoothing Scatterplots

This class implements both the loess method and serves as an interpolation adapter to it, allowing one to build a spline on the obtained loess fit.
Since:
2.0
See Also: