Module ReadHolter

Extracts the data contained in the Holter’s file of a patient.

class ReadHolter.HolterData.HolterData

Class that handles the IO to extract information from Holter txt data files. So far, this class is able to read RR interval.txt format from Sorin data.

read_holter_file(fileName)

Function that read an RR-interval.txt file with Sorin format. Extracts the information contained in fileName Saves the file’s information in a dictionary with the entrances described below

  • Name: file’s name
  • HolterInfo: First line of the file, Holter’s various information
  • HRegTime: Begin and end time of the recording
  • RRInt: Values of the RR Intervals
  • Labels: Types of beat (N:normal, V:ventricular, A:atrial)
fileName : str
Name of the RR-interval txt from Holter file. It supposed to be in the current directory.
pat : dict
Dictionary with the complete information from the Holter. pat[‘Name’];pat[‘HolterInfo’];pat[‘HRegTime’];pat[‘RRInt’]; pat[‘Labels’]

Previous topic

Module HRT

This Page