@@ -130,24 +130,30 @@ Methods from clipping correction and peak detection algorithm is adapted from [#
130130 .. figure :: https://github.com/embodied-computation-group/systole/raw/master/Images/recording.png
131131 :align: center
132132
133- Artefact removal
133+ Artefact correction
134134================
135135
136136Systole implements the artefact rejection method recently proposed by Lipponen & Tarvainen (2019) [# ]_.
137137
138138.. code-block :: python
139139
140- from systole import import_rr()
140+ from systole import simulate_rr
141141 from systole.plotting import plot_subspaces
142142
143- rr = import_rr().rr[:100 ]
144- rr[20 ] = 1600 # Add missed beat
145-
143+ rr = simulate_rr()
146144 plot_subspaces(rr)
147145
148146 .. figure :: https://github.com/embodied-computation-group/systole/raw/master/Images/subspaces.png
149147 :align: center
150148
149+ Interactive visualization
150+ =========================
151+
152+ Systole integrates a set of functions for interactive data visualization based on `Plotly <https://plotly.com/ >`_.
153+
154+ .. figure :: https://github.com/embodied-computation-group/systole/raw/master/Images/systole.gif
155+ :align: center
156+
151157Heartrate variability
152158======================
153159
@@ -157,7 +163,7 @@ All time-domain and non-linear indices have been tested against Kubios HVR 2.2 (
157163
158164.. code-block :: python
159165
160- from systole.hrv import plot_psd
166+ from systole.plotting import plot_psd
161167
162168 plot_psd(rr)
163169
@@ -171,6 +177,11 @@ This module was created and is maintained by Nicolas Legrand and Micah Allen (EC
171177
172178This program is provided with NO WARRANTY OF ANY KIND.
173179
180+ Contributors
181+ ============
182+
183+ - Jan C. Brammer (jan.c.brammer@gmail.com)
184+
174185Acknowledgements
175186================
176187
@@ -182,6 +193,8 @@ Systole was largely inspired by pre-existing toolboxes dedicated to heartrate va
182193
183194* hrv: https://github.com/rhenanbartels/hrv
184195
196+ * pyHVR: https://pyhrv.readthedocs.io/en/latest/index.html
197+
185198* ECG-detector: https://github.com/berndporr/py-ecg-detectors
186199
187200* Pingouin: https://pingouin-stats.org/
0 commit comments