feets icon indicating copy to clipboard operation
feets copied to clipboard

Create plot routine for extractor ``feets.extractors.ext_std.Std``

Open leliel12 opened this issue 6 years ago • 0 comments

Create plot routine for extractor Std.

Path: feets.extractors.ext_std.py

Features

  • Std

Extractor Documentation

Std - Standard deviation of the magnitudes

The standard deviation σ of the sample is defined as:

$$\sigma=\frac{1}{N-1}\sum_{i} (y_{i}-\hat{y})^2$$

For example, a white noise time serie should have σ = 1

>>> fs = feets.FeatureSpace(only=['Std'])
>>> features, values = fs.extract(**lc_normal)
>>> dict(zip(features, values))
{'Std': 0.99320419310116881}

References

leliel12 avatar Jan 21 '20 20:01 leliel12