Moritz Kern
Moritz Kern
Hey @morales-gregorio , the current test files for testing NEST-IO are located on [NeuralEnsemble](https://gin.g-node.org/NeuralEnsemble) / [ephy_testing_data](https://gin.g-node.org/NeuralEnsemble/ephy_testing_data) in `nest` here: https://gin.g-node.org/NeuralEnsemble/ephy_testing_data/src/master/nest The contents are: ```bash 0gid-1time-1256-0.gdf 0gid-1time-2gex-1262-0.dat 0gid-1time-2gex-3Vm-1261-0.dat 0gid-1time-2Vm-1259-0.dat 0gid-1time-2Vm-3gex-4gin-1260-0.dat 0gid-1time-2Vm-3Iex-4Iin-1264-0.dat...
Hey @apdavison and @JuliaSprenger , Thank you for the reviews and the valuable feedback you provided. I considered all your comments and made changes to the code. If you have...
Thanks for pointing this out. I have created PR #45 to address this point.
This could be traced down to api changes in release 3.6.0 of matplotlib. > The following arguments have been removed: > - ... > - Keyword arguments to gca(); there...
This seems to be outdated? Please reopen and correct me if I'm wrong on this.
todo: - [x] add new citation style, analogous to https://github.com/NeuralEnsemble/elephant/pull/523
Would also be interested in this, currently we are using a `.zenodo.json` with a "grants" field. ```json "grants": [ {"id": "604102"}, {"id": "720270"}, {"id": "785907"}, {"id": "945539"} ], ``` See:...
I encountered the same issue The `.nwb` file is publicly available, here: Code to reproduce: ```python from neo.io import NWBIO filepath = "sub-216301_ses-216301-20200521-probe0_ecephys+ogen.nwb" io = NWBIO(f"{filepath}",'r') block = io.read_block(block_index=1) ```...
Hey @Idavr , thanks for reporting this. Unfortunately I fail to reproduce this, I tried: ```python from elephant.conversion import BinnedSpikeTrain from elephant.cell_assembly_detection import cell_assembly_detection from elephant.spike_train_generation import StationaryPoissonProcess import numpy...
Hey Idavr , thanks for providing this example dataset. I have used the following code example to test different scenarios: ```python from neo import Segment, SpikeTrain import quantities as pq...