Working example of how to use the functions within this package to create an analysis pipeline.
Arguments
- data_folder_path
path of data folder containing *.ASC files
- data_parameters
path of csv file with project parameters
Details
This particular workflow is used to analyze the amplitude, failure rate, potency, paired-pulse ratio of post-synaptic potentials recorded using a intracellular electrophysiology technique.
Examples
if (FALSE) {
data_path <- paste(getwd(), "data-raw/evoked_psp", sep = "/")
data_folder <- paste(data_path, "data", sep = "/")
data_parameters <- paste(data_path, "evoked_psp_parameters.csv", sep = "/")
data_collection <- analysis_evoked_psp(
data_folder_path = data_folder,
data_parameters = data_parameters
)
}