You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Raw data formats often store data as integer values for memory efficiency. To give these integers meaningful physical units (uV), you can apply a gain and an offset.
97
98
Many devices have their own gains and offsets necessary to convert their data and these values are handled by SpikeInterface for its extractors. This
98
-
is triggered by the :code:`return_in_uV` parameter in :code:`get_traces()`, (see above example), which will return the traces in uV.
99
+
is triggered by the :code:`return_in_uV` parameter in :code:`get_traces()`, (see above example), which will return the traces in uV. Read more in our how to guide, :ref:`physical_units`.
99
100
100
101
101
102
Sorting
@@ -118,7 +119,7 @@ with 10 units:
118
119
.. code-block:: python
119
120
120
121
unit_ids = sorting.unit_ids
121
-
num_channels= sorting.get_num_units()
122
+
num_units= sorting.get_num_units()
122
123
sampling_frequency = sorting.sampling_frequency
123
124
124
125
# retrieve spike trains for a unit (returned as sample indices)
@@ -217,6 +218,7 @@ is run again with one of the backends supplied.
217
218
218
219
.. code-block:: python
219
220
221
+
from pathlib import Path
220
222
# create a "processed" folder
221
223
processed_folder = Path("processed")
222
224
@@ -266,8 +268,7 @@ The :code:`sorting_analyzer` object implements convenient functions to access th
0 commit comments