python-neo
python-neo copied to clipboard
Neo is a package for representing electrophysiology data in Python, together with support for reading a wide range of neurophysiology file formats
Currently lazy loading is implemented by loading the complete dataset in order to determine the size of data objects, in particular AnalogSignals. Although it is faster than loading without lazy...
When saving a spiketrain with a waveform array of shape `(0,0,0)` and loading it again using the NixIO, the new shape of the waveform array is `(0,)`. Here is some...
cf https://github.com/NeuralEnsemble/elephant/pull/59
The analog signals read from ABF files are roughly 500 times larger than the correct value. The ABF file which I'm using is the ABF V1.60 and I'm using Python...
Dear Neo development team I am trying to import an SMR file using neo.Spike2IO. The sampling rate of one of the read analog signals is different from what is shown...
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: ``` *...
## Context In PR #1601, @zm711 raised concerns about the usage and stability of stream_index as a public API in neo.rawio. The primary concern is whether changes to the ordering...
Fixes #1631 (I hope) The file is labeled as win, which worked locally for me, but I have a windows so first need to make sure it works on the...