Package adams.data.smoothing
Class TimeseriesLOWESSBased
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.data.smoothing.AbstractSmoother<T>
-
- adams.data.smoothing.AbstractLOWESSBased<Timeseries>
-
- adams.data.smoothing.TimeseriesLOWESSBased
-
- All Implemented Interfaces:
CleanUpHandler
,Destroyable
,GlobalInfoSupporter
,LoggingLevelHandler
,LoggingSupporter
,OptionHandler
,ShallowCopySupporter<AbstractSmoother>
,SizeOfHandler
,TechnicalInformationHandler
,Serializable
,Comparable
public class TimeseriesLOWESSBased extends AbstractLOWESSBased<Timeseries>
A LOWESS based smoothing algorithm.
For more information on LOWESS see:
WikiPedia. Local Regression. URL http://en.wikipedia.org/wiki/Lowess.
-logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel) The logging level for outputting errors and debugging output. default: WARNING
-window-size <int> (property: windowSize) The window size to use, must be at least 20. default: 20 minimum: 1
- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class adams.data.smoothing.AbstractSmoother
AbstractSmoother.SmootherJob<T extends DataContainer>
-
-
Field Summary
-
Fields inherited from class adams.data.smoothing.AbstractLOWESSBased
m_LOWESS
-
Fields inherited from class adams.core.option.AbstractOptionHandler
m_OptionManager
-
Fields inherited from class adams.core.logging.LoggingObject
m_Logger, m_LoggingIsEnabled, m_LoggingLevel
-
-
Constructor Summary
Constructors Constructor Description TimeseriesLOWESSBased()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected AbstractLOWESS
getDefault()
Returns the default LOWESS filter.-
Methods inherited from class adams.data.smoothing.AbstractLOWESSBased
defineOptions, getTechnicalInformation, getWindowSize, globalInfo, initialize, processData, setWindowSize, windowSizeTipText
-
Methods inherited from class adams.data.smoothing.AbstractSmoother
checkData, cleanUp, compareTo, destroy, equals, forCommandLine, forName, getSmoothers, reset, shallowCopy, shallowCopy, smooth
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, finishInit, getDefaultLoggingLevel, getOptionManager, loggingLevelTipText, newOptionManager, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel
-
-
-
-
Method Detail
-
getDefault
protected AbstractLOWESS getDefault()
Returns the default LOWESS filter.- Specified by:
getDefault
in classAbstractLOWESSBased<Timeseries>
- Returns:
- the default filter
-
-