Statistical Moment
Statistical moments analysis for motion signals.
This module implements the StatisticalMoment feature, which computes basic statistical descriptive measures (mean, variance, skewness, kurtosis) over a sliding window.
StatisticalMoment
Bases: DynamicFeature
Real-time statistical moments analyzer for signal data.
Computes requested moments independently for each dimension of the input window.
Read more in the User Guide.
| Parameters: |
|
|---|
Examples:
Source code in pyeyesweb/analysis_primitives/statistical_moment.py
metrics
property
writable
List of active statistical metrics.
compute(window_data, **kwargs)
Compute requested statistical moments for the window.
| Parameters: |
|
|---|
| Returns: |
|
|---|
Source code in pyeyesweb/analysis_primitives/statistical_moment.py
StatisticalMomentResult
dataclass
Bases: FeatureResult
Output contract for Statistical Moments.
Contains the computed moments for each signal dimension in the window.
| Attributes: |
|
|---|
Source code in pyeyesweb/analysis_primitives/statistical_moment.py
to_flat_dict(prefix='')
Dynamically unroll list metrics into scalar dictionary entries.
| Parameters: |
|
|---|
| Returns: |
|
|---|