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
Copy file name to clipboardExpand all lines: doc/modules/core.rst
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ All classes support:
21
21
* data on-demand (lazy loading)
22
22
* multiple segments, where each segment is a contiguous piece of data (recording, sorting, events).
23
23
24
-
24
+
.. _core-recording:
25
25
Recording
26
26
---------
27
27
@@ -162,7 +162,7 @@ Internally, any sorting object can construct 2 internal caches:
162
162
2. a unique numpy.array with structured dtype aka "spikes vector". This is useful for processing by small chunks of
163
163
time, like for extracting amplitudes from a recording.
164
164
165
-
165
+
.. _core-sorting-analyzer:
166
166
SortingAnalyzer
167
167
---------------
168
168
@@ -179,9 +179,8 @@ to perform further analysis, such as calculating :code:`waveforms` and :code:`te
179
179
Importantly, the :py:class:`~spikeinterface.core.SortingAnalyzer` handles the *sparsity* and the physical *scaling*.
180
180
Sparsity defines the channels on which waveforms and templates are calculated using, for example, a
181
181
physical distance from the channel with the largest peak amplitude (see the :ref:`Sparsity` section). Scaling, set by
182
-
the :code:`return_scaled` argument, says whether the data has been converted from integer values to physical units such as
183
-
Voltage (see the end of the :ref:`Recording` section).
184
-
182
+
the :code:`return_scaled` argument, determines whether the data is converted from integer values to :math:`\mu V` or not.
183
+
By default, :code:`return_scaled` is true and all processed data voltage values are in :math:`\mu V` (e.g., waveforms, templates, spike amplitudes, etc.).
185
184
186
185
Now we will create a :code:`SortingAnalyzer` called :code:`sorting_analyzer`.
0 commit comments