networkspikes {sjemea}R Documentation

Compute network spikes

Description

Compute the network spikes in an MEA recording, by averaging over all the electrodes in the array.

Usage

s$ns <- compute.ns(s, ns.T=0.003, ns.N=10,sur=100)
show.ns(ns, ...)

Arguments

s MEA data structure
ns.T Bin width (in msec) for counting spikes.
ns.N Threshold number of active electrodes required to make network spike
sur How many bins either side of peak to retain when computing the mean network spike
ns A network spike data structure, returned by compute.ns
... Other plot arguments to pass to show.ns

Details

To see the mean network spikes after they have computed, just look at the mean object.

If you wish to see the individual network spikes, try show.ns(ns, ...) where the remaining args are passed to the plot function.

Value

A list with the following elements:

counts vector giving the number of active electrodes in each bin; this can be very long!
ns.N The value of ns.N used.
ns.T the value of ns.T used.
mean The profile of the mean network spike (this is a time series object)
measures If N network spikes were found, this is a matrix with N rows, one per network spike.
brief A short vector summarizing the network spikes.

Author(s)

References

Eytan and Marom (2006) J Neuroscience.

See Also

Examples

data.file <- system.file("examples", "TC89_DIV15_A.nexTimestamps",
                         package = "sjemea")
s <- sanger.read.spikes( data.file, beg=400, end=700)
s$ns <- compute.ns(s, ns.T=0.003, ns.N=10,sur=100)
plot(s$ns)
plot(s$ns, xlim=c(450, 500))

plot(s$ns$mean)                         #show mean NS.
summary(s$ns)
s$ns$brief


[Package sjemea version 0.19 Index]