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 | 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( aggregate_features(s, "spike", parameters))
ns_features = suppressWarnings( aggregate_features(s, "ns", parameters) )
burst_features = suppressWarnings( aggregate_features(s, "burst", parameters) )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.