fit_lme | R Documentation |
Estimates mean and standard deviation of energetics or rates with replicates as the random-effect
fit_lme(
data_col,
input,
group_colname = "exp_group",
rep_colname = "replicate"
)
data_col |
The column name of the ATP measure ("ATP_basal_resp", "ATP_max_resp", "ATP_basal_glyc", "ATP_max_glyc") or rate measure ("OCR", "ECAR") |
input |
The dataset containing |
group_colname |
The column containing experimental group names |
rep_colname |
The column containing replicate IDs |
an lme4::lmer
mixed effects model
rep_list <- system.file("extdata", package = "ceas") |>
list.files(pattern = "*.xlsx", full.names = TRUE)
seahorse_rates <- read_data(rep_list, sheet = 2)
partitioned_data <- partition_data(seahorse_rates)
energetics <- get_energetics(partitioned_data, ph = 7.4, pka = 6.093, buffer = 0.1)
fit_lme("ATP_max_glyc", energetics)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.