IGM.aggregate.features: Aggregate Feature Data

Description Usage Arguments Value Examples

View source: R/aggregateData.R

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

1

Arguments

s

MEA data structure

feat.type

Type of features (e.g. "spikes", "ns", "bursts")

parameters

A list of parameters, see data("parameters")

Value

A list of dataframes for a given set of features

Examples

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) )

IGM.MEA documentation built on May 29, 2017, 11:07 p.m.