Class AbstractLOWESSBased<T extends DataContainer>

    • Constructor Detail

      • AbstractLOWESSBased

        public AbstractLOWESSBased()
    • Method Detail

      • getTechnicalInformation

        public 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
      • getFilter

        protected abstract AbstractLOWESS getFilter()
        Returns a new instance of a LOWESS filter.
        Returns:
        the filter
      • setWindowSize

        public void setWindowSize​(int value)
        Sets the polynomial order.
        Parameters:
        value - the order
      • getWindowSize

        public int getWindowSize()
        Returns the polynominal order.
        Returns:
        the order
      • windowSizeTipText

        public String windowSizeTipText()
        Returns the tip text for this property.
        Returns:
        tip text for this property suitable for displaying in the GUI or for listing the options.
      • subtract

        protected abstract DataPoint subtract​(DataPoint old,
                                              DataPoint baseline)
        Subtracts the baseline from the old data point and creates a new data point.
        Parameters:
        old - the old data point to subtract the baseline from
        baseline - the baseline value to subtract
        Returns:
        the new corrected data point