CHaRTr

CHaRTr-Evidence Accumulation and Urgency Gating models for analysis of decision-making behavior
Chandramouli Chandrasekaran, Guy Hawkins

CHaRTr – Github page

This toolbox is an attempt by us (Chand Chandrasekaran, Guy Hawkins) to provide researchers interested in various models of decision-making a simple, easily run and an extensible toolbox for analysis of RT and choice behavior in decision-making tasks. This toolbox or earlier less-documented and elaborated variants of it have currently been used in four papers (Chandrasekaran et al. 2017, Hawkins et al. 2015a, Hawkins et al. 2015b , Evans et al. 2017) and we anticipate/expect/hope that many more are going to be published based on this toolbox. The motivation to release this toolbox is for a few reasons.

1. Scientific : Advance research into quantitative rather than descriptive models of psychophysics especially for two alternative forced choice decision-making.

2. Communication : By releasing this toolbox we are outlining a specific implementation in code of the models that we think are currently being tested. We often find in journal papers that the methods section is still quite vague and we have scratched our heads to identify what exactly researchers chose as their model specification to perform their comparison between different models.

3. Beyond the mean : Remarkable amount of research into the drift diffusion model has led to the insight that simple fitting of mean RTs is perhaps not the best way to understand which candidate model of decision-making provides the best description of RT and choice behavior in discrimination tasks. The consensus is that we need to move beyond the mean and fitting the quantiles of RT distributions for both correct and error trials. However, fitting full quantiles of RT distributions is difficult and needs expertise in optimization (see also point 4 below). Fortunately, we are building on these insights and are now able to provide the ability to fit the quantiles of RT distributions.

4. Ease of Use : When trying to learn how to use these different models to understand decision-making, the brick wall that often comes up was implementing such a model in any language and deriving RT and choice outputs from it. Unfortunately, these are all stochastic differential equations and analytical solutions are rare except for some remarkably simple cases. Fortunately, R has powerful optimizers and we decided to leverage the powerful optimization technique such as Differential Evolution to fit the parameters of various models.

We outline further details in the accompanying biorxiv paper that is currently under review. If you use the toolbox in your own research please cite the paper in the main manuscript.

Using this toolbox.

The architecture of the toolbox is very simple. The choosing of which model to run and the lower and upper parameter limits and the parameter names are performed in R. The models are specified in C which is then dynamically called by the DEoptim function from the differential evolution package in R called DEoptim, This toolbox has several models available that can be easily run with minor modification.

We assume that there is a reasonable working knowledge of R and C to run this code. General understanding of programming is also quite helpful. There is a small learning curve to ensure that the parameters are properly specified.

Compiling the shared object file

To run the model on your specific architecture you need to compile a shared object file that is dynamically loaded by R to perform the optimization. This is done very easily by typing the following code at a command line prompt.

R CMD SHLIB chartr-ModelSpec.c

This command compiles chartr-diffusion.c and then link the output object file into a shared object (.so on unix systems such as a MAC and LINUX) which can be loaded into R using the function dyn.load.

The implementation has not been tested on windows.