Skip to contents

Create a dataframe of delays and the corresponding indifference points predicted by a model.

Usage

indiffs(mod)

Arguments

mod

A model of class td_bcnm, td_ipm, or td_ddm.

Value

A dataframe with columns del (delay) and indiff (indifference point).

Examples

# \donttest{
data("td_bc_single_ptpt")
mod <- td_bcnm(td_bc_single_ptpt, discount_function = 'model-free')
indiff_data <- indiffs(mod)
# }