Extracellular Electrophysiology Data

At the Allen Institute for Brain Science we carry out in vivo extracellular electrophysiology (ecephys) experiments in awake animals using high-density Neuropixels probes. The data from these experiments are organized into sessions, where each session is a distinct continuous recording period. During a session we collect:

  • spike times and characteristics (such as mean waveforms) from up to 6 neuropixels probes
  • local field potentials
  • behavioral data, such as running speed and eye position
  • visual stimuli which were presented during the session
  • cell-type specific optogenetic stimuli that were applied during the session

The AllenSDK contains code for accessing across-session (project-level) metadata as well as code for accessing detailed within-session data. The standard workflow is to use project-level tools, such as EcephysProjectCache to identify and access sessions of interest, then delve into those sessions' data using EcephysSession.

Project-level

The EcephysProjectCache class in allensdk.brain_observatory.ecephys.ecephys_project_cache accesses and stores data pertaining to many sessions. You can use this class to run queries that span all collected sessions and to download data for individual sessions.

Session-level

The EcephysSession class in allensdk.brain_observatory.ecephys.ecephys_session provides an interface to all of the data for a single session, aligned to a common clock. This notebook will show you how to use the EcephysSession class to extract these data.

In [1]:
# first we need a bit of import boilerplate
import os

import numpy as np
import xarray as xr
import pandas as pd
import matplotlib.pyplot as plt
from scipy.ndimage.filters import gaussian_filter

from allensdk.brain_observatory.ecephys.ecephys_project_cache import EcephysProjectCache
from allensdk.brain_observatory.ecephys.ecephys_session import (
    EcephysSession, 
    removed_unused_stimulus_presentation_columns
)
from allensdk.brain_observatory.ecephys.visualization import plot_mean_waveforms, plot_spike_counts, raster_plot
from allensdk.brain_observatory.visualization import plot_running_speed

# tell pandas to show all columns when we display a DataFrame
pd.set_option("display.max_columns", None)

Obtaining an EcephysProjectCache

In order to create an EcephysProjectCache object, you need to specify two things:

  1. A remote source for the object to fetch data from. We will instantiate our cache using EcephysProjectCache.from_warehouse() to point the cache at the Allen Institute's public web API.
  2. A path to a manifest json, which designates filesystem locations for downloaded data. The cache will try to read data from these locations before going to download those data from its remote source, preventing repeated downloads.
In [2]:
# Example cache directory path, it determines where downloaded data will be stored
manifest_path = os.path.join("/local1/ecephys_cache_dir/", "manifest.json")

cache = EcephysProjectCache.from_warehouse(manifest=manifest_path)

Querying across sessions

Using your EcephysProjectCache, you can download a table listing metadata for all sessions.

In [3]:
cache.get_session_table().head()
Out[3]:
published_at specimen_id session_type age_in_days sex full_genotype unit_count channel_count probe_count ecephys_structure_acronyms
id
715093703 2019-10-03T00:00:00Z 699733581 brain_observatory_1.1 118.0 M Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt 884 2219 6 [CA1, VISrl, nan, PO, LP, LGd, CA3, DG, VISl, ...
719161530 2019-10-03T00:00:00Z 703279284 brain_observatory_1.1 122.0 M Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt 755 2214 6 [TH, Eth, APN, POL, LP, DG, CA1, VISpm, nan, N...
721123822 2019-10-03T00:00:00Z 707296982 brain_observatory_1.1 125.0 M Pvalb-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt 444 2229 6 [MB, SCig, PPT, NOT, DG, CA1, VISam, nan, LP, ...
732592105 2019-10-03T00:00:00Z 717038288 brain_observatory_1.1 100.0 M wt/wt 824 1847 5 [grey, VISpm, nan, VISp, VISl, VISal, VISrl]
737581020 2019-10-03T00:00:00Z 718643567 brain_observatory_1.1 108.0 M wt/wt 568 2218 6 [grey, VISmma, nan, VISpm, VISp, VISl, VISrl]

Querying across probes

... or for all probes

In [4]:
cache.get_probes().head()
Out[4]:
ecephys_session_id lfp_sampling_rate name phase sampling_rate has_lfp_data unit_count channel_count ecephys_structure_acronyms
id
729445648 719161530 1249.998642 probeA 3a 29999.967418 True 87 374 [APN, LP, MB, DG, CA1, VISam, nan]
729445650 719161530 1249.996620 probeB 3a 29999.918880 True 202 368 [TH, Eth, APN, POL, LP, DG, CA1, VISpm, nan]
729445652 719161530 1249.999897 probeC 3a 29999.997521 True 207 373 [APN, NOT, MB, DG, SUB, VISp, nan]
729445654 719161530 1249.996707 probeD 3a 29999.920963 True 93 358 [grey, VL, CA3, CA2, CA1, VISl, nan]
729445656 719161530 1249.999979 probeE 3a 29999.999500 True 138 370 [PO, VPM, TH, LP, LGd, CA3, DG, CA1, VISal, nan]

Querying across channels

... or across channels.

In [5]:
cache.get_channels().head()
Out[5]:
ecephys_probe_id local_index probe_horizontal_position probe_vertical_position anterior_posterior_ccf_coordinate dorsal_ventral_ccf_coordinate left_right_ccf_coordinate ecephys_structure_id ecephys_structure_acronym ecephys_session_id lfp_sampling_rate phase sampling_rate has_lfp_data unit_count
id
849705558 792645504 1 11 20 8165.0 3314.0 6862.0 215.0 APN 779839471 1250.001479 3a 30000.035489 True 0
849705560 792645504 2 59 40 8162.0 3307.0 6866.0 215.0 APN 779839471 1250.001479 3a 30000.035489 True 0
849705562 792645504 3 27 40 8160.0 3301.0 6871.0 215.0 APN 779839471 1250.001479 3a 30000.035489 True 0
849705564 792645504 4 43 60 8157.0 3295.0 6875.0 215.0 APN 779839471 1250.001479 3a 30000.035489 True 0
849705566 792645504 5 11 60 8155.0 3288.0 6879.0 215.0 APN 779839471 1250.001479 3a 30000.035489 True 0

Querying across units

... as well as for sorted units.

In [6]:
units = cache.get_units()
units.head()
Out[6]:
waveform_PT_ratio waveform_amplitude amplitude_cutoff cumulative_drift d_prime waveform_duration ecephys_channel_id firing_rate waveform_halfwidth isi_violations isolation_distance L_ratio max_drift nn_hit_rate nn_miss_rate presence_ratio waveform_recovery_slope waveform_repolarization_slope silhouette_score snr waveform_spread waveform_velocity_above waveform_velocity_below ecephys_probe_id local_index probe_horizontal_position probe_vertical_position anterior_posterior_ccf_coordinate dorsal_ventral_ccf_coordinate left_right_ccf_coordinate ecephys_structure_id ecephys_structure_acronym ecephys_session_id lfp_sampling_rate name phase sampling_rate has_lfp_data date_of_acquisition published_at specimen_id session_type age_in_days sex genotype
id
915956282 0.611816 164.878740 0.072728 309.71 3.910873 0.535678 850229419 6.519432 0.164824 0.104910 30.546900 0.013865 27.10 0.898126 0.001599 0.99 -0.087545 0.480915 0.102369 1.911839 30.0 0.000000 NaN 733744647 3 27 40 NaN NaN NaN 8.0 grey 732592105 1249.996475 probeB 3a 29999.915391 True 2019-01-09T00:26:20Z 2019-10-03T00:00:00Z 717038288 brain_observatory_1.1 100.0 M wt/wt
915956340 0.439372 247.254345 0.000881 160.24 5.519024 0.563149 850229419 9.660554 0.206030 0.006825 59.613182 0.000410 7.79 0.987654 0.000903 0.99 -0.104196 0.704522 0.197458 3.357908 30.0 0.000000 NaN 733744647 3 27 40 NaN NaN NaN 8.0 grey 732592105 1249.996475 probeB 3a 29999.915391 True 2019-01-09T00:26:20Z 2019-10-03T00:00:00Z 717038288 brain_observatory_1.1 100.0 M wt/wt
915956345 0.500520 251.275830 0.001703 129.36 3.559911 0.521943 850229419 12.698430 0.192295 0.044936 47.805714 0.008281 11.56 0.930000 0.004956 0.99 -0.153127 0.781296 0.138827 3.362198 30.0 0.343384 NaN 733744647 3 27 40 NaN NaN NaN 8.0 grey 732592105 1249.996475 probeB 3a 29999.915391 True 2019-01-09T00:26:20Z 2019-10-03T00:00:00Z 717038288 brain_observatory_1.1 100.0 M wt/wt
915956349 0.424620 177.115380 0.096378 169.29 2.973959 0.508208 850229419 16.192413 0.192295 0.120715 54.635515 0.010406 14.87 0.874667 0.021636 0.99 -0.086022 0.553393 0.136901 2.684636 40.0 0.206030 NaN 733744647 3 27 40 NaN NaN NaN 8.0 grey 732592105 1249.996475 probeB 3a 29999.915391 True 2019-01-09T00:26:20Z 2019-10-03T00:00:00Z 717038288 brain_observatory_1.1 100.0 M wt/wt
915956356 0.512847 214.954545 0.054706 263.01 2.936851 0.549414 850229419 2.193113 0.233501 0.430427 18.136302 0.061345 18.37 0.637363 0.000673 0.99 -0.106051 0.632977 0.108867 2.605408 60.0 -0.451304 NaN 733744647 3 27 40 NaN NaN NaN 8.0 grey 732592105 1249.996475 probeB 3a 29999.915391 True 2019-01-09T00:26:20Z 2019-10-03T00:00:00Z 717038288 brain_observatory_1.1 100.0 M wt/wt
In [7]:
# There are quite a few of these
print(units.shape[0])
40010

Surveying metadata

You can answer questions like: "what mouse genotypes were used in this dataset?" using your EcephysProjectCache.

In [8]:
print(f"stimulus sets: {cache.get_all_session_types()}")
print(f"genotypes: {cache.get_all_full_genotypes()}")
print(f"structures: {cache.get_structure_acronyms()}")
stimulus sets: ['brain_observatory_1.1', 'functional_connectivity']
genotypes: ['Sst-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt', 'Pvalb-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt', 'wt/wt', 'Vip-IRES-Cre/wt;Ai32(RCL-ChR2(H134R)_EYFP)/wt']
structures: ['APN', 'LP', 'MB', 'DG', 'CA1', 'VISrl', nan, 'TH', 'LGd', 'CA3', 'VIS', 'CA2', 'ProS', 'VISp', 'POL', 'VISpm', 'PPT', 'OP', 'NOT', 'HPF', 'SUB', 'VISam', 'ZI', 'LGv', 'VISal', 'VISl', 'SGN', 'SCig', 'MGm', 'MGv', 'VPM', 'grey', 'Eth', 'VPL', 'IGL', 'PP', 'PIL', 'PO', 'VISmma', 'POST', 'SCop', 'SCsg', 'SCzo', 'COApm', 'OLF', 'BMAa', 'SCiw', 'COAa', 'IntG', 'MGd', 'MRN', 'LD', 'VISmmp', 'CP', 'VISli', 'PRE', 'RPF', 'LT', 'PF', 'PoT', 'VL', 'RT']

In order to look up a brain structure acronym, you can use our online atlas viewer. The AllenSDK additionally supports programmatic access to structure annotations. For more information, see the reference space and mouse connectivity documentation.

Obtaining an EcephysSession

We package each session's data into a Neurodata Without Borders 2.0 (NWB) file. Calling get_session_data on your EcephysProjectCache will download such a file and return an EcephysSession object.

EcephysSession objects contain methods and properties that access the data within an ecephys NWB file and cache it in memory.

In [9]:
session_id = 756029989 # for example
session = cache.get_session_data(session_id)
WARNING:root:downloading a 2.46e+03mb file from http://api.brain-map.org//api/v2/well_known_file_download/1026124216

This session object has some important metadata, such as the date and time at which the recording session started:

In [10]:
print(f"session {session.ecephys_session_id} was acquired in {session.session_start_time}")
session 756029989 was acquired in 2018-10-26 12:59:18-07:00

We'll now jump in to accessing our session's data. If you ever want a complete documented list of the attributes and methods defined on EcephysSession, you can run help(EcephysSession) (or in a jupyter notebook: EcephysSession?).

Sorted units

Units are putative neurons, clustered from raw voltage traces using Kilosort 2. Each unit is associated with a single peak channel on a single probe, though its spikes might be picked up with some attenuation on multiple nearby channels. Each unit is assigned a unique integer identifier ("unit_id") which can be used to look up its spike times and its mean waveform.

The units for a session are recorded in an attribute called, fittingly, units. This is a pandas.DataFrame whose index is the unit id and whose columns contain summary information about the unit, its peak channel, and its associated probe.

In [11]:
session.units.head()
/home/nicholas.mei/miniconda3/envs/allensdk/lib/python3.7/site-packages/allensdk/brain_observatory/ecephys/ecephys_project_api/ecephys_project_warehouse_api.py:291: FutureWarning: Conversion of the second argument of issubdtype from `bool` to `np.generic` is deprecated. In future, it will be treated as `np.bool_ == np.dtype(bool).type`.
  pv_is_bool = np.issubdtype(output["p_value_rf"].values[0], np.bool)
Out[11]:
L_ratio presence_ratio d_prime waveform_halfwidth cluster_id firing_rate peak_channel_id silhouette_score waveform_repolarization_slope waveform_amplitude snr waveform_velocity_below max_drift nn_miss_rate nn_hit_rate waveform_velocity_above waveform_spread amplitude_cutoff waveform_duration waveform_PT_ratio cumulative_drift isolation_distance isi_violations waveform_recovery_slope local_index_unit c50_dg area_rf fano_dg fano_fl fano_ns fano_rf fano_sg f1_f0_dg g_dsi_dg g_osi_dg g_osi_sg azimuth_rf mod_idx_dg p_value_rf pref_sf_sg pref_tf_dg run_mod_dg run_mod_fl run_mod_ns run_mod_rf run_mod_sg pref_ori_dg pref_ori_sg run_pval_dg run_pval_fl run_pval_ns run_pval_rf run_pval_sg elevation_rf pref_image_ns pref_phase_sg firing_rate_dg firing_rate_fl firing_rate_ns firing_rate_rf firing_rate_sg on_off_ratio_fl time_to_peak_ns pref_sf_multi_sg pref_tf_multi_dg pref_ori_multi_dg pref_ori_multi_sg pref_phase_multi_sg image_selectivity_ns pref_image_multi_ns lifetime_sparseness_dg lifetime_sparseness_fl lifetime_sparseness_ns lifetime_sparseness_rf lifetime_sparseness_sg probe_vertical_position probe_horizontal_position probe_id channel_local_index ecephys_structure_id ecephys_structure_acronym anterior_posterior_ccf_coordinate dorsal_ventral_ccf_coordinate left_right_ccf_coordinate probe_description location probe_sampling_rate probe_lfp_sampling_rate probe_has_lfp_data
unit_id
951814884 0.024771 0.99 3.555518 0.096147 6 9.492176 850126382 0.033776 0.673650 187.434780 3.342535 0.000000 45.64 0.016202 0.727333 0.000000 40.0 0.042404 0.151089 0.522713 463.86 46.750473 0.181638 -0.249885 5 NaN 2600.0 2.370440 1.765128 3.983333 1.866667 5.186364 0.244796 0.053998 0.033134 0.023705 61.923 0.612162 0.358 0.04 15.0 -0.154286 -0.005676 -0.228819 -0.212121 -0.310345 180.0 150.0 0.619716 9.763807e-01 0.507405 0.469507 0.447263 -5.000 4929 0.75 17.571944 11.057561 5.845194 8.805963 6.974832 NaN 0.0385 False False False False False 0.042644 False 0.011829 0.000012 0.062616 0.058606 0.039197 60 43 760640083 4 215.0 APN 8162.0 3487.0 6737.0 probeA See electrode locations 29999.949611 1249.9979 True
951814876 0.001785 0.99 4.445414 0.206030 5 39.100557 850126382 0.108908 0.518633 129.686505 2.589717 0.000000 40.68 0.003756 1.000000 0.000000 50.0 0.097286 0.315913 0.652514 325.21 85.178750 0.004799 -0.143762 4 NaN 900.0 3.417573 0.704762 0.672690 0.803980 1.003055 0.137709 0.017675 0.015248 0.027334 72.222 0.678473 0.795 0.04 2.0 0.326587 0.231595 0.062157 0.068548 0.068853 315.0 150.0 0.000030 6.157503e-07 0.353566 0.674185 0.472870 45.556 5021 0.00 43.390301 44.709848 36.820288 44.885084 35.195889 NaN 0.1535 False False False False False 0.214051 False 0.001812 0.000003 0.002366 0.004308 0.002943 60 43 760640083 4 215.0 APN 8162.0 3487.0 6737.0 probeA See electrode locations 29999.949611 1249.9979 True
951815032 0.035654 0.99 3.848256 0.096147 17 28.383277 850126398 0.096715 0.766347 207.380940 3.811566 -0.686767 40.01 0.014673 0.986000 -0.206030 80.0 0.015482 0.164824 0.484297 396.28 89.608836 0.007099 -0.255492 15 NaN 400.0 2.301810 1.408866 2.711028 1.714790 2.055258 0.173597 0.013665 0.007886 0.051909 85.000 0.768989 0.395 0.04 15.0 -0.026107 -0.220335 -0.345271 0.043011 -0.157445 135.0 120.0 0.827195 1.179300e-02 0.006750 0.867140 0.229617 5.000 4990 0.25 29.464485 28.829592 28.252666 28.025354 30.002900 NaN 0.0495 False False False False False -0.005102 False 0.004121 0.006973 0.006743 0.018808 0.007783 140 43 760640083 12 215.0 APN 8129.0 3419.0 6762.0 probeA See electrode locations 29999.949611 1249.9979 True
951815275 0.016783 0.99 3.065938 0.096147 30 5.709358 850126416 0.144249 0.628944 158.158650 2.918134 0.000000 33.32 0.003683 0.883598 0.686767 60.0 0.063807 0.178559 0.600600 374.82 48.114336 0.032317 -0.206676 27 NaN 200.0 3.264583 1.145098 2.160000 1.039456 2.604037 0.380119 0.018499 0.036959 0.072179 25.000 0.013071 0.786 0.04 15.0 -0.397810 -0.582707 -0.274725 -0.200000 0.068966 135.0 150.0 0.008270 6.722051e-07 0.466116 0.492931 0.872051 50.000 4938 0.50 10.510549 8.766114 1.972803 8.492365 3.180672 NaN 0.0495 False False False False False 0.298085 False 0.009918 0.002233 0.073080 0.035606 0.045548 220 11 760640083 21 215.0 APN 8095.0 3349.0 6787.0 probeA See electrode locations 29999.949611 1249.9979 True
951815314 0.009666 0.99 4.198612 0.123618 34 23.902235 850126420 0.111106 0.740222 173.475705 3.360324 -0.274707 42.80 0.017600 0.968000 -0.068677 90.0 0.072129 0.178559 0.459025 420.05 76.916334 0.048075 -0.171503 31 NaN 200.0 9.521138 1.815562 2.685161 3.029816 5.837914 0.353014 0.021465 0.033174 0.060387 90.000 1.961057 0.115 0.04 1.0 -0.381593 -0.110415 0.051182 -0.007519 -0.375085 135.0 0.0 0.009357 2.297652e-01 0.819053 0.977642 0.117368 -25.000 5021 0.50 36.370737 35.517418 14.132042 36.256753 14.647080 NaN 0.2055 False False False False False 0.009373 False 0.006669 0.025339 0.023017 0.028778 0.027993 240 27 760640083 23 215.0 APN 8088.0 3333.0 6792.0 probeA See electrode locations 29999.949611 1249.9979 True

As a pandas.DataFrame the units table supports many straightforward filtering operations:

In [12]:
# how many units have signal to noise ratios that are greater than 4?
print(f'{session.units.shape[0]} units total')
units_with_very_high_snr = session.units[session.units['snr'] > 4]
print(f'{units_with_very_high_snr.shape[0]} units have snr > 4')
684 units total
81 units have snr > 4

... as well as some more advanced (and very useful!) operations. For more information, please see the pandas documentation. The following topics might be particularly handy:

Stimulus presentations

During the course of a session, visual stimuli are presented on a monitor to the subject. We call intervals of time where a specific stimulus is presented (and its parameters held constant!) a stimulus presentation.

You can find information about the stimulus presentations that were displayed during a session by accessing the stimulus_presentations attribute on your EcephysSession object.

In [13]:
session.stimulus_presentations.head()
Out[13]:
color contrast frame orientation phase size spatial_frequency start_time stimulus_block stimulus_name stop_time temporal_frequency x_position y_position duration stimulus_condition_id
stimulus_presentation_id
0 null null null null null null null 24.429348 null spontaneous 84.496188 null null null 60.066840 0
1 null 0.8 null 45 [3644.93333333, 3644.93333333] [20.0, 20.0] 0.08 84.496188 0 gabors 84.729704 4 40 30 0.233516 1
2 null 0.8 null 45 [3644.93333333, 3644.93333333] [20.0, 20.0] 0.08 84.729704 0 gabors 84.979900 4 -30 10 0.250196 2
3 null 0.8 null 90 [3644.93333333, 3644.93333333] [20.0, 20.0] 0.08 84.979900 0 gabors 85.230095 4 10 -10 0.250196 3
4 null 0.8 null 90 [3644.93333333, 3644.93333333] [20.0, 20.0] 0.08 85.230095 0 gabors 85.480291 4 30 40 0.250196 4

Like the units table, this is a pandas.DataFrame. Each row corresponds to a stimulus presentation and lists the time (on the session's master clock, in seconds) when that presentation began and ended as well as the kind of stimulus that was presented (the "stimulus_name" column) and the parameter values that were used for that presentation. Many of these parameter values don't overlap between stimulus classes, so the stimulus_presentations table uses the string "null" to indicate an inapplicable parameter. The index is named "stimulus_presentation_id" and many methods on EcephysSession use these ids.

Some of the columns bear a bit of explanation:

  • stimulus_block : A block consists of multiple presentations of the same stimulus class presented with (probably) different parameter values. If during a session stimuli were presented in the following order:
    • drifting gratings
    • static gratings
    • drifting gratings then the blocks for that session would be [0, 1, 2]. The gray period stimulus (just a blank gray screen) never gets a block.
  • duration : this is just stop_time - start_time, precalculated for convenience.

What kinds of stimuli were presented during this session? Pandas makes it easy to find out:

In [14]:
session.stimulus_names # just the unique values from the 'stimulus_name' column
Out[14]:
['spontaneous',
 'gabors',
 'flashes',
 'drifting_gratings',
 'natural_movie_three',
 'natural_movie_one',
 'static_gratings',
 'natural_scenes']

We can also obtain the stimulus epochs - blocks of time for which a particular kind of stimulus was presented - for this session.

In [15]:
session.get_stimulus_epochs()
Out[15]:
start_time stop_time duration stimulus_name stimulus_block
0 24.429348 84.496188 60.066840 spontaneous null
1 84.496188 996.491813 911.995625 gabors 0
2 996.491813 1285.483398 288.991585 spontaneous null
3 1285.483398 1583.982946 298.499548 flashes 1
4 1583.982946 1585.734418 1.751472 spontaneous null
5 1585.734418 2185.235561 599.501143 drifting_gratings 2
6 2185.235561 2216.261498 31.025937 spontaneous null
7 2216.261498 2816.763498 600.502000 natural_movie_three 3
8 2816.763498 2846.788598 30.025100 spontaneous null
9 2846.788598 3147.039578 300.250980 natural_movie_one 4
10 3147.039578 3177.064688 30.025110 spontaneous null
11 3177.064688 3776.565851 599.501163 drifting_gratings 5
12 3776.565851 4077.834348 301.268497 spontaneous null
13 4077.834348 4678.336348 600.502000 natural_movie_three 6
14 4678.336348 4708.361438 30.025090 spontaneous null
15 4708.361438 5397.937871 689.576433 drifting_gratings 7
16 5397.937871 5398.938718 1.000847 spontaneous null
17 5398.938718 5879.340268 480.401550 static_gratings 8
18 5879.340268 5909.365398 30.025130 spontaneous null
19 5909.365398 6389.766968 480.401570 natural_scenes 9
20 6389.766968 6690.017948 300.250980 spontaneous null
21 6690.017948 7170.419568 480.401620 natural_scenes 10
22 7170.419568 7200.444628 30.025060 spontaneous null
23 7200.444628 7680.846188 480.401560 static_gratings 11
24 7680.846188 7710.871348 30.025160 spontaneous null
25 7710.871348 8011.122288 300.250940 natural_movie_one 12
26 8011.122288 8041.147408 30.025120 spontaneous null
27 8041.147408 8569.088694 527.941286 natural_scenes 13
28 8569.088694 8611.624248 42.535554 spontaneous null
29 8611.624248 9152.076028 540.451780 static_gratings 14

If you are only interested in a subset of stimuli, you can either filter using pandas or using the get_stimulus_table convience method:

In [16]:
session.get_stimulus_table(['drifting_gratings']).head()
Out[16]:
contrast orientation phase size spatial_frequency start_time stimulus_block stimulus_name stop_time temporal_frequency duration stimulus_condition_id
stimulus_presentation_id
3798 0.8 180 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 1585.734418 2 drifting_gratings 1587.736098 2 2.00168 246
3799 0.8 135 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 1588.736891 2 drifting_gratings 1590.738571 2 2.00168 247
3800 0.8 180 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 1591.739398 2 drifting_gratings 1593.741078 2 2.00168 246
3801 0.8 270 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 1594.741921 2 drifting_gratings 1596.743591 2 2.00167 248
3802 0.8 135 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 1597.744458 2 drifting_gratings 1599.746088 4 2.00163 249

We might also want to know what the total set of available parameters is. The get_stimulus_parameter_values method provides a dictionary mapping stimulus parameters to the set of values that were applied to those parameters:

In [17]:
for key, values in session.get_stimulus_parameter_values().items():
    print(f'{key}: {values}')
color: [-1.0 1.0]
contrast: [0.8 1.0]
frame: [-1.0 0.0 1.0 ... 3597.0 3598.0 3599.0]
orientation: [0.0 30.0 45.0 60.0 90.0 120.0 135.0 150.0 180.0 225.0 270.0 315.0]
phase: ['0.0' '0.25' '0.5' '0.75' '[0.0, 0.0]' '[3644.93333333, 3644.93333333]'
 '[42471.86666667, 42471.86666667]']
size: ['[1920.0, 1080.0]' '[20.0, 20.0]' '[250.0, 250.0]' '[300.0, 300.0]']
spatial_frequency: ['0.02' '0.04' '0.08' '0.16' '0.32' '[0.0, 0.0]']
temporal_frequency: [1.0 2.0 4.0 8.0 15.0]
x_position: [-40.0 -30.0 -20.0 -10.0 0.0 10.0 20.0 30.0 40.0]
y_position: [-40.0 -30.0 -20.0 -10.0 0.0 10.0 20.0 30.0 40.0]

Each distinct state of the monitor is called a "stimulus condition". Each presentation in the stimulus presentations table exemplifies such a condition. This is encoded in its stimulus_condition_id field.

To get the full list of conditions presented in a session, use the stimulus_conditions attribute:

In [18]:
session.stimulus_conditions.head()
Out[18]:
color contrast frame mask opacity orientation phase size spatial_frequency stimulus_name temporal_frequency units x_position y_position color_triplet
stimulus_condition_id
0 null null null null null null null null null spontaneous null null null null null
1 null 0.8 null circle 1 45 [3644.93333333, 3644.93333333] [20.0, 20.0] 0.08 gabors 4 deg 40 30 [1.0, 1.0, 1.0]
2 null 0.8 null circle 1 45 [3644.93333333, 3644.93333333] [20.0, 20.0] 0.08 gabors 4 deg -30 10 [1.0, 1.0, 1.0]
3 null 0.8 null circle 1 90 [3644.93333333, 3644.93333333] [20.0, 20.0] 0.08 gabors 4 deg 10 -10 [1.0, 1.0, 1.0]
4 null 0.8 null circle 1 90 [3644.93333333, 3644.93333333] [20.0, 20.0] 0.08 gabors 4 deg 30 40 [1.0, 1.0, 1.0]

Spike data

The EcephysSession object holds spike times (in seconds on the session master clock) for each unit. These are stored in a dictionary, which maps unit ids (the index values of the units table) to arrays of spike times.

In [19]:
 # grab an arbitrary (though high-snr!) unit (we made units_with_high_snr above)
high_snr_unit_ids = units_with_very_high_snr.index.values
unit_id = high_snr_unit_ids[0]

print(f"{len(session.spike_times[unit_id])} spikes were detected for unit {unit_id} at times:")
session.spike_times[unit_id]
/home/nicholas.mei/miniconda3/envs/allensdk/lib/python3.7/site-packages/allensdk/brain_observatory/ecephys/ecephys_session.py:1093: UserWarning: Session includes invalid time intervals that could be accessed with the attribute 'invalid_times',Spikes within these intervals are invalid and may need to be excluded from the analysis.
  warnings.warn("Session includes invalid time intervals that could be accessed with the attribute 'invalid_times',"
236169 spikes were detected for unit 951816951 at times:
Out[19]:
array([3.81328401e+00, 4.20301799e+00, 4.30151816e+00, ...,
       9.96615988e+03, 9.96617945e+03, 9.96619655e+03])

You can also obtain spikes tagged with the stimulus presentation during which they occurred:

In [20]:
# get spike times from the first block of drifting gratings presentations 
drifting_gratings_presentation_ids = session.stimulus_presentations.loc[
    (session.stimulus_presentations['stimulus_name'] == 'drifting_gratings')
].index.values

times = session.presentationwise_spike_times(
    stimulus_presentation_ids=drifting_gratings_presentation_ids,
    unit_ids=high_snr_unit_ids
)

times.head()
Out[20]:
stimulus_presentation_id unit_id time_since_stimulus_presentation_onset
spike_time
1585.734841 3798 951817927 0.000423
1585.736862 3798 951812742 0.002444
1585.738591 3798 951805427 0.004173
1585.738941 3798 951816951 0.004523
1585.738995 3798 951820510 0.004577

We can make raster plots of these data:

In [21]:
first_drifting_grating_presentation_id = times['stimulus_presentation_id'].values[0]
plot_times = times[times['stimulus_presentation_id'] == first_drifting_grating_presentation_id]

fig = raster_plot(plot_times, title=f'spike raster for stimulus presentation {first_drifting_grating_presentation_id}')
plt.show()

# also print out this presentation
session.stimulus_presentations.loc[first_drifting_grating_presentation_id]
Out[21]:
color                                                null
contrast                                              0.8
frame                                                null
orientation                                           180
phase                    [42471.86666667, 42471.86666667]
size                                       [250.0, 250.0]
spatial_frequency                                    0.04
start_time                                        1585.73
stimulus_block                                          2
stimulus_name                           drifting_gratings
stop_time                                         1587.74
temporal_frequency                                      2
x_position                                           null
y_position                                           null
duration                                          2.00168
stimulus_condition_id                                 246
Name: 3798, dtype: object

We can access summary spike statistics for stimulus conditions and unit

In [22]:
stats = session.conditionwise_spike_statistics(
    stimulus_presentation_ids=drifting_gratings_presentation_ids,
    unit_ids=high_snr_unit_ids
)

# display the parameters associated with each condition
stats = pd.merge(stats, session.stimulus_conditions, left_on="stimulus_condition_id", right_index=True)

stats.head()
Out[22]:
spike_count stimulus_presentation_count spike_mean spike_std spike_sem color contrast frame mask opacity orientation phase size spatial_frequency stimulus_name temporal_frequency units x_position y_position color_triplet
unit_id stimulus_condition_id
951799336 246 13 15 0.866667 1.995232 0.515167 null 0.8 null None 1 180 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 2 deg null null [1.0, 1.0, 1.0]
951800977 246 26 15 1.733333 2.737743 0.706882 null 0.8 null None 1 180 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 2 deg null null [1.0, 1.0, 1.0]
951801127 246 103 15 6.866667 7.414914 1.914523 null 0.8 null None 1 180 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 2 deg null null [1.0, 1.0, 1.0]
951801187 246 4 15 0.266667 0.593617 0.153271 null 0.8 null None 1 180 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 2 deg null null [1.0, 1.0, 1.0]
951801462 246 83 15 5.533333 2.587516 0.668094 null 0.8 null None 1 180 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 2 deg null null [1.0, 1.0, 1.0]

Using these data, we can ask for each unit: which stimulus condition evoked the most activity on average?

In [23]:
with_repeats = stats[stats["stimulus_presentation_count"] >= 5]

highest_mean_rate = lambda df: df.loc[df['spike_mean'].idxmax()]
max_rate_conditions = with_repeats.groupby('unit_id').apply(highest_mean_rate)
max_rate_conditions.head()
Out[23]:
spike_count stimulus_presentation_count spike_mean spike_std spike_sem color contrast frame mask opacity orientation phase size spatial_frequency stimulus_name temporal_frequency units x_position y_position color_triplet
unit_id
951799336 81 15 5.400000 9.287472 2.398015 null 0.8 null None 1.0 0 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 4 deg null null [1.0, 1.0, 1.0]
951800977 41 15 2.733333 2.840188 0.733333 null 0.8 null None 1.0 45 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 1 deg null null [1.0, 1.0, 1.0]
951801127 209 15 13.933333 9.728211 2.511813 null 0.8 null None 1.0 90 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 1 deg null null [1.0, 1.0, 1.0]
951801187 53 15 3.533333 5.902380 1.523988 null 0.8 null None 1.0 270 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 4 deg null null [1.0, 1.0, 1.0]
951801462 136 15 9.066667 5.161211 1.332619 null 0.8 null None 1.0 45 [42471.86666667, 42471.86666667] [250.0, 250.0] 0.04 drifting_gratings 2 deg null null [1.0, 1.0, 1.0]

Spike histograms

It is commonly useful to compare spike data from across units and stimulus presentations, all relative to the onset of a stimulus presentation. We can do this using the presentationwise_spike_counts method.

In [24]:
# We're going to build an array of spike counts surrounding stimulus presentation onset
# To do that, we will need to specify some bins (in seconds, relative to stimulus onset)
time_bin_edges = np.linspace(-0.01, 0.4, 200)

# look at responses to the flash stimulus
flash_250_ms_stimulus_presentation_ids = session.stimulus_presentations[
    session.stimulus_presentations['stimulus_name'] == 'flashes'
].index.values

# and get a set of units with only decent snr
decent_snr_unit_ids = session.units[
    session.units['snr'] >= 1.5
].index.values

spike_counts_da = session.presentationwise_spike_counts(
    bin_edges=time_bin_edges,
    stimulus_presentation_ids=flash_250_ms_stimulus_presentation_ids,
    unit_ids=decent_snr_unit_ids
)
spike_counts_da
Out[24]:
Show/Hide data repr Show/Hide attributes
xarray.DataArray
'spike_counts'
  • stimulus_presentation_id: 150
  • time_relative_to_stimulus_onset: 199
  • unit_id: 631
  • 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    array([[[0, 1, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            ...,
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 1, 0, 0],
            [0, 0, 0, ..., 0, 0, 0]],
    
           [[0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            ...,
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0]],
    
           [[0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            ...,
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 1, 0, ..., 0, 0, 0]],
    
           ...,
    
           [[0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            ...,
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0]],
    
           [[0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            ...,
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [1, 0, 0, ..., 0, 0, 0]],
    
           [[0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            ...,
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0],
            [0, 0, 0, ..., 0, 0, 0]]], dtype=uint16)
    • stimulus_presentation_id
      (stimulus_presentation_id)
      int64
      3647 3648 3649 ... 3794 3795 3796
      array([3647, 3648, 3649, 3650, 3651, 3652, 3653, 3654, 3655, 3656, 3657, 3658,
             3659, 3660, 3661, 3662, 3663, 3664, 3665, 3666, 3667, 3668, 3669, 3670,
             3671, 3672, 3673, 3674, 3675, 3676, 3677, 3678, 3679, 3680, 3681, 3682,
             3683, 3684, 3685, 3686, 3687, 3688, 3689, 3690, 3691, 3692, 3693, 3694,
             3695, 3696, 3697, 3698, 3699, 3700, 3701, 3702, 3703, 3704, 3705, 3706,
             3707, 3708, 3709, 3710, 3711, 3712, 3713, 3714, 3715, 3716, 3717, 3718,
             3719, 3720, 3721, 3722, 3723, 3724, 3725, 3726, 3727, 3728, 3729, 3730,
             3731, 3732, 3733, 3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741, 3742,
             3743, 3744, 3745, 3746, 3747, 3748, 3749, 3750, 3751, 3752, 3753, 3754,
             3755, 3756, 3757, 3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765, 3766,
             3767, 3768, 3769, 3770, 3771, 3772, 3773, 3774, 3775, 3776, 3777, 3778,
             3779, 3780, 3781, 3782, 3783, 3784, 3785, 3786, 3787, 3788, 3789, 3790,
             3791, 3792, 3793, 3794, 3795, 3796])
    • time_relative_to_stimulus_onset
      (time_relative_to_stimulus_onset)
      float64
      -0.00897 -0.00691 ... 0.3969 0.399
      array([-0.00897 , -0.00691 , -0.004849, -0.002789, -0.000729,  0.001332,
              0.003392,  0.005452,  0.007513,  0.009573,  0.011633,  0.013693,
              0.015754,  0.017814,  0.019874,  0.021935,  0.023995,  0.026055,
              0.028116,  0.030176,  0.032236,  0.034296,  0.036357,  0.038417,
              0.040477,  0.042538,  0.044598,  0.046658,  0.048719,  0.050779,
              0.052839,  0.054899,  0.05696 ,  0.05902 ,  0.06108 ,  0.063141,
              0.065201,  0.067261,  0.069322,  0.071382,  0.073442,  0.075503,
              0.077563,  0.079623,  0.081683,  0.083744,  0.085804,  0.087864,
              0.089925,  0.091985,  0.094045,  0.096106,  0.098166,  0.100226,
              0.102286,  0.104347,  0.106407,  0.108467,  0.110528,  0.112588,
              0.114648,  0.116709,  0.118769,  0.120829,  0.122889,  0.12495 ,
              0.12701 ,  0.12907 ,  0.131131,  0.133191,  0.135251,  0.137312,
              0.139372,  0.141432,  0.143492,  0.145553,  0.147613,  0.149673,
              0.151734,  0.153794,  0.155854,  0.157915,  0.159975,  0.162035,
              0.164095,  0.166156,  0.168216,  0.170276,  0.172337,  0.174397,
              0.176457,  0.178518,  0.180578,  0.182638,  0.184698,  0.186759,
              0.188819,  0.190879,  0.19294 ,  0.195   ,  0.19706 ,  0.199121,
              0.201181,  0.203241,  0.205302,  0.207362,  0.209422,  0.211482,
              0.213543,  0.215603,  0.217663,  0.219724,  0.221784,  0.223844,
              0.225905,  0.227965,  0.230025,  0.232085,  0.234146,  0.236206,
              0.238266,  0.240327,  0.242387,  0.244447,  0.246508,  0.248568,
              0.250628,  0.252688,  0.254749,  0.256809,  0.258869,  0.26093 ,
              0.26299 ,  0.26505 ,  0.267111,  0.269171,  0.271231,  0.273291,
              0.275352,  0.277412,  0.279472,  0.281533,  0.283593,  0.285653,
              0.287714,  0.289774,  0.291834,  0.293894,  0.295955,  0.298015,
              0.300075,  0.302136,  0.304196,  0.306256,  0.308317,  0.310377,
              0.312437,  0.314497,  0.316558,  0.318618,  0.320678,  0.322739,
              0.324799,  0.326859,  0.32892 ,  0.33098 ,  0.33304 ,  0.335101,
              0.337161,  0.339221,  0.341281,  0.343342,  0.345402,  0.347462,
              0.349523,  0.351583,  0.353643,  0.355704,  0.357764,  0.359824,
              0.361884,  0.363945,  0.366005,  0.368065,  0.370126,  0.372186,
              0.374246,  0.376307,  0.378367,  0.380427,  0.382487,  0.384548,
              0.386608,  0.388668,  0.390729,  0.392789,  0.394849,  0.39691 ,
              0.39897 ])
    • unit_id
      (unit_id)
      int64
      951814884 951814876 ... 951814312
      array([951814884, 951814876, 951815032, ..., 951814089, 951814199, 951814312])

This has returned a new (to this notebook) data structure, the xarray.DataArray. You can think of this as similar to a 3+D pandas.DataFrame, or as a numpy.ndarray with labeled axes and indices. See the xarray documentation for more information. In the mean time, the salient features are:

  • Dimensions : Each axis on each data variable is associated with a named dimension. This lets us see unambiguously what the axes of our array mean.
  • Coordinates : Arrays of labels for each sample on each dimension.

xarray is nice because it forces code to be explicit about dimensions and coordinates, improving readability and avoiding bugs. However, you can always convert to numpy or pandas data structures as follows:

  • to pandas: spike_counts_ds.to_dataframe() produces a multiindexed dataframe
  • to numpy: spike_counts_ds.values gives you access to the underlying numpy array

We can now plot spike counts for a particular presentation:

In [25]:
presentation_id = 3796 # chosen arbitrarily
plot_spike_counts(
    spike_counts_da.loc[{'stimulus_presentation_id': presentation_id}], 
    spike_counts_da['time_relative_to_stimulus_onset'],
    'spike count', 
    f'unitwise spike counts on presentation {presentation_id}'
)
plt.show()

We can also average across all presentations, adding a new data array to the dataset. Notice that this one no longer has a stimulus_presentation_id dimension, as we have collapsed it by averaging.

In [26]:
mean_spike_counts = spike_counts_da.mean(dim='stimulus_presentation_id')
mean_spike_counts
Out[26]:
Show/Hide data repr Show/Hide attributes
xarray.DataArray
'spike_counts'
  • time_relative_to_stimulus_onset: 199
  • unit_id: 631
  • 0.02667 0.1 0.08 0.02667 0.04667 ... 0.006667 0.006667 0.0 0.0 0.0
    array([[0.02666667, 0.1       , 0.08      , ..., 0.00666667, 0.        ,
            0.00666667],
           [0.02666667, 0.06666667, 0.04666667, ..., 0.02      , 0.        ,
            0.        ],
           [0.02      , 0.11333333, 0.03333333, ..., 0.03333333, 0.        ,
            0.        ],
           ...,
           [0.02666667, 0.09333333, 0.05333333, ..., 0.00666667, 0.        ,
            0.        ],
           [0.02666667, 0.06666667, 0.02666667, ..., 0.00666667, 0.02      ,
            0.        ],
           [0.02666667, 0.12      , 0.02      , ..., 0.        , 0.        ,
            0.        ]])
    • time_relative_to_stimulus_onset
      (time_relative_to_stimulus_onset)
      float64
      -0.00897 -0.00691 ... 0.3969 0.399
      array([-0.00897 , -0.00691 , -0.004849, -0.002789, -0.000729,  0.001332,
              0.003392,  0.005452,  0.007513,  0.009573,  0.011633,  0.013693,
              0.015754,  0.017814,  0.019874,  0.021935,  0.023995,  0.026055,
              0.028116,  0.030176,  0.032236,  0.034296,  0.036357,  0.038417,
              0.040477,  0.042538,  0.044598,  0.046658,  0.048719,  0.050779,
              0.052839,  0.054899,  0.05696 ,  0.05902 ,  0.06108 ,  0.063141,
              0.065201,  0.067261,  0.069322,  0.071382,  0.073442,  0.075503,
              0.077563,  0.079623,  0.081683,  0.083744,  0.085804,  0.087864,
              0.089925,  0.091985,  0.094045,  0.096106,  0.098166,  0.100226,
              0.102286,  0.104347,  0.106407,  0.108467,  0.110528,  0.112588,
              0.114648,  0.116709,  0.118769,  0.120829,  0.122889,  0.12495 ,
              0.12701 ,  0.12907 ,  0.131131,  0.133191,  0.135251,  0.137312,
              0.139372,  0.141432,  0.143492,  0.145553,  0.147613,  0.149673,
              0.151734,  0.153794,  0.155854,  0.157915,  0.159975,  0.162035,
              0.164095,  0.166156,  0.168216,  0.170276,  0.172337,  0.174397,
              0.176457,  0.178518,  0.180578,  0.182638,  0.184698,  0.186759,
              0.188819,  0.190879,  0.19294 ,  0.195   ,  0.19706 ,  0.199121,
              0.201181,  0.203241,  0.205302,  0.207362,  0.209422,  0.211482,
              0.213543,  0.215603,  0.217663,  0.219724,  0.221784,  0.223844,
              0.225905,  0.227965,  0.230025,  0.232085,  0.234146,  0.236206,
              0.238266,  0.240327,  0.242387,  0.244447,  0.246508,  0.248568,
              0.250628,  0.252688,  0.254749,  0.256809,  0.258869,  0.26093 ,
              0.26299 ,  0.26505 ,  0.267111,  0.269171,  0.271231,  0.273291,
              0.275352,  0.277412,  0.279472,  0.281533,  0.283593,  0.285653,
              0.287714,  0.289774,  0.291834,  0.293894,  0.295955,  0.298015,
              0.300075,  0.302136,  0.304196,  0.306256,  0.308317,  0.310377,
              0.312437,  0.314497,  0.316558,  0.318618,  0.320678,  0.322739,
              0.324799,  0.326859,  0.32892 ,  0.33098 ,  0.33304 ,  0.335101,
              0.337161,  0.339221,  0.341281,  0.343342,  0.345402,  0.347462,
              0.349523,  0.351583,  0.353643,  0.355704,  0.357764,  0.359824,
              0.361884,  0.363945,  0.366005,  0.368065,  0.370126,  0.372186,
              0.374246,  0.376307,  0.378367,  0.380427,  0.382487,  0.384548,
              0.386608,  0.388668,  0.390729,  0.392789,  0.394849,  0.39691 ,
              0.39897 ])
    • unit_id
      (unit_id)
      int64
      951814884 951814876 ... 951814312
      array([951814884, 951814876, 951815032, ..., 951814089, 951814199, 951814312])

... and plot the mean spike counts

In [27]:
plot_spike_counts(
    mean_spike_counts, 
    mean_spike_counts['time_relative_to_stimulus_onset'],
    'mean spike count', 
    'mean spike counts on flash_250_ms presentations'
)
plt.show()

Waveforms

We store precomputed mean waveforms for each unit in the mean_waveforms attribute on the EcephysSession object. This is a dictionary which maps unit ids to xarray DataArrays. These have channel and time (seconds, aligned to the detected event times) dimensions. The data values are in microvolts, as measured at the recording site.

In [28]:
units_of_interest = high_snr_unit_ids[:35]

waveforms = {uid: session.mean_waveforms[uid] for uid in units_of_interest}
peak_channels = {uid: session.units.loc[uid, 'peak_channel_id'] for uid in units_of_interest}

# plot the mean waveform on each unit's peak channel/
plot_mean_waveforms(waveforms, units_of_interest, peak_channels)
plt.show()

Since neuropixels probes are densely populated with channels, spikes are typically detected on several channels. We can see this by plotting mean waveforms on channels surrounding a unit's peak channel:

In [29]:
uid = units_of_interest[12]
unit_waveforms = waveforms[uid]
peak_channel = peak_channels[uid]
peak_channel_idx = np.where(unit_waveforms["channel_id"] == peak_channel)[0][0]

ch_min = max(peak_channel_idx - 10, 0)
ch_max = min(peak_channel_idx + 10, len(unit_waveforms["channel_id"]) - 1)
surrounding_channels = unit_waveforms["channel_id"][np.arange(ch_min, ch_max, 2)]

fig, ax = plt.subplots()
ax.imshow(unit_waveforms.loc[{"channel_id": surrounding_channels}])

ax.yaxis.set_major_locator(plt.NullLocator())
ax.set_ylabel("channel", fontsize=16)

ax.set_xticks(np.arange(0, len(unit_waveforms['time']), 20))
ax.set_xticklabels([f'{float(ii):1.4f}' for ii in unit_waveforms['time'][::20]], rotation=45)
ax.set_xlabel("time (s)", fontsize=16)

plt.show()

Running speed

We can obtain the velocity at which the experimental subject ran as a function of time by accessing the running_speed attribute. This returns a pandas dataframe whose rows are intervals of time (defined by "start_time" and "end_time" columns), and whose "velocity" column contains mean running speeds within those intervals.

Here we'll plot the running speed trace for an arbitrary chunk of time.

In [30]:
running_speed_midpoints = session.running_speed["start_time"] + \
    (session.running_speed["end_time"] - session.running_speed["start_time"]) / 2
plot_running_speed(
    running_speed_midpoints, 
    session.running_speed["velocity"], 
    start_index=5000,
    stop_index=5100
)
plt.show()

Optogenetic stimulation

In [31]:
session.optogenetic_stimulation_epochs
Out[31]:
start_time condition level stop_time stimulus_name duration
id
0 9224.65339 half-period of a cosine wave 1.0 9225.65339 raised_cosine 1.000
1 9226.82361 half-period of a cosine wave 2.5 9227.82361 raised_cosine 1.000
2 9228.64353 a single square pulse 1.0 9228.64853 pulse 0.005
3 9230.65374 a single square pulse 4.0 9230.66374 pulse 0.010
4 9232.42375 2.5 ms pulses at 10 Hz 4.0 9233.42375 fast_pulses 1.000
... ... ... ... ... ... ...
175 9562.68831 a single square pulse 4.0 9562.69331 pulse 0.005
176 9564.75842 a single square pulse 1.0 9564.76842 pulse 0.010
177 9566.86855 a single square pulse 2.5 9566.87855 pulse 0.010
178 9568.98860 a single square pulse 4.0 9568.99860 pulse 0.010
179 9571.11868 half-period of a cosine wave 4.0 9572.11868 raised_cosine 1.000

180 rows × 6 columns

Eye tracking ellipse fits and estimated screen gaze location

Ecephys sessions may contain eye tracking data in the form of ellipse fits and estimated screen gaze location. Let's look at the ellipse fits first:

In [32]:
pupil_data = session.get_pupil_data()
pupil_data
Out[32]:
corneal_reflection_center_x corneal_reflection_center_y corneal_reflection_height corneal_reflection_width corneal_reflection_phi pupil_center_x pupil_center_y pupil_height pupil_width pupil_phi eye_center_x eye_center_y eye_height eye_width eye_phi
Time (s)
3.20620 321.221602 215.484021 11.091658 12.801322 -0.340513 291.258341 187.965473 96.294414 102.751684 -0.759200 310.242901 207.161069 273.535714 323.227726 0.099357
3.22948 321.291022 215.282122 11.318211 12.807982 -0.243113 290.703953 188.659872 94.239278 103.384550 -0.715791 310.140402 207.007975 273.303505 322.919143 0.091675
3.23714 321.294868 215.055000 11.136122 12.423237 -0.331511 290.687532 188.294754 94.729755 103.814759 -0.673967 310.224041 206.700513 273.481027 323.497356 0.090202
3.27028 321.288914 215.250999 10.596050 12.414694 -0.245863 289.154532 188.524943 93.877264 99.315115 -0.732209 310.134502 206.791105 273.988038 323.147754 0.091154
3.30396 320.819438 215.915143 9.366927 12.870596 0.109020 290.206682 187.411271 90.221821 103.856061 -0.583017 310.226498 206.519467 273.542559 322.233983 0.097546
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
9939.71240 322.580849 216.600349 12.799143 13.400555 -0.525985 NaN NaN NaN NaN NaN 313.501794 210.587410 280.224381 322.533004 0.167348
9939.74576 324.007748 216.520870 11.843170 13.212379 -0.403054 NaN NaN NaN NaN NaN 313.532165 211.023852 280.388767 322.942096 0.189335
9939.77918 324.118835 216.898871 11.336945 12.877454 -0.254458 NaN NaN NaN NaN NaN 314.227284 210.967838 279.978946 323.751767 0.201428
9939.81257 324.141869 215.929826 12.343291 13.347376 -0.186693 NaN NaN NaN NaN NaN 313.128124 210.027071 280.560120 321.832875 0.189717
9939.84647 324.200410 215.621956 13.629577 14.614380 -0.270081 NaN NaN NaN NaN NaN 312.543325 209.802086 279.835031 321.055079 0.193363

297838 rows × 15 columns

This particular session has eye tracking data, let's try plotting the ellipse fits over time.

In [33]:
%%capture
from matplotlib import animation
from matplotlib.patches import Ellipse

def plot_animated_ellipse_fits(pupil_data: pd.DataFrame, start_frame: int, end_frame: int):

    start_frame = 0 if (start_frame < 0) else start_frame
    end_frame = len(pupil_data) if (end_frame > len(pupil_data)) else end_frame
    
    frame_times = pupil_data.index.values[start_frame:end_frame]
    interval = np.average(np.diff(frame_times)) * 1000

    fig = plt.figure()
    ax = plt.axes(xlim=(0, 480), ylim=(0, 480))

    cr_ellipse = Ellipse((0, 0), width=0.0, height=0.0, angle=0, color='white')
    pupil_ellipse = Ellipse((0, 0), width=0.0, height=0.0, angle=0, color='black')
    eye_ellipse = Ellipse((0, 0), width=0.0, height=0.0, angle=0, color='grey')

    ax.add_patch(eye_ellipse)
    ax.add_patch(pupil_ellipse)
    ax.add_patch(cr_ellipse)

    def update_ellipse(ellipse_patch, ellipse_frame_vals: pd.DataFrame, prefix: str):
        ellipse_patch.center = tuple(ellipse_frame_vals[[f"{prefix}_center_x", f"{prefix}_center_y"]].values)
        ellipse_patch.width = ellipse_frame_vals[f"{prefix}_width"]
        ellipse_patch.height = ellipse_frame_vals[f"{prefix}_height"]
        ellipse_patch.angle = np.degrees(ellipse_frame_vals[f"{prefix}_phi"])
    
    def init():
        return [cr_ellipse, pupil_ellipse, eye_ellipse]

    def animate(i):
        ellipse_frame_vals = pupil_data.iloc[i]
        
        update_ellipse(cr_ellipse, ellipse_frame_vals, prefix="corneal_reflection")
        update_ellipse(pupil_ellipse, ellipse_frame_vals, prefix="pupil")
        update_ellipse(eye_ellipse, ellipse_frame_vals, prefix="eye")
        
        return [cr_ellipse, pupil_ellipse, eye_ellipse]
    
    return animation.FuncAnimation(fig, animate, init_func=init, interval=interval, frames=range(start_frame, end_frame), blit=True)

anim = plot_animated_ellipse_fits(pupil_data, 100, 600)
In [34]:
from IPython.display import HTML

HTML(anim.to_jshtml())
Out[34]:

Using the above ellipse fits and location/orientation information about the experimental rigs, it is possible to calculate additional statistics such as pupil size or estimate a gaze location on screen at a given time. Due to the degrees of freedom in some rig components, gaze estimates have no accuracy guarantee. For additional information about the gaze mapping estimation process please refer to: https://github.com/AllenInstitute/AllenSDK/tree/master/allensdk/brain_observatory/gaze_mapping

In [35]:
gaze_data = session.get_screen_gaze_data()
gaze_data
Out[35]:
raw_eye_area raw_pupil_area raw_screen_coordinates_x_cm raw_screen_coordinates_y_cm raw_screen_coordinates_spherical_x_deg raw_screen_coordinates_spherical_y_deg
Time (s)
3.20620 0.072246 0.008627 3.192181 0.863288 11.996034 3.294251
3.22948 0.072116 0.008734 3.103325 0.916339 11.669031 3.496204
3.23714 0.072292 0.008807 3.116553 0.919020 11.717276 3.506406
3.27028 0.072347 0.008060 3.107700 1.061316 11.677819 4.047634
3.30396 0.072026 0.008814 3.285226 0.929605 12.331983 3.546691
... ... ... ... ... ... ...
9939.71240 NaN NaN NaN NaN NaN NaN
9939.74576 NaN NaN NaN NaN NaN NaN
9939.77918 NaN NaN NaN NaN NaN NaN
9939.81257 NaN NaN NaN NaN NaN NaN
9939.84647 NaN NaN NaN NaN NaN NaN

297838 rows × 6 columns

In [36]:
ax = gaze_data[["raw_pupil_area"]].plot()
_ = ax.set_ylabel("Area cm^2")

Local Field Potential

We record local field potential on a subset of channels at 2500 Hz. Even subsampled and compressed, these data are quite large, so we store them seperately for each probe.

In [37]:
# list the probes recorded from in this session
session.probes.head()
Out[37]:
description location sampling_rate lfp_sampling_rate has_lfp_data
id
760640083 probeA See electrode locations 29999.949611 1249.997900 True
760640087 probeB See electrode locations 29999.902541 1249.995939 True
760640090 probeC See electrode locations 29999.905275 1249.996053 True
760640094 probeD See electrode locations 29999.905275 1249.996053 True
760640097 probeE See electrode locations 29999.985335 1249.999389 True
In [38]:
# load up the lfp from one of the probes. This returns an xarray dataarray

probe_id = session.probes.index.values[0]

lfp = session.get_lfp(probe_id)
lfp
WARNING:root:downloading a 2.16e+03mb file from http://api.brain-map.org//api/v2/well_known_file_download/1026124229
Out[38]:
Show/Hide data repr Show/Hide attributes
xarray.DataArray
'LFP'
  • time: 12453025
  • channel: 87
  • 1.1895e-05 2.73e-05 9.165e-06 0.0 ... 2.73e-06 -1.2675e-05 -9.555e-06
    array([[ 1.18950002e-05,  2.73000005e-05,  9.16499994e-06, ...,
             0.00000000e+00,  2.73000001e-06,  3.89999997e-07],
           [ 9.41850012e-05,  8.95049961e-05,  1.22849997e-05, ...,
             5.84999998e-06,  5.84999998e-06, -1.15049997e-05],
           [ 6.04499983e-05,  5.79150001e-05,  1.48199997e-05, ...,
             0.00000000e+00,  3.90000014e-06, -1.44300002e-05],
           ...,
           [ 1.05299996e-05,  5.12849983e-05,  8.32649966e-05, ...,
             0.00000000e+00, -3.80249985e-05, -2.16449989e-05],
           [-1.36500000e-06,  3.56849996e-05,  5.46000010e-05, ...,
             0.00000000e+00, -2.84700000e-05, -2.43750001e-05],
           [-1.01400001e-05,  1.46249995e-05,  3.56849996e-05, ...,
             2.73000001e-06, -1.26750001e-05, -9.55500036e-06]], dtype=float32)
    • time
      (time)
      float64
      3.774 3.775 ... 9.966e+03 9.966e+03
      array([3.773984e+00, 3.774784e+00, 3.775584e+00, ..., 9.966208e+03,
             9.966209e+03, 9.966210e+03])
    • channel
      (channel)
      int64
      850126378 850126386 ... 850127066
      array([850126378, 850126386, 850126394, 850126402, 850126410, 850126418,
             850126426, 850126434, 850126442, 850126450, 850126458, 850126466,
             850126474, 850126482, 850126490, 850126498, 850126506, 850126514,
             850126522, 850126530, 850126538, 850126546, 850126554, 850126562,
             850126570, 850126578, 850126586, 850126594, 850126602, 850126610,
             850126618, 850126626, 850126634, 850126642, 850126650, 850126658,
             850126666, 850126674, 850126682, 850126690, 850126698, 850126706,
             850126714, 850126722, 850126730, 850126738, 850126746, 850126754,
             850126762, 850126770, 850126778, 850126786, 850126794, 850126802,
             850126810, 850126818, 850126826, 850126834, 850126842, 850126850,
             850126858, 850126866, 850126874, 850126882, 850126890, 850126898,
             850126906, 850126914, 850126922, 850126930, 850126938, 850126946,
             850126954, 850126962, 850126970, 850126978, 850126986, 850126994,
             850127002, 850127010, 850127018, 850127026, 850127034, 850127042,
             850127050, 850127058, 850127066])

We can figure out where each LFP channel is located in the brain

In [39]:
# now use a utility to associate intervals of /rows with structures
structure_acronyms, intervals = session.channel_structure_intervals(lfp["channel"])
interval_midpoints = [aa + (bb - aa) / 2 for aa, bb in zip(intervals[:-1], intervals[1:])]
print(structure_acronyms)
print(intervals)
['APN' 'DG' 'CA1' 'VISam' nan]
[ 0 27 35 51 74 87]
In [40]:
window = np.where(np.logical_and(lfp["time"] < 5.0, lfp["time"] >= 4.0))[0]

fig, ax = plt.subplots()
ax.pcolormesh(lfp[{"time": window}].T)

ax.set_yticks(intervals)
ax.set_yticks(interval_midpoints, minor=True)
ax.set_yticklabels(structure_acronyms, minor=True)
plt.tick_params("y", which="major", labelleft=False, length=40)

num_time_labels = 8
time_label_indices = np.around(np.linspace(1, len(window), num_time_labels)).astype(int) - 1
time_labels = [ f"{val:1.3}" for val in lfp["time"].values[window][time_label_indices]]
ax.set_xticks(time_label_indices + 0.5)
ax.set_xticklabels(time_labels)
ax.set_xlabel("time (s)", fontsize=20)

plt.show()

Current source density

We precompute current source density for each probe.

In [41]:
csd = session.get_current_source_density(probe_id)
csd
Out[41]:
Show/Hide data repr Show/Hide attributes
xarray.DataArray
'CSD'
  • virtual_channel_index: 384
  • time: 875
  • -1.593e+04 -9.765e+03 -3.801e+03 ... 4.368e+04 4.307e+04 4.232e+04
    array([[-15929.94620634,  -9764.69052489,  -3800.63513633, ...,
             -3489.058296  ,   4490.24559366,  12683.65566757],
           [  4926.68166033,   1219.23331186,  -2377.20521849, ...,
               395.4923896 ,  -2357.37356288,  -5173.46220986],
           [  8688.152839  ,   2851.90658771,  -2829.81051493, ...,
             -1258.75053607,  -4710.39792094,  -8222.47505453],
           ...,
           [   795.13335438,   -375.73063321,  -1540.35855172, ...,
             -1500.27602117,  -1208.60446194,   -970.13472244],
           [ 39999.95166919,  45568.25650865,  51358.34764164, ...,
            -42702.91915903, -41541.34974384, -40075.3287913 ],
           [-43228.19424952, -44941.33900006, -46869.87931214, ...,
             43678.78644758,  43072.4632542 ,  42324.69354813]])
    • virtual_channel_index
      (virtual_channel_index)
      int64
      0 1 2 3 4 5 ... 379 380 381 382 383
      array([  0,   1,   2, ..., 381, 382, 383])
    • time
      (time)
      float64
      -0.1 -0.0996 ... 0.2492 0.2496
      array([-0.1     , -0.0996  , -0.0992  , ...,  0.248801,  0.249201,  0.249601])
    • vertical_position
      (virtual_channel_index)
      float64
      0.0 10.0 20.0 ... 3.82e+03 3.83e+03
      array([   0.,   10.,   20.,   30.,   40.,   50.,   60.,   70.,   80.,
               90.,  100.,  110.,  120.,  130.,  140.,  150.,  160.,  170.,
              180.,  190.,  200.,  210.,  220.,  230.,  240.,  250.,  260.,
              270.,  280.,  290.,  300.,  310.,  320.,  330.,  340.,  350.,
              360.,  370.,  380.,  390.,  400.,  410.,  420.,  430.,  440.,
              450.,  460.,  470.,  480.,  490.,  500.,  510.,  520.,  530.,
              540.,  550.,  560.,  570.,  580.,  590.,  600.,  610.,  620.,
              630.,  640.,  650.,  660.,  670.,  680.,  690.,  700.,  710.,
              720.,  730.,  740.,  750.,  760.,  770.,  780.,  790.,  800.,
              810.,  820.,  830.,  840.,  850.,  860.,  870.,  880.,  890.,
              900.,  910.,  920.,  930.,  940.,  950.,  960.,  970.,  980.,
              990., 1000., 1010., 1020., 1030., 1040., 1050., 1060., 1070.,
             1080., 1090., 1100., 1110., 1120., 1130., 1140., 1150., 1160.,
             1170., 1180., 1190., 1200., 1210., 1220., 1230., 1240., 1250.,
             1260., 1270., 1280., 1290., 1300., 1310., 1320., 1330., 1340.,
             1350., 1360., 1370., 1380., 1390., 1400., 1410., 1420., 1430.,
             1440., 1450., 1460., 1470., 1480., 1490., 1500., 1510., 1520.,
             1530., 1540., 1550., 1560., 1570., 1580., 1590., 1600., 1610.,
             1620., 1630., 1640., 1650., 1660., 1670., 1680., 1690., 1700.,
             1710., 1720., 1730., 1740., 1750., 1760., 1770., 1780., 1790.,
             1800., 1810., 1820., 1830., 1840., 1850., 1860., 1870., 1880.,
             1890., 1900., 1910., 1920., 1930., 1940., 1950., 1960., 1970.,
             1980., 1990., 2000., 2010., 2020., 2030., 2040., 2050., 2060.,
             2070., 2080., 2090., 2100., 2110., 2120., 2130., 2140., 2150.,
             2160., 2170., 2180., 2190., 2200., 2210., 2220., 2230., 2240.,
             2250., 2260., 2270., 2280., 2290., 2300., 2310., 2320., 2330.,
             2340., 2350., 2360., 2370., 2380., 2390., 2400., 2410., 2420.,
             2430., 2440., 2450., 2460., 2470., 2480., 2490., 2500., 2510.,
             2520., 2530., 2540., 2550., 2560., 2570., 2580., 2590., 2600.,
             2610., 2620., 2630., 2640., 2650., 2660., 2670., 2680., 2690.,
             2700., 2710., 2720., 2730., 2740., 2750., 2760., 2770., 2780.,
             2790., 2800., 2810., 2820., 2830., 2840., 2850., 2860., 2870.,
             2880., 2890., 2900., 2910., 2920., 2930., 2940., 2950., 2960.,
             2970., 2980., 2990., 3000., 3010., 3020., 3030., 3040., 3050.,
             3060., 3070., 3080., 3090., 3100., 3110., 3120., 3130., 3140.,
             3150., 3160., 3170., 3180., 3190., 3200., 3210., 3220., 3230.,
             3240., 3250., 3260., 3270., 3280., 3290., 3300., 3310., 3320.,
             3330., 3340., 3350., 3360., 3370., 3380., 3390., 3400., 3410.,
             3420., 3430., 3440., 3450., 3460., 3470., 3480., 3490., 3500.,
             3510., 3520., 3530., 3540., 3550., 3560., 3570., 3580., 3590.,
             3600., 3610., 3620., 3630., 3640., 3650., 3660., 3670., 3680.,
             3690., 3700., 3710., 3720., 3730., 3740., 3750., 3760., 3770.,
             3780., 3790., 3800., 3810., 3820., 3830.])
    • horizontal_position
      (virtual_channel_index)
      float64
      24.0 24.0 24.0 ... 24.0 24.0 24.0
      array([24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24., 24.,
             24., 24., 24., 24., 24., 24., 24.])
In [42]:
filtered_csd = gaussian_filter(csd.data, sigma=4)

fig, ax = plt.subplots(figsize=(6, 6))
ax.pcolor(csd["time"], csd["vertical_position"], filtered_csd)

ax.set_xlabel("time relative to stimulus onset (s)", fontsize=20)
ax.set_ylabel("vertical position (um)", fontsize=20)

plt.show()

Suggested exercises

If you would hands-on experience with the EcephysSession class, please consider working through some of these excercises.

  • tuning curves : Pick a stimulus parameter, such as orientation on drifting gratings trials. Plot the mean and standard error of spike counts for each unit at each value of this parameter.
  • signal correlations : Calculate unit-pairwise correlation coefficients on the tuning curves for a stimulus parameter of interest (numpy.corrcoef might be useful).
  • noise correlations : Build for each unit a vector of spike counts across repeats of the same stimulus condition. Compute unit-unit correlation coefficients on these vectors.
  • cross-correlations : Start with two spike trains. Call one of them "fixed" and the other "moving". Choose a set of time offsets and for each offset:
    1. apply the offset to the spike times in the moving train
    2. compute the correlation coefficient between the newly offset moving train and the fixed train. You should then be able to plot the obtained correlation coeffients as a function of the offset.
  • unit clustering : First, extract a set of unitwise features. You might draw these from the mean waveforms, for instance:

    • mean duration between waveform peak and trough (on the unit's peak channel)
    • the amplitude of the unit's trough

      or you might draw them from the unit's spike times, such as:

    • median inter-spike-interval

      or from metadata

    • CCF structure

      With your features in hand, attempt an unsupervised classification of the units. If this seems daunting, check out the scikit-learn unsupervised learning documention for library code and examples.

  • population decoding : Using an EcephysSession (and filtering to some stimuli and units of interest), build two aligned matrices:

    1. A matrix whose rows are stimulus presentations, columns are units, and values are spike counts.
    2. A matrix whose rows are stimulus presentations and whose columns are stimulus parameters.

      Using these matrices, train a classifier to predict stimulus conditions (sets of stimulus parameter values) from presentationwise population spike counts. See the scikit-learn supervised learning tutorial for a guide to supervised learning in Python.