I am using jupyter notebook documentation to get access to the data, as prescribed in the documentation Using unit_id and channel_id, we can select the spikes and LFP within an arbitrary time interval. Noted that we need to use method='nearest' when selecting the LFP data channel, since not every electrode is included in the LFP DataArray. I want to confirm what I understood from the python notebooks documentation, the number of units_of_interest, is the LFP Data which is associated with the spike times right? and the units_of_interest is not more than 10, we want to work on a large number of channels which has spike times.
Since I want to work on the processing of a large datasets, I was wondering how can I get access to the raw electrode data and spike times of all the probes of a particular session.
Is it the correct way to dowload the spike_band.dat file from download option, I hope that this is file which contains the raw data of particular probe of a session. and I do want to know how do I read such a large file in my system
In Jupyter Notebook, you can use unit_id and channel_id to select spikes and LFP (Local Field Potential) data within a specific time interval. When selecting LFP data, it’s important to use the method=‘nearest’ because not all electrodes are included in the LFP DataArray. The “units_of_interest” refers to the units (neurons) you want to analyze, which are associated with spike times. Typically, the spike times are provided as an array or data structure.
If you want to access the raw electrode data and spike times for all probes in a session, you’ll need to refer to the specific data source or library you’re using, following the documentation or examples provided. The method or function to access this information depends on the data format and tools you’re working with.