Spike train surrogates

Module to generate surrogates of a spike train by randomising its spike times in different ways (see [1]). Different methods destroy different features of the original data:

  • randomise_spikes:
    randomly reposition all spikes inside the time interval (t_start, t_stop). Keeps spike count, generates Poisson spike trains with time-stationary firing rate
  • dither_spikes:
    dither each spike time around original position by a random amount; keeps spike count and firing rates computed on a slow temporal scale; destroys ISIs, making them more exponentially distributed
  • dither_spike_train:
    dither the whole input spike train (i.e. all spikes equally) by a random amount; keeps spike count, ISIs, and firing rates computed on a slow temporal scale
  • jitter_spikes:
    discretise the full time interval (t_start, t_stop) into time segments and locally randomise the spike times (see randomise_spikes) inside each segment. Keeps spike count inside each segment and creates locally Poisson spike trains with locally time-stationary rates
  • shuffle_isis:
    shuffle the inter-spike intervals (ISIs) of the spike train randomly, keeping the first spike time fixed and generating the others from the new sequence of ISIs. Keeps spike count and ISIs, flattens the firing rate profile
[1] Louis et al (2010) Surrogate Spike Train Generation Through Dithering in
Operational Time. Front Comput Neurosci. 2010; 4: 127.

Original implementation by: Emiliano Torre [e.torre@fz-juelich.de]

elephant.spike_train_surrogates.dither_spike_train(spiketrain, shift, n=1, decimals=None, edges=True)[source]

Generates surrogates of a neo.SpikeTrain by spike train shifting.

The surrogates are obtained by shifting the whole spike train by a random amount (independent for each surrogate). Thus, ISIs and temporal correlations within the spike train are kept. For small shifts, the firing rate profile is also kept with reasonable accuracy.

The surrogates retain the t_start and t_stop of the spiketrain. Spikes moved beyond this range are lost or moved to the range’s ends, depending on the parameter edge.

Parameters:
spiketrain : neo.SpikeTrain

The spike train from which to generate the surrogates

shift : quantities.Quantity

Amount of shift. spiketrain is shifted by a random amount uniformly drawn from the range ]-shift, +shift[.

n : int (optional)

Number of surrogates to be generated. Default: 1

decimals : int or None (optional)

Number of decimal points for every spike time in the surrogates If None, machine precision is used. Default: None

edges : bool

For surrogate spikes falling outside the range [spiketrain.t_start, spiketrain.t_stop), whether to drop them out (for edges = True) or set that to the range’s closest end (for edges = False). Default: True

Returns:
list of SpikeTrain

A list of spike trains, each obtained from spiketrain by randomly dithering its spikes. The range of the surrogate spike trains is the same as spiketrain.

Examples

>>> import quantities as pq
>>> import neo
>>>
>>> st = neo.SpikeTrain([100, 250, 600, 800]*pq.ms, t_stop=1*pq.s)
>>>
>>> print dither_spike_train(st, shift = 20*pq.ms)   
[<SpikeTrain(array([  96.53801903,  248.57047376,  601.48865767,
 815.67209811]) * ms, [0.0 ms, 1000.0 ms])>]
>>> print dither_spike_train(st, shift = 20*pq.ms, n=2)   
[<SpikeTrain(array([  92.89084054,  242.89084054,  592.89084054,
    792.89084054]) * ms, [0.0 ms, 1000.0 ms])>,
 <SpikeTrain(array([  84.61079043,  234.61079043,  584.61079043,
    784.61079043]) * ms, [0.0 ms, 1000.0 ms])>]
>>> print dither_spike_train(st, shift = 20*pq.ms, decimals=0)   
[<SpikeTrain(array([  82.,  232.,  582.,  782.]) * ms,
    [0.0 ms, 1000.0 ms])>]
elephant.spike_train_surrogates.dither_spikes(spiketrain, dither, n=1, decimals=None, edges=True)[source]

Generates surrogates of a spike train by spike dithering.

The surrogates are obtained by uniformly dithering times around the original position. The dithering is performed independently for each surrogate.

The surrogates retain the t_start and t_stop of the original SpikeTrain object. Spikes moved beyond this range are lost or moved to the range’s ends, depending on the parameter edge.

Parameters:
spiketrain : neo.SpikeTrain

The spike train from which to generate the surrogates

dither : quantities.Quantity

Amount of dithering. A spike at time t is placed randomly within ]t-dither, t+dither[.

n : int (optional)

Number of surrogates to be generated. Default: 1

decimals : int or None (optional)

Number of decimal points for every spike time in the surrogates If None, machine precision is used. Default: None

edges : bool (optional)

For surrogate spikes falling outside the range [spiketrain.t_start, spiketrain.t_stop), whether to drop them out (for edges = True) or set that to the range’s closest end (for edges = False). Default: True

Returns:
list of neo.SpikeTrain

A list of neo.SpikeTrain, each obtained from spiketrain by randomly dithering its spikes. The range of the surrogate spike trains is the same as spiketrain.

Examples

>>> import quantities as pq
>>> import neo
>>>
>>> st = neo.SpikeTrain([100, 250, 600, 800]*pq.ms, t_stop=1*pq.s)
>>> print dither_spikes(st, dither = 20*pq.ms)   
[<SpikeTrain(array([  96.53801903,  248.57047376,  601.48865767,
 815.67209811]) * ms, [0.0 ms, 1000.0 ms])>]
>>> print dither_spikes(st, dither = 20*pq.ms, n=2)   
[<SpikeTrain(array([ 104.24942044,  246.0317873 ,  584.55938657,
    818.84446913]) * ms, [0.0 ms, 1000.0 ms])>,
 <SpikeTrain(array([ 111.36693058,  235.15750163,  618.87388515,
    786.1807108 ]) * ms, [0.0 ms, 1000.0 ms])>]
>>> print dither_spikes(st, dither = 20*pq.ms, decimals=0)   
[<SpikeTrain(array([  81.,  242.,  595.,  799.]) * ms,
    [0.0 ms, 1000.0 ms])>]
elephant.spike_train_surrogates.jitter_spikes(spiketrain, binsize, n=1)[source]

Generates surrogates of a spiketrain by spike jittering.

The surrogates are obtained by defining adjacent time bins spanning the spiketrain range, and random re-positioning (independently for each surrogate) each spike in the time bin it falls into.

The surrogates retain the t_start and :attr:`t_stop of the spike train. Note that within each time bin the surrogate neo.SpikeTrain objects are locally poissonian (the inter-spike-interval are exponentially distributed).

Parameters:
spiketrain : neo.SpikeTrain

The spike train from which to generate the surrogates

binsize : quantities.Quantity

Size of the time bins within which to randomise the spike times. Note: the last bin arrives until spiketrain.t_stop and might have width different from binsize.

n : int (optional)

Number of surrogates to be generated. Default: 1

Returns:
list of SpikeTrain

A list of spike trains, each obtained from spiketrain by randomly replacing its spikes within bins of user-defined width. The range of the surrogate spike trains is the same as spiketrain.

Examples

>>> import quantities as pq
>>> import neo
>>>
>>> st = neo.SpikeTrain([80, 150, 320, 480]*pq.ms, t_stop=1*pq.s)
>>> print jitter_spikes(st, binsize=100*pq.ms)   
[<SpikeTrain(array([  98.82898293,  178.45805954,  346.93993867,
    461.34268507]) * ms, [0.0 ms, 1000.0 ms])>]
>>> print jitter_spikes(st, binsize=100*pq.ms, n=2)   
[<SpikeTrain(array([  97.15720041,  199.06945744,  397.51928207,
    402.40065162]) * ms, [0.0 ms, 1000.0 ms])>,
 <SpikeTrain(array([  80.74513157,  173.69371317,  338.05860962,
    495.48869981]) * ms, [0.0 ms, 1000.0 ms])>]
>>> print jitter_spikes(st, binsize=100*pq.ms)   
[<SpikeTrain(array([  4.55064897e-01,   1.31927046e+02,   3.57846265e+02,
     4.69370604e+02]) * ms, [0.0 ms, 1000.0 ms])>]
elephant.spike_train_surrogates.randomise_spikes(spiketrain, n=1, decimals=None)[source]

Generates surrogates of a spike trains by spike time randomisation.

The surrogates are obtained by keeping the spike count of the original SpikeTrain object, but placing them randomly into the interval [spiketrain.t_start, spiketrain.t_stop]. This generates independent Poisson neo.SpikeTrain objects (exponentially distributed inter-spike intervals) while keeping the spike count as in spiketrain.

Parameters:
spiketrain : neo.SpikeTrain

The spike train from which to generate the surrogates

n : int (optional)

Number of surrogates to be generated. Default: 1

decimals : int or None (optional)

Number of decimal points for every spike time in the surrogates If None, machine precision is used. Default: None

Returns:
list of neo.SpikeTrain object(s)

A list of neo.SpikeTrain objects, each obtained from spiketrain by randomly dithering its spikes. The range of the surrogate spike trains is the same as spiketrain.

Examples

>>> import quantities as pq
>>> import neo
>>>
>>> st = neo.SpikeTrain([100, 250, 600, 800]*pq.ms, t_stop=1*pq.s)
>>> print randomise_spikes(st)   
    [<SpikeTrain(array([ 131.23574603,  262.05062963,  549.84371387,
                        940.80503832]) * ms, [0.0 ms, 1000.0 ms])>]
>>> print randomise_spikes(st, n=2)   
    [<SpikeTrain(array([  84.53274955,  431.54011743,  733.09605806,
          852.32426583]) * ms, [0.0 ms, 1000.0 ms])>,
     <SpikeTrain(array([ 197.74596726,  528.93517359,  567.44599968,
          775.97843799]) * ms, [0.0 ms, 1000.0 ms])>]
>>> print randomise_spikes(st, decimals=0)   
    [<SpikeTrain(array([  29.,  667.,  720.,  774.]) * ms,
          [0.0 ms, 1000.0 ms])>]
elephant.spike_train_surrogates.shuffle_isis(spiketrain, n=1, decimals=None)[source]

Generates surrogates of a neo.SpikeTrain object by inter-spike-interval (ISI) shuffling.

The surrogates are obtained by randomly sorting the ISIs of the given input spiketrain. This generates independent SpikeTrain object(s) with same ISI distribution and spike count as in spiketrain, while destroying temporal dependencies and firing rate profile.

Parameters:
spiketrain : neo.SpikeTrain

The spike train from which to generate the surrogates

n : int (optional)

Number of surrogates to be generated. Default: 1

decimals : int or None (optional)

Number of decimal points for every spike time in the surrogates If None, machine precision is used. Default: None

Returns:
list of SpikeTrain

A list of spike trains, each obtained from spiketrain by random ISI shuffling. The range of the surrogate neo.SpikeTrain objects is the same as spiketrain.

Examples

>>> import quantities as pq
>>> import neo
>>>
>>> st = neo.SpikeTrain([100, 250, 600, 800]*pq.ms, t_stop=1*pq.s)
>>> print shuffle_isis(st)   
    [<SpikeTrain(array([ 200.,  350.,  700.,  800.]) * ms,
             [0.0 ms, 1000.0 ms])>]
>>> print shuffle_isis(st, n=2)   
    [<SpikeTrain(array([ 100.,  300.,  450.,  800.]) * ms,
          [0.0 ms, 1000.0 ms])>,
     <SpikeTrain(array([ 200.,  350.,  700.,  800.]) * ms,
          [0.0 ms, 1000.0 ms])>]
elephant.spike_train_surrogates.surrogates(spiketrain, n=1, surr_method='dither_spike_train', dt=None, decimals=None, edges=True)[source]

Generates surrogates of a spiketrain by a desired generation method.

This routine is a wrapper for the other surrogate generators in the module.

The surrogates retain the t_start and t_stop of the original spiketrain.

Parameters:
spiketrain : neo.SpikeTrain

The spike train from which to generate the surrogates

n : int, optional

Number of surrogates to be generated. Default: 1

surr_method : str, optional

The method to use to generate surrogate spike trains. Can be one of: * ‘dither_spike_train’: see surrogates.dither_spike_train() [dt needed] * ‘dither_spikes’: see surrogates.dither_spikes() [dt needed] * ‘jitter_spikes’: see surrogates.jitter_spikes() [dt needed] * ‘randomise_spikes’: see surrogates.randomise_spikes() * ‘shuffle_isis’: see surrogates.shuffle_isis() Default: ‘dither_spike_train’

dt : quantities.Quantity, optional

For methods shifting spike times randomly around their original time (spike dithering, train shifting) or replacing them randomly within a certain window (spike jittering), dt represents the size of that shift / window. For other methods, dt is ignored. Default: None

decimals : int or None, optional

Number of decimal points for every spike time in the surrogates If None, machine precision is used. Default: None

edges : bool

For surrogate spikes falling outside the range [spiketrain.t_start, spiketrain.t_stop), whether to drop them out (for edges = True) or set that to the range’s closest end (for edges = False). Default: True

Returns:
list of neo.SpikeTrain objects

A list of spike trains, each obtained from spiketrain by randomly dithering its spikes. The range of the surrogate neo.SpikeTrain object(s) is the same as spiketrain.