Skip to content

Commit 4e57247

Browse files
Update MEArec reference in Quickstart
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
1 parent 9f2e03f commit 4e57247

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

examples/get_started/quickstart.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
# https://gin.g-node.org/NeuralEnsemble/ephy_testing_data repo
7979
# We download the dataset using DataLad but it can also be downloaded directly.
8080

81-
# Then we can open it. Note that [MEArec](https://mearec.readthedocs.io>) simulated files
81+
# Then we can open it. Note that [MEArec](https://mearec.readthedocs.io) simulated files
8282
# contain both a "recording" and a "sorting" object.
8383

8484
local_path = si.download_dataset(remote_path="mearec/mearec_test_10s.h5")
@@ -288,15 +288,15 @@
288288

289289
# The calculations are saved in the `extensions` subfolder of the `SortingAnalyzer` folder.
290290
# Similar to the waveforms we can access them using `get_extension` and `get_data`. For example,
291-
# here we can make a historgram of spike amplitudes
291+
# here we can make a histogram of spike amplitudes
292292

293293
# +
294294
amplitudes = analyzer_TDC.get_extension("spike_amplitudes").get_data()
295295
plt.hist(amplitudes, bins=50)
296296
plt.show()
297297
# -
298298

299-
# You can check which extensions have been saved (in your local folder) and which have been loaded (in your enviroment)...
299+
# You can check which extensions have been saved (in your local folder) and which have been loaded (in your environment)...
300300

301301
# +
302302
print(analyzer_TDC.get_saved_extension_names())

0 commit comments

Comments
 (0)