
Evoked current data summarized into 5-minute intervals
Source:R/Sample-datasets.R
sample_summary_eEPSC_df.RdThis is an example of the summary eEPSC data produced using
make_summary_EPSC_data(). It is useful for demonstrating functions that
build off of this dataset, such as plot_summary_current_data(). This is a list of three dataframes.
Format
An .rda file containing a list of three dataframes. The first dataframe ($percent_change_data) contains the mean current amplitude for each interval, with a final column (percent_change) containing the final percent change in amplitude in the last interval relative to the baseline interval. The second dataframe ($summary_data) contains summary statistics for each interval. The third dataframe ($mean_SE) contains averaged evoked current amplitudes (with standard error) for each time interval. This is useful for publications where you want to report your findings as means +/- SE or SD.
See below for more details.
$percent_change_data
categoryA factor representing the experiment type. Used to assign top-level groups for further analyses, with
treatmentas subgroups. For example, "1" may refer to an experiment where you applied high-frequency stimulation (HFS) to a cell, while "2" is an experiment where you added a hormone like leptin. "3" may be an experiment where you applied HFS in the continuous presence of leptin.letterA factor that is a unique identifier for a single recording. Used to link data sets for evoked or spontaneous currents and cell-characteristics.
sexA factor with two levels (e.g. "Male" or "Female").
treatmentA factor based on the treatment applied (e.g. "Control", "HNMPA"). This represents the antagonists or agonists applied, or any protocol applied to the animals (e.g. "Fasting").
ageA numeric value representing the animal's age. Can be any value as long as the time units are consistent throughout (e.g. don't mix up days and months when reporting animal ages).
animalA numeric value representing the animal's ID or number.
XA numeric value representing the x-value of the cell's location in µm. Leave this blank if you don't have this data.
YA numeric value representing the y-value of the cell's location in µm. Leave this blank if you don't have this data.
synapsesA character value (e.g. "Glutamate" or "GABA").
days_aloneA numeric value describing the number of days that the animal was left alone in a cage. This typically ranges from 0 to 2. Fasted animals will have 1 day alone.
animal_or_slicing_problemsA character value ("yes" or "no") describing if there were any issues with the animal (for example, the animal was unusually anxious) or slicing (there were delays during the process, the slices were crumpling, etc.).
t0to5The mean evoked current amplitude (pA) for this cell during the period of 0 to 5 minutes.
t5to10The mean evoked current amplitude (pA) for this cell during the period of 5 to 10 minutes.
t10to15,t15to20,tXtYetc...The mean evoked current amplitude (pA) for this cell during the period of X to Y minutes.
percent_changeThe percent change in evoked current amplitude in the interval
t20to25as a percentage of the mean baseline amplitude (t0to5). For example, if currents began at 100 pA during the baseline period, but were 50 pA byt20to25, the value ofpercent_changewill be50%or0.50.
$summary_data
categoryA factor representing the experiment type. Used to assign top-level groups for further analyses, with
treatmentas subgroups. For example, "1" may refer to an experiment where you applied high-frequency stimulation (HFS) to a cell, while "2" is an experiment where you added a hormone like leptin. "3" may be an experiment where you applied HFS in the continuous presence of leptin.letterA factor that is a unique identifier for a single recording. Used to link data sets for evoked or spontaneous currents and cell-characteristics.
sexA factor with two levels (e.g. "Male" or "Female").
treatmentA factor based on the treatment applied (e.g. "Control", "HNMPA"). This represents the antagonists or agonists applied, or any protocol applied to the animals (e.g. "Fasting").
intervalA factor indicating the interval that the data point belongs to. For example,
intervalwill be "t0to5" for any data points from 0 to 5 minutes. Example values: "t0to5", "t5to10", etc.mean_P1_transformedA numeric value representing the mean current amplitude (in pA normalized to the baseline amplitude) of the first evoked current. The values used to produce mean_P1_transformed come from all data points within each interval (the length of the interval was specified in
make_normalized_EPSC_data()).mean_P1_rawThe same values as those in
mean_P1_transformedexcept these values contain raw values for current amplitude (e.g. the data were not baseline transformed).nThe number of data points used to produce each value in
mean_P1_transformedandmean_P1_rawsdThe standard deviation of the mean current values.
cvThe coefficient of variation of the mean current values.
seThe standard error of the mean current values.
cv_inverse_squareThe inverse coefficient of variation squared of the mean current values. Calculated by using (
1/cv^2), wherecvis the coefficient of variation. Useful for variance analysis.varianceThe variance of the current values, calculated using
stats::var().VMRThe variance-to-mean ratio, calculated using
variance/mean_P1_transformed. Useful for variance analysis.ageA numeric value representing the animal's age. Can be any value as long as the time units are consistent throughout (e.g. don't mix up days and months when reporting animal ages).
animalA numeric value representing the animal's ID or number.
XA numeric value representing the x-value of the cell's location in µm. Leave this blank if you don't have this data.
YA numeric value representing the y-value of the cell's location in µm. Leave this blank if you don't have this data.
timeA numeric value that represents time in minutes. This column is autogenerated in
add_new_cells().synapsesA character value (e.g. "Glutamate" or "GABA").
days_aloneA numeric value describing the number of days that the animal was left alone in a cage. This typically ranges from 0 to 2. Fasted animals will have 1 day alone.
animal_or_slicing_problemsA character value ("yes" or "no") describing if there were any issues with the animal (for example, the animal was unusually anxious) or slicing (there were delays during the process, the slices were crumpling, etc.).
$mean_SE
categoryThe experiment category (please seeimport_cell_characteristics_df()for more details).sexThe sex of the animaltreatmentThe treatment applied.nThe number of data points (i.e. cells)mean_baseline_raw_P1The average evoked current amplitude (taken frommean_P1_raw) during thebaseline_interval.sd_baseline_raw_P1The standard deviation ofmean_baseline_raw_P1.se_baseline_raw_P1The standard error ofmean_baseline_raw_P1. Taken by dividingsd_baseline_raw_P1by the square root ofn.mean_ending_raw_P1The average evoked current amplitude (taken frommean_P1_raw) during theending_interval.sd_ending_raw_P1The standard deviation ofmean_ending_raw_P1.se_ending_raw_P1The standard error ofmean_ending_raw_P1. Taken by dividingsd_ending_raw_P1by the square root ofn.VMRThe variance-to-mean ratio (VMR) ofP1_transformed.intervalA character value indicating the interval that the data point belongs to. For example,intervalwill be "t0to5" for any data points from 0 to 5 minutes. Example values: "t0to5", "t5to10", etc.letter, synapses, sex, treatment, etc.Unmodified columns from the original dataset describing the cell's properties.