From 4f2c9a5ed44e068487724f279d6ab785037933c2 Mon Sep 17 00:00:00 2001 From: Dmitry Podvyaznikov Date: Tue, 26 Dec 2017 14:49:41 +0300 Subject: [PATCH] Updated release note and documentation of EcgBatch --- RELEASE.md | 8 ++++++-- docs/api/core.rst | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index e8cc798..4deee4e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,16 +1,17 @@ # Release 0.2.0 ## Major Features and Improvements -* ``load`` method now supports new signal formats: +* `load` method now supports new signal formats: * DICOM * EDF * wav -* ``meta`` component structure has changed - now it always contains a number of predefined keys. +* `meta` component structure has changed - now it always contains a number of predefined keys. * Added channels processing methods: * `EcgBatch.keep_channels` * `EcgBatch.drop_channels` * `EcgBatch.rename_channels` * Added `apply_to_each_channel` method. +* Added `standardize` method. * Added complex ECG transformations: * Fourier-based transformations: * `EcgBatch.fft` @@ -28,6 +29,9 @@ ## Breaking Changes to the API * `apply_transform` method's signature has changed. +* `show_ecg` method's signature has changed. +* `calc_ecg_parameters` method's signature has changed. +* `wavelet_transform` method has been deleted. * `update` method has been deleted. * `replace_labels` method has been renamed to `rename_labels`. * `slice_signal` method has been renamed to `slice_signals`. diff --git a/docs/api/core.rst b/docs/api/core.rst index 7e3642d..94f6660 100644 --- a/docs/api/core.rst +++ b/docs/api/core.rst @@ -77,6 +77,7 @@ Wavelet-based transformations Other methods """"""""""""" .. automethod:: cardio.EcgBatch.calc_ecg_parameters + .. automethod:: cardio.EcgBatch.standardize EcgDataset