Description Usage Arguments Value Examples
View source: R/aggregateData.R
Takes data from S object (MEA data structure) and makes a list of dataframes. Each dataframe corresponds to one feature, containing values for each well across each DIV of recording
1 | IGM.aggregate.features(s, feat.type, parameters)
|
s |
MEA data structure |
feat.type |
Type of features (e.g. "spikes", "ns", "bursts") |
parameters |
A list of parameters, see data("parameters") |
A list of dataframes for a given set of features
1 2 3 4 5 6 7 | data("S")
data("parameters")
s<-list()
s[[1]]<-S
spike.features = suppressWarnings( IGM.aggregate.features(s, "spike", parameters))
ns.features = suppressWarnings( IGM.aggregate.features(s, "ns", parameters) )
burst.features = suppressWarnings( IGM.aggregate.features(s, "burst", parameters) )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.