Skip to content

Commit 235c1d2

Browse files
author
Nicolas Legrand
committed
- Remove coverage logs
- Update changelogs.rst
1 parent 07ad050 commit 235c1d2

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

.coverage

Lines changed: 0 additions & 1 deletion
This file was deleted.

source/changelog.rst

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,29 @@ What's new
66
.. contents:: Table of Contents
77
:depth: 2
88

9+
v0.1.2 (September 2020)
10+
--------------------
11+
12+
**New functions**
13+
14+
a. Add :py:func:`systole.utils.to_rr()`. for peaks or index vectors convertion to RR intervals
15+
b. Add :py:func:`systole.recording.BrainVisionExG()`, a class to read physio recording from BrainVision ExG products via TCP/IP connection.
16+
c. Add :py:func:`systole.recording.findOximeter()`, find the USB port where Nonin Oximeter is plugged by looping through the USB port and checking the input.
17+
d. Add :py:func:`systole.detection.ecg_peaks()`. A wrapper around py-ecg-detectors for basic ECG peaks detection.
18+
19+
**Enhancements**
20+
a. Improved documentation and examples.
21+
b. Simplification of PPG example data import.
22+
c. Improved interactive plotting functions.
23+
24+
925
v0.1.1 (June 2020)
1026
------------------
1127

1228
**New functions**
1329

1430
a. Add the **plotly** sub-module, a set of Plotly functions comprising :py:func:`systole.plotly.plot_raw`, :py:func:`systole.plotly.plot_subspaces`, :py:func:`systole.plotly.plot_ectopic`, :py:func:`systole.plotly.plot_shortLong`, :py:func:`systole.plotly.plot_frequency`, :py:func:`systole.plotly.plot_nonlinear`, :py:func:`systole.plotly.plot_timedomain`.
15-
b. Add :py:func:`plotly.utils.simulate_rr()`, for random RR interval simulation with different kind of artefacts. Can also return peak vector.
31+
b. Add :py:func:`systole.utils.simulate_rr()`, for random RR interval simulation with different kind of artefacts. Can also return peak vector.
1632
c. The **correction** sub-module has been largely rewritten and now include :py:func:`systole.correction.correct_extra`, :py:func:`systole.correction.correct_missed`, :py:func:`systole.correction.interpolate_bads`, :py:func:`systole.correction.correct_rr`, :py:func:`systole.correction.correct_peaks`, :py:func:`systole.correction.correct_missed_peaks`, :py:func:`systole.correction.correct_extra_peaks`. These function can correct artefacts either using peaks addition/removal or by interpolation of the RR time series.
1733

1834
**Enhancements**

systole/datasets/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class serialSim():
1515
sampling rate (75 Hz).
1616
"""
1717

18-
def __init__(self, id='1'):
18+
def __init__(self):
1919
self.sfreq = 75
2020
self.ppg = import_ppg().ppg.to_numpy()
2121
self.start = time.time()
@@ -29,7 +29,7 @@ def inWaiting(self):
2929

3030
return lenInWating
3131

32-
def read(self, length):
32+
def read(self, lenght):
3333

3434
if len(self.ppg) == 0:
3535
self.ppg = import_ppg().ppg.to_numpy()

0 commit comments

Comments
 (0)