wfdb-python icon indicating copy to clipboard operation
wfdb-python copied to clipboard

Native Python WFDB package

Results 110 wfdb-python issues
Sort by recently updated
recently updated
newest added

We should aim to prevent the creation of WFDB headers which aren't to specification (via the WFDB write functions). We should also provide clear messaging for errors related to already...

Hi, I noticed writing an annotation file was slow for a file with many annotations. Running line-profiling on writing functions, I found out that the `field2bytes` function was taking up...

`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`...

Hi everyone, this is my first time writing an issue as well as using wfdb so, excuse me in advance for the mistakes I'll surely make :) I'm trying to...

Hi! I just encounter strange error. It seems for me like function rdedfann doesn't work at all. I confused, because it seems it doesn't represent any specific use case, just...

In running `multi_to_single`, some information is lost. In particular, empty segments are converted to NaNs in the out object's signals array, but the limits of the known empty segments are...

The current implementation is rather fragile and hard to generalize at times. In particular: - The `segments` attribute is a list of `Record` or `None` objects. Perhaps empty records could...

New record class addressing #376, #371. ```python def read_header(record_name: str) -> RecordInfo: """ Reads a header file, and returns a RecordInfo object containing the metadata fields """ # ...Bunch of...