Skip to contents

Used to store outputs from individual data files (.asc) as they are processed, allowing for grouped analysis and/or plotting functions at a later time. Used in conjunction with fill_summary_array.

Usage

create_summary_array(parameters, y, z)

Arguments

parameters

The output from set_experiment_parameters Experiment parameters data frame.

y

Character, user defined name(s) of output (i.e. "analysis_summary")

z

Character, vector with types of experiments (i.e. matools_env$experiment_types).

Value

Nested empty lists segregated by experiment type with corresponding filenames. Created in the global environment.

Examples

if (FALSE) {
library(matools)

summary_array_names <- c("analysis_summary", "spike_counts_all_cells")

for (name in summary_array_names) {
  create_summary_array(
    matools_env$parameters,
    name,
    matools_env$experiment_types
  )
}


rm(list = summary_array_names)
}