Borrar filtros
Borrar filtros

Statistical test for difference between means

6 visualizaciones (últimos 30 días)
Aviram Shemen
Aviram Shemen el 24 de Dic. de 2020
Comentada: Aviram Shemen el 29 de Dic. de 2020
Hi,
I have two mean values and standard errors (se) of two unknown distributions.
I would like to check whether the difference between these two means is statistically significant.
mean1=1.2545, se1=0.0145
mean2=1.6913, se2=0.0172
Thanks,
Aviram.

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Dic. de 2020
mean1=1.2545; se1=0.0145;
mean2=1.6913; se2=0.0172;
rho = 0.01;
s = 2*normcdf(-abs(mean1-mean2), 0, min(se1,se2))
s = 2.3405e-199
s < rho
ans = logical
1
  7 comentarios
Walter Roberson
Walter Roberson el 27 de Dic. de 2020
mean1=1.2545; se1=0.0145;
mean2=1.6913; se2=0.0172;
rho = 0.01;
minse = min(se1,se2);
s = 2*normcdf(-abs(mean1-mean2)/minse, 0, 1)
s = 2.3405e-199
A small modification to the above that perhaps might make it marginally clearer based upon common statistics: we effectively normalize back to mean 0 and standard deviation 1, and then it is just a cdf calculation
Aviram Shemen
Aviram Shemen el 28 de Dic. de 2020
Thanks!

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 28 de Dic. de 2020
Wouldn't you use ttest()?
  11 comentarios
Paul
Paul el 29 de Dic. de 2020
Editada: Paul el 29 de Dic. de 2020
You've posed an interesting question, but I'm afraid that I can't be of any more help.
Aviram Shemen
Aviram Shemen el 29 de Dic. de 2020
Thanks!

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by