Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/algorithmfunctioning.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ A Butterworth filter implementation is available to remove high frequency noise.

import heartpy as hp

filtered = hp.butter_lowpass_filter(data, cutoff=5, sample_rate=100.0, order=3)
filtered = hp.filter_signal(data, cutoff=5, sample_rate=100.0, order=3, filtertype='lowpass')

.. image:: images/butterworth.jpeg

Expand Down
1 change: 0 additions & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ Several optional arguments are available:

* **windowsize:** _optional_ `windowsize` is the window size used for the calculation of the moving average. The windowsize is defined as `windowsize * samplerate`. Default windowsize=0.75.
* **report_time:** _optional_ whether to report total processing time of process() loop.
* **calc_fft:** _optional_ whether to calculate frequency domain measures. Default = false Note: can cause slowdowns in some cases.
* **calc_freq:** _optional_ whether to calculate frequency domain measures. Default = false Note: can cause slowdowns in some cases.
* **freq_method:** _optional_ method used to extract the frequency spectrum. Available: 'fft' (Fourier Analysis), 'periodogram', and 'welch' (Welch's method), Default = 'welch'
* **interp_clipping:** if True, clipping parts of the signal are identified and the implied peak shape is interpolated. Default=False
Expand Down