MINERVA2 {JoF} | R Documentation |
Modeling Judgments of Frequency with MINERVA 2
Description
Modeling Judgments of Frequency with MINERVA 2
Usage
MINERVA2(x, y, ..., sqc, L, dec = NULL)
Arguments
x |
input handled by MINERVA 2. Values -1, 0 and 1 are allowed. -1 represents the absence of a feature, 0 the irrelevance of a feature and 1 the presence of a feature. |
y |
another input handled by MINERVA 2. At least two inputs are needed for the simulation. |
... |
other inputs for modeling. |
sqc |
sequence of the different objects. Each input gets
an ascending number. |
L |
learning parameter. This is the proportion of a
correctly stored vector. |
dec |
decay is not part of the original version of MINERVA 2.
This is just implemented for a better comparison with the other
models of JoF. In |
Details
Calculations of MINERVA 2 contain four steps.
S_{i} = \frac{\sum_{j=1}^{N}{P_{j}T_{ij}}}{N_{i}}
A_{i} = S_{i}^{3}
I = \sum_{i=1}^{M}{A_{i}}
relative JoF = \frac{I_{j}}{\sum_{j}^{K}{I_{j}}}
Value
MINERVA2 returns the relative judgment of frequency
References
Dougherty, M. R., Gettys, C. F., & Ogden, E. E. (1999). MINERVA-DM: A memory processes model for judgments of likelihood. Psychological Review, 106(1), 180.
Hintzman, D. L. (1984). MINERVA 2: A simulation model of human memory. Behavior Research Methods, Instruments, and Computers, 16, 96–101.
Examples
#This example is presented in Dougherty,
#Gettys, & Ogden, 1999 (p. 185)
H1 <- c(-1, 1, 0, 1, 0, -1, 1, -1, 0)
H2 <- c(-1, 0, 0, 1, 0, 0, 1, 0, 0)
x <- MINERVA2(H1, H2, sqc = c(2, 1), L = 1)