MyNixOS website logo
Description

Models of Decision Confidence and Metacognition.

Provides fitting functions and other tools for decision confidence and metacognition researchers, including meta-d´/d´, often considered to be the gold standard to measure metacognitive efficiency. Also allows to fit several static models of decision making and confidence to test the assumptions underlying meta-d´/d´ and which may serve as an alternative when the assumptions of meta-d´/d´ do not hold. See also Rausch et al. (2023) <doi:10.31234/osf.io/kdz34>.

statConfR: Models of Decision Confidence and Metacognition

This package includes functions to fit meta-d´/d´ as well as several static models of decision making and confidence derived from signal detection theory to test the assumptions underlying meta-d´/d´ and which may serve as an alternative when the assumptions of meta-d´/d´ do not hold. Currently, the following models are included:

  • Signal Detection Rating Model

  • Gaussian Noise Model

  • Weighted Evidence and Visibility Model

  • Post-decisional Accumulation Model

  • Independent Gaussian model

  • Independent Truncated Gaussian Model (the model underlying the meta-d´/d´ method)

See Rausch et al. (2023) for more detail about the models.

Installation

For the current development version, the easiest way of installation is using devtools and install from GitHub:

devtools::install_github("ManuelRausch/StatConfR")

The latest released version of the package will soon be available on CRAN via

install.packages("statConfR")

Usage

Data structure

The package includes a demo data set from a masked orientation discrimination task with confidence judgments.

library(statConfR)
data("MaskOri")
head(MaskOri)
##   participant stimulus correct rating condition gender age trialNo
## 1           1        0       0      1      33.3      f  23       1
## 2           1        0       0      1      16.7      f  23       2
## 3           1       90       1      1     133.3      f  23       3
## 4           1        0       1      4     133.3      f  23       4
## 5           1       90       1      2      33.3      f  23       5
## 6           1       90       0      2      16.7      f  23       6

Data should be in the form of a data.frame object columns for following variables:

  • stimulus (factor with 2 levels): The property of the stimulus which defines which response is correct
  • condition (factor): The experimental manipulation that is expected to affect discrimination sensitivity (only used for fitting confidence models)
  • correct (0-1): Indicating whether the choice was correct (1) or incorrect(0).
  • rating (factor): A discrete variable encoding the decision confidence (high: very confident; low: less confident)
  • sbj (integer): giving the subject ID.
MaskOri$condition <- MaskOri$diffCond
head(MaskOri)
##   participant stimulus correct rating gender age trialNo
## 1           1        0       0      1      f  23       1
## 2           1        0       0      1      f  23       2
## 3           1       90       1      1      f  23       3
## 4           1        0       1      4      f  23       4
## 5           1       90       1      2      f  23       5
## 6           1       90       0      2      f  23       6

Fitting

It is strongly recommended that if metacognitive efficiency is to be measured using the meta-d’/d’ method that researchers fist determine whether the Independent Truncated Gaussian Model, the confidence model implied by the meta-d’/d’ method, is an adequate description of the data. Using the function fitConfModel, we can fit several confidence models to the data of each participant. The argument .parallel=TRUEallows for parallelization over all but one available core.

 fitted_pars <- fitConfModels(MaskOri, models=c("SDT", "WEV"), .parallel = TRUE) 

This parallelizes the fitting process over participant-model combinations. The output is then a data frame with one row for each participant-model combination and columns for parameters and measures for model performance (negative log-likelihood, BIC, AIC and AICc). These may be used for quantitative model comparison.

head(fitted_pars)
##   model participant negLogLik   N  k      BIC     AICc      AIC         d1
## 1   SDT           1  989.8068 960 11 2055.150 2001.846 2001.614 0.15071384
## 2   WEV           1  913.0819 960 13 1915.434 1852.494 1852.164 0.13854199
## 3   SDT           2 1076.5072 960 11 2228.551 2175.246 2175.014 0.24277316
## 4   WEV           2 1053.6981 960 13 2196.666 2133.726 2133.396 0.37470202
## 5   SDT           3  890.3000 960 11 1856.136 1802.832 1802.600 0.01609433
## 6   WEV           3  767.7225 960 13 1624.715 1561.775 1561.445 0.00244278
##          d2       d3       d4       theta         w     sigma        cA1
## 1 1.1622992 5.866728 8.625396  0.38575591        NA        NA -1.7634060
## 2 1.4499134 4.233249 5.506721  0.39877878 0.4147619 0.5123999 -0.8207672
## 3 1.4138645 4.925860 7.691836  0.02784248        NA        NA -2.1061454
## 4 1.4442048 4.073919 5.971996  0.02595525 0.2332637 0.4086341 -1.4745243
## 5 0.1404938 2.947725 7.086975 -1.26647186        NA        NA -2.2868067
## 6 0.4075982 3.206503 5.926012 -1.33589282 0.4360688 0.6875500 -1.9056750
##          cA2         cA3        cB1       cB2      cB3
## 1 -1.1169610 -0.12542605  1.0221640 1.7691779 2.183439
## 2 -0.2423225  0.82897295 -0.1272569 0.6705370 1.086434
## 3 -1.5485703 -0.90972112  0.7944319 1.5473073 1.995515
## 4 -0.9671368 -0.38593372  0.2404484 0.9270251 1.339125
## 5 -1.7878067 -1.35670379  0.8875427 1.7188347 2.410818
## 6 -1.2341607 -0.07619421  0.2861275 1.2793275 2.018620

If the Truncated Gaussian model performs best in the model comparison, metacognitive efficiency can be quantified using meta-d’/d’:

 MetaDs <- fitMetaDprime(MaskOri, model="ML", .parallel = TRUE)

Future development

The package is still under active development. We plan to include more models from the literature and function to compute the predicted distribution of responses for given parameter sets. For any suggestions and contributions, please contact us!

Contact

For comments, remarks, and questions please contact either [email protected] or [email protected] or submit an issue.

References

Rausch, M., Hellmann, S. & Zehetleitner, M. (2023). Measures of metacognitive efficiency across cognitive models of decision confidence. doi: 10.31234/osf.io/kdz34

Metadata

Version

0.0.1

License

Unknown

Platforms (75)

    Darwin
    FreeBSD 13
    Genode
    GHCJS
    Linux
    MMIXware
    NetBSD
    none
    OpenBSD
    Redox
    Solaris
    WASI
    Windows
Show all
  • aarch64-darwin
  • aarch64-genode
  • aarch64-linux
  • aarch64-netbsd
  • aarch64-none
  • aarch64_be-none
  • arm-none
  • armv5tel-linux
  • armv6l-linux
  • armv6l-netbsd
  • armv6l-none
  • armv7a-darwin
  • armv7a-linux
  • armv7a-netbsd
  • armv7l-linux
  • armv7l-netbsd
  • avr-none
  • i686-cygwin
  • i686-darwin
  • i686-freebsd13
  • i686-genode
  • i686-linux
  • i686-netbsd
  • i686-none
  • i686-openbsd
  • i686-windows
  • javascript-ghcjs
  • loongarch64-linux
  • m68k-linux
  • m68k-netbsd
  • m68k-none
  • microblaze-linux
  • microblaze-none
  • microblazeel-linux
  • microblazeel-none
  • mips-linux
  • mips-none
  • mips64-linux
  • mips64-none
  • mips64el-linux
  • mipsel-linux
  • mipsel-netbsd
  • mmix-mmixware
  • msp430-none
  • or1k-none
  • powerpc-netbsd
  • powerpc-none
  • powerpc64-linux
  • powerpc64le-linux
  • powerpcle-none
  • riscv32-linux
  • riscv32-netbsd
  • riscv32-none
  • riscv64-linux
  • riscv64-netbsd
  • riscv64-none
  • rx-none
  • s390-linux
  • s390-none
  • s390x-linux
  • s390x-none
  • vc4-none
  • wasm32-wasi
  • wasm64-wasi
  • x86_64-cygwin
  • x86_64-darwin
  • x86_64-freebsd13
  • x86_64-genode
  • x86_64-linux
  • x86_64-netbsd
  • x86_64-none
  • x86_64-openbsd
  • x86_64-redox
  • x86_64-solaris
  • x86_64-windows