pyhctsa.operations.medical.raw_hrv_meas¶
- pyhctsa.operations.medical.raw_hrv_meas(x)¶
Compute Poincaré plot-based HRV (Heart Rate Variability) measures from RR interval time series.
This function computes the triangular histogram indices and Poincaré plot measures commonly used in HRV analysis. It is specifically designed for time series consisting of consecutive RR intervals measured in milliseconds. It is not suitable for other types of time series.
The computed features are widely used in clinical and physiological studies of autonomic nervous system activity. The Poincaré plot measures (SD1 and SD2) are standard metrics for short- and long-term variability, while the triangular indices provide geometric summaries of the RR distribution.
References
- Parameters:¶
- x : array-like¶
Time series of RR intervals in milliseconds.
- Returns:¶
out – Dictionary containing the following HRV features
’tri10’ : Triangular histogram index using 10 bins.
’tri20’ : Triangular histogram index using 20 bins.
- ’trisqrt’Triangular histogram index using a number of bins determined by
the square root rule.
’SD1’ : Standard deviation of the Poincaré plot’s minor axis (short-term variability).
’SD2’ : Standard deviation of the Poincaré plot’s major axis (long-term variability).
- Return type:¶
dict