Skip to content

Commit 387b962

Browse files
author
Nicolas Legrand
committed
Update index website
1 parent a8a5804 commit 387b962

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

source/index.rst

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

136136
Systole 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+
151157
Heartrate 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

172178
This program is provided with NO WARRANTY OF ANY KIND.
173179

180+
Contributors
181+
============
182+
183+
- Jan C. Brammer (jan.c.brammer@gmail.com)
184+
174185
Acknowledgements
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

Comments
 (0)