Browse Source

spellcheck

mvonpapen 5 years ago
parent
commit
a2c824375f
1 changed files with 4 additions and 4 deletions
  1. 4 4
      NetworkUnit_examples.ipynb

+ 4 - 4
NetworkUnit_examples.ipynb

@@ -254,7 +254,7 @@
    "metadata": {},
    "source": [
     "# Define NetworkUnit classes<a id='cla'></a>\n",
-    "A general experimental data class is defined, which is the basis to load the two data sets into the NetworkUnit framework. For the sake of simplicity, we load all the single unit activity data within a fixed time window of 800ms ranging from `'TS_ON'` to `'CUE_ON'`. `'TS_ON'` defines the start of the trial and 800ms later the grip type is signalled by `'CUE_ON'`. This means that there is no trial type information in the given time window. The data is handed over to NetworkUnit as a list of spiketrains with `n_units * n_trial` elements. Spike trains are discarded if their signal to noise ration is small (`SNR`$<2.5$)."
+    "A general experimental data class is defined, which is the basis to load the two data sets into the NetworkUnit framework. For the sake of simplicity, we load all the single unit activity data within a fixed time window of 800ms ranging from `'TS_ON'` to `'CUE_ON'`. `'TS_ON'` defines the start of the trial and 800ms later the grip type is signaled by `'CUE_ON'`. This means that there is no trial type information in the given time window. The data is handed over to NetworkUnit as a list of spike trains with `n_units * n_trial` elements. Spike trains are discarded if their signal to noise ration is small (`SNR`$<2.5$)."
    ]
   },
   {
@@ -292,7 +292,7 @@
     "        stop_event = get_events(data_segment, properties={\n",
     "                'trial_event_labels': self.params['stop_trigger'],\n",
     "                'performance_in_trial': session.performance_codes['correct_trial']})[0]\n",
-    "        # select segments and get spiketrains\n",
+    "        # select segments and get spike trains\n",
     "        selected_trial_segments = self.select_trial_segments(data_segment, start_event, stop_event)\n",
     "        spiketrains = self.get_spiketrains(selected_trial_segments)\n",
     "        return spiketrains\n",
@@ -509,7 +509,7 @@
    "cell_type": "markdown",
    "metadata": {},
    "source": [
-    "## Rasterplots"
+    "## Raster plots"
    ]
   },
   {
@@ -538,7 +538,7 @@
     "fig, ax = plt.subplots(nrows=ndat, ncols=1, figsize=(14,ndat*4), sharex=True)\n",
     "fig.subplots_adjust(hspace=0)\n",
     "\n",
-    "# plot first 2000 spiketrains as example\n",
+    "# plot first 2000 spike trains as example\n",
     "nunits = 2000\n",
     "sts_list = [d.spiketrains[:nunits] for d in DATA]\n",
     "\n",