a2const {rtmpt} | R Documentation |
Set process threshold to constants
Description
Setting process thresholds (parameter a) to constants or change it back to be estimated.
Usage
a2const(model, names, constants = NA)
set_a_const(model, names, constants = NA)
Arguments
model |
An object of the class |
names |
Character vector with process names. |
constants |
Numerical vector of length one or
|
Value
An object of the class drtmpt_model
.
Author(s)
Raphael Hartmann
See Also
delta2delta
, a2a
, nu2const
, nu2nu
, omega2const
and omega2omega
Examples
####################################################################################
# Detect-Guess variant of the Two-High Threshold model.
# The encoding and motor execution times are assumed to be equal for each category.
# The process threshold for guessing (g) will be set to 1.0.
####################################################################################
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_drtmpt_model(mdl_file = mdl_2HTM)
## setting threshold for g to a constant (1.0):
new_model <- a2const(model = model, names = c("g"), constants = c(1.0))
new_model
## setting threshold of g to a constant (1.0):
new_model <- set_a_const(model = model, names = c("g"), constants = c(1.0))
new_model
[Package rtmpt version 2.0-1 Index]