Can Random.nextgaussian() sample values from a distribution with different mean and standard deviation?

前端 未结 1 1855

This is a combined Java and basic math question. The documentation from Random.nextGaussian() states that it samples from a normal distribution with mean 0 and standard devi

相关标签:
1条回答
  • 2020-12-15 18:37

    The short answer is

    Random r = new Random();
    double mySample = r.nextGaussian()*desiredStandardDeviation+desiredMean;
    

    For example this answer is given here: http://www.javamex.com/tutorials/random_numbers/gaussian_distribution_2.shtml

    I didn't really understand why this worked, but after looking into it a bit I think I figured it out. The mean of the sample point is 0, and the standard deviation is 1; that means that the original sample is also its own z-score ( https://en.wikipedia.org/wiki/Standard_score ). To quote from wikipedia "The absolute value of z represents the distance between the raw score and the population mean in units of the standard deviation". The formula is z=(x-mean)/stdev, so with the default values z=x. If we wanted to retain the z score for the sample but change the mean and stdev what would we do?

    z*stdev + mean = x' where z=x, and x' represents the sample from the distribution with the desired mean and standard deviation.

    0 讨论(0)
提交回复
热议问题