We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feets.extractors.ext_skew.Skew
Create plot routine for extractor Skew.
Skew
Path: feets.extractors.ext_skew.py
Skew The skewness of a sample is defined as follow: $$Skewness = \frac{N}{(N-1)(N-2)} \sum_{i=1}^N (\frac{m_i-\hat{m}}{\sigma})^3$$ Example: For a normal distribution it should be equal to zero: >>> fs = feets.FeatureSpace(only=['Skew']) >>> features, values = fs.extract(**lc_normal) >>> dict(zip(features, values)) {'Skew': -0.00023325826785278685} References
The skewness of a sample is defined as follow:
$$Skewness = \frac{N}{(N-1)(N-2)} \sum_{i=1}^N (\frac{m_i-\hat{m}}{\sigma})^3$$
Example:
For a normal distribution it should be equal to zero:
>>> fs = feets.FeatureSpace(only=['Skew']) >>> features, values = fs.extract(**lc_normal) >>> dict(zip(features, values)) {'Skew': -0.00023325826785278685}
The text was updated successfully, but these errors were encountered:
leliel12
martinberoiz
BrunoSanchez
No branches or pull requests
Create plot routine for extractor
Skew
.Path: feets.extractors.ext_skew.py
Features
Extractor Documentation
The text was updated successfully, but these errors were encountered: