Module sci_rs::stats

source ·
Expand description

Statistics

Functions§

  • Autocorrelate the signal y with lag k, using 1/N formulation
  • Unscaled tiled autocorrelation of signal y with itself into x.
  • Produce an iterator yielding the lag difference, yi1 - yi0,
  • Compute the mean of the signal, y
  • Compute the median of the signal, y
  • The median absolute deviation (MAD, [1]) computes the median over the absolute deviations from the median. It is a measure of dispersion similar to the standard deviation but more robust to outliers
  • Compute the modified Z-score of each value in the sample, relative to the sample median over the mean absolute deviation.
  • Root Mean Square (RMS) of signal y.
  • Compute the root mean square of successive differences
  • Compute the standard deviation of the signal, y
  • Compute the variance of the signal, y
  • Compute the z score of each value in the sample, relative to the sample mean and standard deviation.