Convert a temporal discounting model with the "model-free" discount function to a dataframe of indifference points.
Arguments
- mod
A model of class td_bcnm
, td_ipm
, or td_ddm
for which the "model-free" discount function has been fit.
Value
A dataframe with columns del
(delay) and indiff
(indifference point).
Examples
if (FALSE) { # \dontrun{
data("td_bc_single_ptpt")
mod <- td_bcnm(td_bc_single_ptpt, discount_function = 'model-free')
indiff_data <- indiffs(mod)
} # }