Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
alejoe91 authored Mar 15, 2024
1 parent 32b2b53 commit baf53b4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/modules/core.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ The :code:`sorting_analyzer` object implements convenient functions to access th
num_channels = sorting_analyzer.get_num_channels()
num_units = sorting_analyzer.get_num_units()
sampling_frequency = sorting_analyzer.sampling_frequency
sampling_frequency = sorting_analyzer.get_sampling_frequency()
# or: sampling_frequency = sorting_analyzer.sampling_frequency
total_num_samples = sorting_analyzer.get_total_samples()
total_duration = sorting_analyzer.get_total_duration()
### NOTE ###
Expand Down Expand Up @@ -269,7 +270,7 @@ The :py:class:`~spikeinterface.core.SortingAnalyzer` by default is defined *in m
| data are saved to either :code:`npy` (for arrays), :code:`csv` (for dataframes), or :code:`pickle` (for everything else).

The :code:`SortingAnalyzer.save_as` function will save the object **and all its extension** to disk.
The :code:`SortingAnalyzer.save_as` function will save the object **and all its extensions** to disk.

.. code-block:: python
# create a "processed" folder
Expand Down

0 comments on commit baf53b4

Please sign in to comment.