Say we have normal distribution n(x): mean=0 and \int_{-a}^{a} n(x) = P.
What is the easiest way to compute standard deviation of such distribution? May be there are standard libraries for python or C, that are suitable for that task?
|
1
|
Say we have normal distribution n(x): mean=0 and \int_{-a}^{a} n(x) = P. What is the easiest way to compute standard deviation of such distribution? May be there are standard libraries for python or C, that are suitable for that task?
|
||||||||||
|
|
|
The standard deviation of a mean-zero gaussian distribution with Pr(-a < X < a) = P is
which is the expression you're looking for, where inverseErf is the inverse of the error function (commonly known as erf). For C, the Gnu Scientific Library (GSL) is a good resource. However it only has erf, not inverseErf, so you'd have to invert it yourself (a simple binary search would do the trick). Alternatively, here's a nice way to approximate erf and inverseErf: http://homepages.physik.uni-muenchen.de/~Winitzki/erf-approx.pdf For Python, inverseErf is available as
PS: There's some kind of bug in Stackoverflow's URL rendering and it wouldn't let me link to GSL above: http://www.gnu.org/software/gsl. It also renders wrong when I make the URL above with a pdf a proper link. |
|||
|
|
|
|
If X is normal with mean 0 and standard deviation sigma, it must hold
where N is normal with mean 0 and standard deviation 1. Hence
Where Phi is the cumulative distribution function (cdf) of a normal variable with mean 0 and stddev 1. Now we need the inverse normal cdf (or the "percent point function"), which in Python is scipy.stats.norm.ppf(). Sample code:
For example, we know that the probability of a N(0,1) variable falling int the interval [-1.1] is ~ 0.682 (the dark blue area in this figure). If you set P = 0.682 and a = 1.0 you obtain sigma ~ 1.0, which is indeed the standard deviation. |
|||
|
|
|
|
Take a look at the sciPy Project, it should have what you need. |
||
|
|