Learn R Programming

IGM.MEA (version 0.3.4.1)

IGM.aggregate.feature.data: Aggregate Feature Data

Description

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

Usage

IGM.aggregate.feature.data(s, feat.type, parameters)

Arguments

s
MEA data structure
feat.type
Type of features (e.g. "spikes", "ns", "bursts")
parameters
a list of parameters, see data("parameters")

Value

Examples

Run this code
	data("S")
	data("parameters")
	s<-list()
	s[[1]]<-S
	spike.features = suppressWarnings( IGM.aggregate.feature.data(s, "spike", parameters))
	ns.features = suppressWarnings( IGM.aggregate.feature.data(s, "ns", parameters) )
	burst.features = suppressWarnings( IGM.aggregate.feature.data(s, "burst", parameters) )

Run the code above in your browser using DataLab