Skip to content

Commit

Permalink
add xarray to docs instead + couple more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
zm711 committed Mar 6, 2024
1 parent 7011166 commit b74127e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions examples/modules_gallery/core/plot_4_sorting_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
SortingAnalyzer
===============
SpikeInterface provides an object to gather a Recording and a Sorting to make
analysis and visualization of the sorting : :py:class:`~spikeinterface.core.SortingAnalyzer`.
SpikeInterface provides an object to gather a Recording and a Sorting to perform various
analyses and visualizations of the sorting : :py:class:`~spikeinterface.core.SortingAnalyzer`.
This :py:class:`~spikeinterface.core.SortingAnalyzer` class:
Expand Down Expand Up @@ -152,7 +152,7 @@


###############################################################################
# The SortingAnalyzer also offeres select_units() method wich allows exporting
# The SortingAnalyzer also offers select_units() method which allows exporting
# only some relevant units for instance to a new SortingAnalyzer instance.

analyzer_some_units = analyzer.select_units(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Similarly to `NEO <https://github.com/NeuralEnsemble/python-neo>`_ we define each subpart as a "segment".
SpikeInterface has tools to interacct with these segments. There are two ways:
SpikeInterface has tools to interact with these segments. There are two ways:
1. :py:func:`~spikeinterface.core.append_recordings()` and :py:func:`~spikeinterface.core.append_sortings()`
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ dependencies = [
"threadpoolctl>=3.0.0",
"tqdm",
"zarr>=0.2.16",
"xarray",
"neo>=0.13.0",
"probeinterface>=0.2.21",
]
Expand Down Expand Up @@ -90,6 +89,7 @@ streaming_extractors = [
full = [
"h5py",
"pandas",
"xarray",
"scipy",
"scikit-learn",
"networkx",
Expand Down Expand Up @@ -169,6 +169,7 @@ docs = [
"pandas", # in the modules gallery comparison tutorial
"hdbscan>=0.8.33", # For sorters spykingcircus2 + tridesclous
"numba", # For many postprocessing functions
"xarray", # For use of SortingAnalyzer zarr format
# for release we need pypi, so this needs to be commented
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git", # We always build from the latest version
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git", # We always build from the latest version
Expand Down

0 comments on commit b74127e

Please sign in to comment.