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( aggregate_features(s, "spike", parameters))
	ns_features = suppressWarnings( aggregate_features(s, "ns", parameters) )
	burst_features = suppressWarnings( aggregate_features(s, "burst", parameters) )

meaRtools documentation built on May 1, 2019, 7:32 p.m.