powered by
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)
double
Number of observations
Mean of the gaussian distribution
SD of the gaussian distribution
Rate of the exponential function
# Example 1: x <- rtDist() hist(x, 100) # Example 2: x <- rtDist(n = 20000, gaussMean = 800, gaussSD = 50, expRate = 100) hist(x, 100)
Run the code above in your browser using DataLab