Create plot routine for extractor Std.
Path: feets.extractors.ext_std.py
Features
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