| rtDist | R Documentation | 
Returns value(s) from a distribution appropriate to simulate reaction times. The distribution is a combined exponential and gaussian distribution called an exponentially modified Gaussian (EMG) distribution or ex-gaussian distribution.
rtDist(n = 10000, gaussMean = 600, gaussSD = 50, expRate = 200)
| n | Number of observations | 
| gaussMean | Mean of the gaussian distribution | 
| gaussSD | SD of the gaussian distribution | 
| expRate | Rate of the exponential function | 
double
# Example 1
x <- rtDist()
hist(x, 100, xlab = "RT [ms]")
# Example 2
x <- rtDist(n=2000, gaussMean=500, gaussSD=100, expRate=300)
hist(x, 100, xlab = "RT [ms]")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.