Skip to content

compute_hysteresis_labeller

Description

Gets labeller for hysteresis_loop_plot. Should most likely not be used by user

Usage

compute_hysteresis_labeller(
data,
ntime_col,
deltaqtc_col,
conc_col,
dosef_col,
group_col = NULL
)

Arguments

NameDescription
dataa dataframe of QTc data
ntime_colan unquoted column name of Nominal time since last dose (h)
deltaqtc_colan unquoted column name of dQTC measurements (ms)
conc_colan unquoted column name of CONC measurements (units)
dosef_colan unquoted column name of doses as factor
group_colan unquoted column name of additional grouping column.

Returns

list with compute_potential_hysteresis results for each dose.

Examples

data <- preprocess(data)
data <- dplyr::mutate(data, DOSEF = as.factor(DOSEF))
compute_hysteresis_labeller(
data,
NTLD,
deltaQTCF,
CONC,
DOSEF)
compute_hysteresis_labeller.R
function (variable, dose)
{
return(hysteresis)
}
<bytecode: 0x1161bfcb8>
<environment: 0x1161bc390>