simssgen {SimSST} | R Documentation |
Simulating correlated SST data using general tracking method
Description
Stop signal task data of go and stop trials is generated per participant. The tracking signal delay method with underlying exponentially modified Gaussian(ExG) or Shifted Wald(SW) distributions for each of go and stop process is applied. The output data can be converted to 'BEESTS' software input data enabling researchers to test and evaluate different distributional parameters of interest.
Usage
simssgen(
pid,
block,
n,
m,
SSD.b,
dist.go,
theta.go,
dist.stop,
theta.stop,
rho,
d
)
Arguments
pid |
a character vector of size |
block |
a numeric vector of size |
n |
a numeric vector of size |
m |
a numeric vector of size |
SSD.b |
a numeric vector of size |
dist.go |
a character vector of size |
theta.go |
a numeric matrix of size |
dist.stop |
a character vector of size |
theta.stop |
a numeric matrix of size |
rho |
a numeric vector of size |
d |
a numeric vector of size |
Value
a matrix with sum(n)
rows and (8) columns
References
Gordon D. Logan. On the Ability to Inhibit Thought and Action: A User's Guide to the Stop Signal Paradigm. In D. Dagenbach, & T.H. Carr (Eds.), Inhibitory Process in Attention, Memory and Language. San Diego: Academic Press, 1994.
Dora Matzke, Jonathon Love, Thomas V. Wiecki, Scott D. Brown, and et al. Release the BEESTS: Bayesian Estimation of Ex-Gaussian Stop Signal Reaction Times Distributions. Frontiers in Psychology, 4: Article 918, 2013.
Mohsen Soltanifar. Stop Signal Reaction Times: New Estimations with Longitudinal, Bayesian and Time Series based Methods, PhD Dissertation, Biostatistics Division, Dalla Lana School of Public Health, University of Toronto, Toronto, Canada, 2020.
Examples
mySSTdata1 <- simssgen(
pid = c("John.Smith","Jane.McDonald","Jane.McDonald"),
block = c(1,1,2),
n = c(50,100,150),
m = c(10,20,30),
SSD.b = c(200,220,240),
dist.go = c("ExG","ExG","ExG"),
theta.go = as.matrix(rbind(c(400,60,30),c(440,90,90),c(440,90,90))),
dist.stop = c("ExG","ExG","ExG"),
theta.stop = as.matrix(rbind(c(100,70,60),c(120,80,70),c(120,80,70))),
rho = c(0.35,0.45,0.45),
d = c(50,65,75))
mySSTdata1