bemoody

Results 65 issues of bemoody

`plot_wfdb` has an option `plot_sym` to display the annotation type (mnemonic) next to each annotation. It'd be nice to have an option to display the aux strings, too.

WFDB annotation mnemonics ("symbols", in wfdb-python parlance) are not limited to a single character. (All of the standard mnemonics are a single character, but a custom mnemonic defined using `setannstr`...

If you pass annotations to `plot_items` or `plot_wfdb` that are before the start or after the end of the supplied signals, it will give an error ``` Exception: IndexError: try...

The function `wfdb.rdedfann` (alias `wfdb.io.rdedfann`) is not listed in the public documentation. Make a list here of other functions that should be considered part of the public API, but are...

If you have some multi-frequency data and are trying to save it as a WFDB record, currently the only way to do so is to create a Record object and...

The method used by WFDB to downsample signals in "low-resolution mode" is inaccurate (samples are rounded towards zero rather than to the nearest integer.) I'm intending to improve this by...

When writing a record (header + signal file) using `Record.wrsamp`, the signal data may either be single-frequency (`d_signal`) or multi-frequency (`e_d_signal`). If `expanded=True`, then `wrsamp` takes the data from `e_d_signal`...

For some applications, it's useful to be able to access the full details of the messages reported by the validator (for example, so they can report errors in a more...

It would be really nice to be able to check documents and obtain the error/warning messages programmatically. Currently, the function 'Validator.validate' simply dumps the output to the logger, and returns...

There are a couple of ways to write a record using this package. One is `wfdb.wrsamp`, the other is creating a `Record` object and calling the `wrsamp` method. `Record.wrsamp` was,...