Clemens Brunner

Results 578 comments of Clemens Brunner

We might consider adding a new parameter `antialias=True` to `Raw.resample()`, but I'd rather not unless it would be helpful for a larger group of users. So if you can live...

OK! Then instead of adding a parameter to `resample()`, it is better to add a new `decimate()` method as you suggested.

I don't think this is a bug either, but a convention. Consider a signal sampled with 250 Hz, and you would like to get exactly one second of data (let's...

Hm. It seems like skipping columns always occurs after all data has been read, which is why the warning makes sense if you know how `read_csv` works. If you naively...

I just stumbled over this issue again. I'm reading a CSV file with an extra delimiter at the end of each line (so `read_csv` spits out a warning "Missing column...

I just saw that `readr::read_delim()` has a `skip_empty_rows` parameter. Maybe introducing a `skip_empty_cols` parameter would make sense?

Quick question regarding which manylinux package a project should provide by default. Apart from missing Python 3.10 support, would it be sufficient to only provide a `manylinux1` wheel? And if...

> You can provide the lowest one, it will have the best compatibility. OK, this makes sense. > If you can build it with a newer image, that's even better...

Thanks @mayeut, upgrading to the latest version solved the issue!

Instead of a tool that checks if type annotations and types in docstrings are compatible, direct support for type annotations in numpydoc would be much better IMO. I'd love to...