Coder Social home page Coder Social logo

pyhrv's Introduction

Image

This repository contains the HRV toolbox (Python package) developed within the scope of my master thesis "Development of an Open-Source Python Toolbox for Heart Rate Variability (HRV)").

The HRV algorithms have been developed and implemented according to the Heart Rate Variability - Sandards of Measurement, Physiological Interpretation, and Clinical Use guidelines and other references which are notes in the code itself (will be entirely updated soon).

Below follows as list of the parameters and features. Major updates will be listed in the changelog.

IMPORTANT: pyHRV had some installation issues under Python3 which have been fixed in v.0.3.2

Getting Started

Installation

This toolbox can be installed using the pip tool (works for Python 2 and 3):

pip install pyhrv

NOTE: Python 3 installation issues using pip install have now been fixed with v.0.3.2

Documentation & Tutorials

An overview of all the available functions and short quickstart tutorials can be found in the README file found within the pyhrv package.

The official pyHRV Documentation is now available on ReadTheDocs:

https://pyhrv.readthedocs.io

HRV Parameter List

The following HRV parameters can be computed with this toolbox.

(NNI: Normal-to-Normal Interval, HR: Heart Rate, SD: Standard deviation, PSD: Power Spectral Density)

Time Domain Parameters

  • Basic statistical parameters of an NNI series (min, max, mean)
  • Basic statistical parameters of an NNI differences series (min, max, mean, max difference)
  • Basic statistical parameters of an HR series (min, max, mean, SD)
  • Standard Deviation of NNI (SDNN)
  • Mean of the SD of 5min segments (SDNN Index)
  • SD of the Mean of 5min segments (SDANN)
  • Root Mean Square of Successive Differences (RMSSD)
  • SD of Successive Differences (SDSD)
  • NN50 (NNI > 50ms) and pNN50 (% of NNI > 50ms)
  • NNX (NNI > Xms) and pNN50 (% of NNI > Xms)
  • Triangular Index
  • Baseline Width of the Histogram based on Triangular Interpolation (TINN) (TINN, N, M)

Frequency Domain Parameters

Computes the following PSD parameters from the Welch's Method and the Lomb-Scargle periodogram (with default or custom frequency bands):

  • Peak Frequencies
  • Absolute Powers
  • Logarithmic Powers
  • Relative Powers
  • Normalized Powers (LF and HF only)
  • LF/HF ratio

Nonlinear Parameters

  • Poincaré Plot (SD1, SD2, fittes ellipse area, SD2/SD1 ratio)
  • Sample Entropy
  • Detrended Fluctuation Analysis (short-term and long-term)

Additional HRV Tools

  • Computation of NNI series
  • Computation of ∆NNI series
  • Computation of HR series
  • Signal segmentation
  • ECG plotting on medical-grade-like ECG paper layout
  • Tachogram plotting
  • HRV report generation (.txt and .csv format)
  • HRV result exportation and importion (.json format)

Sample Figures

ECG Plot

Image

Tachogram

Image

Histogram & Geometrical Parameters

Image

Frequency Domain - Welch's Periodogram

Image

Frequency Domain - Lomb-Scargle Periodogram

Image

Frequency Domain - Autoregressive Method

Image

Nonlinear - Poincaré & Detrended Fluctuation Analysis

Image

Dependencies

Context of this Work

This package has initially been developed within the scope of my master thesis "Development of an Open-Source Python Toolbox for Heart Rate Variability (HRV)" at the University of Applied Sciences Hamburg, Germany (Faculty Life Sciences, Department of Biomedical Engineering) and PLUX wireless biosignals, S.A., Lisbon, Portugal.

Other Support Packages Developed within the Skope of this Work

OpenSignalsReader

Python package to read OpenSignals (r)evolution files and automatic sensor data conversion for BITalino (r)evolution sensor data.

This package has been developed to facilitate the import of ECG sensor data acquired with BITalino (r)evolution to conduct HRV analysis.

Visit the repository for more detailed information:

https://github.com/PGomes92/opensignalsreader

(OpenSignals (r)evolution (by PLUX wireless biosignals S.A.) is the official software for the BITalino and biosignalsplux biosignal acquisition platforms.)

KUBIOS

Python package to export NN/RR interval series in KUBIOS HRV readable format and to import HRV results from KUBIOS report files in .txt format.

Visit the repository for more detailed information:

https://github.com/PGomes92/kubios

Citing

Please use the citation format below if you need to cite this package in any of your work:

@Misc{,
  author = {Pedro Gomes, Hugo Silva, Petra Margaritoff},
  title = {{pyHRV} - Open-Source Python Toolbox for Heart Rate Variability},
  year = {2018--},
  url = "https://github.com/PGomes92/hrv-toolkit/",
  note = {[Online; accessed <today>]}
}

Repository Structure Info

.
├── pyhrv                           # HRV toolbox/package (where the magic happens)
|   └──files                        # Sample files & HRV keys
|   |   ├── hrv_keys.json           # HRV keys to access the parameter results stored in
|   |   |                           # biosspy.utils.ReturnTuple objects & parameter labels
|   |   ├── SampleExport.json       # Sample export file generated with pyhrv.tools.hrv_export()
|   |   ├── SampleReport.txt        # Sample export file generated with pyhrv.tools.hrv_report()
|   |   └── SampleECG.txt           # BITalino (r)evolution sample ECG acquistion
|   |
|   ├── samples                     # 50 sample NNI series
|   |
|   ├── README.md                   # Package overview & quick start guide/examples
|   ├── references.txt              # References used in the in-code documentation
|   ├── __init__.py                 # Package initialitation file
|   ├── __version__.py              # Package version file
|   ├── tools.py                    # HRV tools (nni, segmentation, reports, ...)
|   ├── hrv.py                      # HRV package level function
|   ├── time_domain.py              # Time domain parameter functions
|   ├── frequency_domain.py         # Frequency domain parameter functions
|   └── noninear.py                 # Nonlinear parameter functions
|
├── SampleFigures                   # Sample figures of plots
|   └──readmefigures                # readmefigures
├── changelog.md                    # Changelog
├── LICENSE.txt                     # License information
└── README.py                       # <- you are here

Disclaimer

This program is distributed in the hope it will be useful and provided to you "as is", but WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program is NOT intended for medical diagnosis. We expressly disclaim any liability whatsoever for any direct, indirect, consequential, incidental or special damages, including, without limitation, lost revenues, lost profits, losses resulting from business interruption or loss of data, regardless of the form of action or legal theory under which the liability may be asserted, even if advised of the possibility of such damages.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.