Back to Documentations

Signature Description
enum class  detect_method : unsigned char  {

    fft = 1,     // Fast Fourier Transform (FFT)
    iqr = 2,     // Inter-Quartile Range (IQR)
    lof = 3,     // Local Outlier Factor (LOF)
    hampel = 4,  // Hampel Filter
    zscore = 5,  // Z-Score method
};
Different methods of detecting anomalous data points. Anomalous data don’t mean NaN or missing datapoints. The best description is unusual datapoints. You should take care of missing datapoints first.

C++ DataFrame