View source: R/well_spikes_per_burst.R
well_spikes_per_burst | R Documentation |
Function reads in electrode burst list data and creates new columns with the mean, SD, and SEM number of spikes per burst recorded for each well (within the specified time interval and recording).
well_spikes_per_burst(
data = output_table,
time_lower_bound = 0,
time_upper_bound = Inf,
recording_identifier
)
data |
Electrode burst list dataset preprocessed using the create_electrode_dataset function. |
time_lower_bound |
Define lower bound of time interval for which to calculate the MEA parameter (seconds). |
time_upper_bound |
Define upper bound of time interval for which to calculate the MEA parameter (seconds). |
recording_identifier |
Define recording for which to calculate the MEA parameter. Use recording_identifier defined in create_electrode_dataset function. |
An electrode burst list table with three additional columns (mean, SD and SEM number of spikes per burst recorded for each well within the specified time interval and recording).
output_MEA_data <- well_spikes_per_burst(data = input_MEA_data,
time_lower_bound = 0,
time_upper_bound = 30,
recording_identifier = "burst_recording_1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.