###########################################################################
# Detect-Guess variant of the Two-High Threshold model.
# The encoding and motor execution times will be set to different responses
###########################################################################
mdl_2HTM <- "
# targets
do+(1-do)*g
(1-do)*(1-g)
# lures
(1-dn)*g
dn+(1-dn)*(1-g)
# do: detect old; dn: detect new; g: guess
"
model <- to_ertmpt_model(mdl_file = mdl_2HTM)
## changing the model to have two different encoding and motor execution
## times for "old" and "new" responses.
new_model <- delta2delta(model = model, trees = c(0, 1),
categories = c(1,3), mappings = c(1,1))
new_model
model <- to_drtmpt_model(mdl_file = mdl_2HTM)
## changing the model to have two different encoding and motor execution
## times for "old" and "new" responses.
new_model <- delta2delta(model = model, trees = c(0, 1),
categories = c(1,3), mappings = c(1,1))
new_model
## changing the model to have two different encoding and response execution
## times for "old" and "new" responses.
new_model <- set_deltas_equal(model = model, trees = c(0, 1),
categories = c(1,3), mappings = c(1,1))
new_model
Run the code above in your browser using DataLab