what is the output of kruskalwallis?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ameligege
el 24 de Feb. de 2015
Respondida: Brendan Hamm
el 24 de Feb. de 2015
Hello every one
p = kruskalwallis(X) p = kruskalwallis(X,group) p = kruskalwallis(X,group,displayopt) [p,table] = kruskalwallis(...) [p,table,stats] = kruskalwallis(...)
all these built in function that I run but I want the output is a set of values not table or single value how I can?
0 comentarios
Respuesta aceptada
Brendan Hamm
el 24 de Feb. de 2015
I am not sure what "set of values" you are looking for. The output from the call:
p = kruskalwallis(X)
is simply the p value for the hypothesis test with null hypothesis H0: The columns of X all come from the same distribution and alternative hypothesis H1: At least one column comes from a different distribution. The table and stats variables simply give you more information regarding this test.
To interpret p, choose a significance level alpha (common choices are 0.01, 0.05, 0.1) and if the p value is less than alpha you would reject the null in favor of the alternative. Otherwise you would conclude there is statistical evidence to support the null hypothesis.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Hypothesis Tests en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!