소스 검색

spellcheck

mvonpapen 5 년 전
부모
커밋
a2c824375f
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  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",