How do I convert a non-normal distribution to an equivalent normal distribution?

39 visualizaciones (últimos 30 días)
I am working with probability distributions using multivariate equations. At times some of the variables are not normally distributed but in order to work with the equation, I need all of them to be of the same form and the best one is a normal variation. However I do not know how to transform these into equivalent normal forms.
For example, I have 4 variables in an equation as
g = x1 + 2*x2 - x3*x4;
and x1 and x3 are Weibul and lognormal respectively the data of which is randomly generated using
x1 = wblrnd(1207.289, 6.22326, [1, 1e+6]);
x2 = normrand(769, 15, [1, 1e+6]);
x3 = lognrand(32, 4.57, [1, 1e+6]);
x4 = normrand(250, 4, [1, 1e+6]);
I need help in transforming x1 and x3 into normal random variables so that I can work with them

Respuesta aceptada

Bruno Luong
Bruno Luong el 27 de Mayo de 2022
Editada: Bruno Luong el 27 de Mayo de 2022
You can almost always map a reasonable continuous random distribution to a normal one. If r follows some distribution law and you know the cdf function, let's call it cdf then
g = erfinv(2*cdf(r)-1)
will follow the normal gaussian distribution.
  2 comentarios
the cyclist
the cyclist el 27 de Mayo de 2022
Editada: the cyclist el 27 de Mayo de 2022
@Rohit Sinha, just to put this great answer within the context of my own (and perhaps help make it more specifically useful to your case), this is exactly what the last line of my answer was talking about.
In the case of a Weibull distribution:
rng default
a = 7;
b = 2;
N = 100000;
x = wblrnd(a,b,N,1);
histogram(x)
there does exist a closed-form cdf that transforms it to uniform:
x_cdf = wblcdf(x,a,b);
histogram(x_cdf)
that can then be transformed to a unit normal, just as @Bruno Luong has pointed out:
x_cdf_to_normal = erfinv(2*x_cdf-1);
histogram(x_cdf_to_normal)
Rohit Sinha
Rohit Sinha el 27 de Mayo de 2022
Thank you @Bruno Luong and @the cyclist, this seems quite credible. I'll try this out. Thanks.

Iniciar sesión para comentar.

Más respuestas (2)

the cyclist
the cyclist el 27 de Mayo de 2022
A few thoughts that might be useful, if not exactly a complete answer to your question ...
First, I hope it is clear that not all distributions can be transformed to normal. The most obvious example would be a binomial:
p = 0.2;
x = 0:1;
y = binopdf(0:1,1,p);
bar(x,y,1)
xlabel('Observation')
ylabel('Probability')
Second, there are common misconceptions about normality requirements in modeling. For example, it is often the case that only the model residuals need to be normally distributed, and not the variables themselves. It's impossible to go into all the details of this here, but I feel obligated to mention it.
Third, as @KSSV has mentioned, you can use a power transform (e.g. the Box-Cox transform that they mentioned). My understanding is that these transforms won't necessarily make the distribution strictly normal -- just more "normal-like". I'm not sure that's what you are going for, particularly because, for example, your Weibull distribution with those parameters is pretty well approximated by a normal already. How important that difference is will depend on your application.
Fourth, you can transform the log-normal to normal exactly, by applying natural log.
Fifth, you don't say anything about correlations among variables, but that complicates things. There is some good MATLAB documentation about simulating correlated random variables using copulas. That article is heady stuff, but very useful. It also has ideas in there about transforming distributions back and forth from uniform distributions, which may be helpful in your problem in general. Specifically, if there is an inverse Weibull that will transform Weibull to uniform, then you use that, then transform the uniform to normal. I didn't investigate more than that.
I hope that was helpful.

KSSV
KSSV el 27 de Mayo de 2022
Read about Box-Cox transformation.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by