Presence ratio (presence_ratio)

Calculation

Presence ratio is the proportion of discrete time bins in which at least one spike occurred.

\[\textrm{presence ratio} = \frac{B_s}{B_s + B_n}\]
  • \(B_s\) : number of bins in which spikes occurred.

  • \(B_n\) : number of bins in which no spikes occurred.

Expectation and use

Complete units are expected to have a presence ratio of 90% or more. Low presence ratio (close to 0) can indicate incompleteness (type II error) or highly selective firing pattern.

Example code

import spikeinterface.qualitymetrics as qm

# Make recording, sorting and wvf_extractor object for your data.

presence_ratio = qm.compute_presence_ratios(wvf_extractor)
# presence_ratio is a dict containing the units' ID as keys
# and their presence ratio (between 0 and 1) as values.

References

spikeinterface.qualitymetrics.misc_metrics.compute_presence_ratios(waveform_extractor, bin_duration_s=60)

Calculate the presence ratio, representing the fraction of time the unit is firing.

Parameters
waveform_extractorWaveformExtractor

The waveform extractor object.

bin_duration_sfloat, optional, default: 60

The duration of each bin in seconds. If the duration is less than this value, presence_ratio is set to NaN

Returns
presence_ratiodict of flaots

The presence ratio for each unit ID.

Notes

The total duration, across all segments, is divided into “num_bins”. To do so, spike trains across segments are concatenated to mimic a continuous segment.

Literature

Unknown origin.