compute_potential_hysteresis.RdDetects the pressence of hysteresis
compute_potential_hysteresis(
data,
ntime_col,
deltaqtc_col,
conc_col,
group_col
)A data frame containing C-QT analysis dataset
An unquoted column name for nominal timepoints
An unquoted column name for dQTC measurements
An unquoted column name for concentration measurements
An unquoted column name for grouping column - usually DOSEF
a bool of TRUE if hysteresis detected else FALSE
data_proc <- preprocess(cqtkit_data_verapamil)
data_proc <- dplyr::filter(data_proc, DOSE == 120)
compute_potential_hysteresis(
data_proc,
NTLD,
deltaQTCF,
CONC,
DOSEF)
#> [1] FALSE