fitRTConf {dynConfiR} | R Documentation |
Function for fitting sequential sampling confidence models
Description
Fits the parameters of different models of response time and confidence, including
the 2DSD model (Pleskac & Busemeyer, 2010), dynWEV, DDMConf, and various
flavors of race models (Hellmann et al., 2023). Which model to fit is
specified by the argument model
.
Only a ML method is implemented.
See dWEV
, d2DSD
, and dRM
for more
information about the parameters and Details for not-fitted parameters.
Usage
fitRTConf(data, model = "dynWEV", fixed = list(sym_thetas = FALSE),
init_grid = NULL, grid_search = TRUE, data_names = list(),
nRatings = NULL, restr_tau = Inf, precision = 1e-05, logging = FALSE,
opts = list(), optim_method = "bobyqa", useparallel = FALSE,
n.cores = NULL, ...)
Arguments
data |
a
|
model |
character scalar. One of "dynWEV", "2DSD", "IRM", "PCRM", "IRMt", "PCRMt", or "DDMConf" for the model to be fit. |
fixed |
list. List with parameter-value pairs for parameters that should not be fitted. See Details. |
init_grid |
data.frame or |
grid_search |
logical. If |
data_names |
named list (e.g. |
nRatings |
integer. Number of rating categories. If |
restr_tau |
numerical or |
precision |
numerical scalar. For 2DSD and dynWEV only. Precision of calculation.
(in the respective models) for the density functions (see |
logging |
logical. If |
opts |
list. A list for more control options in the optimization routines
(depending on the |
optim_method |
character. Determines which optimization function is used for
the parameter estimation. Either |
useparallel |
logical. If |
n.cores |
integer or |
... |
Possibility of giving alternative variable names in data frame
(in the form |
Details
The fitting involves a first grid search through computation of the
likelihood on an initial grid with possible sets of parameters to start the
optimization routine. Then the best nAttempts
parameter sets are
chosen for an optimization, which is done with an algorithm, depending on the
argument optim-method
. The Nelder-Mead algorithm uses the R function
optim
. The optimization routine is restarted
nRestarts
times with the starting parameter set equal to the
best parameters from the previous routine.
stimulus, response and correct. Two of these columns must be given in
data. If all three are given, correct will have no effect (and will be not checked!).
stimulus can always be given in numerical format with values -1 and 1. response
can always be given as a character vector with "lower" and "upper" as values.
Correct must always be given as a 0-1-vector. If the stimulus column is given
together with a response column and they both do not match the above format,
they need to have the same values/levels (if factor
).
In the case that only stimulus/response is given in any other format together with
correct, the unique values will be sorted increasingly and
the first value will be encoded as "lower"/-1 and the second as "upper"/+1.
fixed. Parameters that should not be fitted but kept constant. These will
be dropped from the initial grid search
but will be present in the output, to keep all parameters for prediction in the result.
Includes the possibility for symmetric confidence thresholds for both alternative
(sym_thetas
=logical). Other examples are
z =.5
, sv=0
, st0=0
, sz=0
. For race models, the possibility
of setting a='b'
(or vice versa)
leads to identical upper bounds on the decision processes, which is the equivalence for
z=.5
in a diffusion process.
Parameters not fitted. The models get developed continuously and not all changes are adopted in the fitting function instantly. Following parameters are currently not included in the fitting routine:
in race models:
sza
,szb
,smu1
, andsmu2
init_grid
. Each row should be one parameter set to check. The column names
should include the parameters of the desired model, which are the following for 2DSD:
a
, vmin
and vmax
(will be equidistantly spanned across conditions), sv
, z
(as the
relative starting point between 0 and a
), sz
(also in relative terms), t0
, st0
, theta0
(minimal threshold), thetamax
(maximal threshold; the others will be equidistantly
spanned symmetrically for both decisions), and tau
. For dynWEV,
additionally w
, svis
, and sigvis
are required. For the race models the parameters
are: vmin
, vmax
(will be equidistantly
spanned across conditions), a
and b
(decision thresholds), t0
, st0
, theta0
(minimal threshold), thetamax
(maximal threshold;
the others will be equidistantly spanned symmetrically for both decisions), and for
time-dependent confidence race models
additionally wrt
and wint
(as weights compared to wx=1
).
opts. A list with numerical values. Possible options are listed below (together with the optimization method they are used for).
-
nAttempts
(all) number of best performing initial parameter sets used for optimization; default 5, ifgrid_search
isTRUE
. Ifgrid_search
isFALSE
andinit_grid
isNULL
, thennAttempts
will be set to 1 (and any input will be ignored). Ifgrid_search
isFALSE
andinit_grid
is notNULL
, the rows ofinit_grid
will be used from top to bottom (since no initial grid search is done) with not more thannAttempts
rows used. -
nRestarts
(all) number of successiveoptim
routines for each of the starting parameter sets; default 5, -
maxfun
('bobyqa'
) maximum number of function evaluations; default: 5000, -
maxit
('Nelder-Mead' and 'L-BFGS-B'
) maximum iterations; default: 2000, -
reltol
('Nelder-Mead'
) relative tolerance; default: 1e-6), -
factr
('L-BFGS-B'
) tolerance in terms of reduction factor of the objective, default: 1e-10)
Value
Gives a one-row data frame with columns for the different parameters as
fitted result as well as additional information about the fit (negLogLik
(for
final parameters), k
(number of parameters), N
(number of data rows),
BIC
, AICc
and AIC
) and the column fixed
, which includes all information
about fixed and not fitted parameters.
Author(s)
Sebastian Hellmann.
References
Hellmann, S., Zehetleitner, M., & Rausch, M. (2023). Simultaneous modeling of choice, confidence and response time in visual perception. Psychological Review 2023 Mar 13. doi: 10.1037/rev0000411. Epub ahead of print. PMID: 36913292.
https://nashjc.wordpress.com/2016/11/10/why-optim-is-out-of-date/
https://www.damtp.cam.ac.uk/user/na/NA_papers/NA2009_06.pdf
Examples
# We use one of the implemented models, "dynWEV"
# 1. Generate data
# data with positive drift (stimulus = "upper")
data <- rWEV(20, a=2,v=0.5,t0=0.2,z=0.5, sz=0.1,sv=0.1, st0=0, tau=4, s=1, w=0.3)
data$stimulus <- "upper"
# data with negtive drift (stimulus = "lower") but same intensity
data2 <- rWEV(100, a=2,v=-0.5,t0=0.2,z=0.5,sz=0.1,sv=0.1, st0=0, tau=4, s=1, w=0.3)
data2$stimulus <- "lower"
data <- rbind(data, data2)
# Transfer response column and add dummy condition column
data$response <- ifelse(data$response==1, "upper", "lower")
data$condition <- 1
# Take some confidence thresholds for discrete ratings
threshs <- c(-Inf, 1, 2, Inf)
data$rating <- as.numeric(cut(data$conf, breaks = threshs, include.lowest = TRUE))
head(data)
# 2. Use fitting function
# Fitting the model with these opts results in a pretty bad fit
# (especially because of omitting the grid_search)
fitRTConf(data, "dynWEV", fixed=list(sym_thetas=TRUE, z=0.5, st0=0),
grid_search = FALSE, logging=FALSE,
opts = list(nAttempts=1, nRestarts=2, maxfun=2000))