Todd
Todd
Currently combi supports doing a cartesian product using the `ProductSpace` class. However, in many cases you don't want the every possible combination of all sequences, but rather want to restrict...
Currently the variable inspector is a separate tab. However, jupyterlab has a right sidebar that seems to be specifically for tools like this. That would allow it to be easily...
**Describe the bug** When using `move_mean` on an array with no negative values, the result can somehow contain negative values anyway. This shouldn't be possible, since the mean of non-negative...
It is impossible to read a `wav` file contained in a `SoundFile` object without specify a length, even though it is possible for the `read` function. Consider this (using the...
Currently pypet runs all possible combinations of parameters. This may not be feasible due to time constraints. A common approach to dealing with this issue is [latin hypercube sampling](https://en.wikipedia.org/wiki/Latin_hypercube_sampling), which...
### Description of the problem When using `mne.channels.combine_channels` on `mne.Epochs` or `mne.EpochsArray` objects with missing channels where the user had previously used `on_missing='ignore'` or `on_missing='warn'` it will raise an exception....
Currently users need to know a lot about the specifics of their IO class to read it properly. One of the biggest problems is that, without reading the documentation, the...
For those who don't know, context managers are classes that can be used with python `with` statements. I think it would be beneficial for IO classes to be able to...
Originally from #62 Remove `sampling_rate` from `SpikeTrain` **crodger wrote on 2011-09-28 01:15:59:** Actually it has not been clarified exactly what `waveforms` should be yet. Let me propose this: ``` *...