How to plot dendrogram and stars for pair-wise significance levels in anova?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
In publications with ANOVA results, often one can find box plots with a dendrogram on top and 1 to 4 stars giving the significance levels of all pairwise comparisons: p-value ≤ 0.05 -> * 0.01 -> ** 0.001 -> *** 0.0001 -> ****
Is there a script to do this in matlab?
0 comentarios
Respuestas (1)
Alberto
el 18 de Jun. de 2015
Something like this?
load carbig
X = [MPG Acceleration Weight Displacement];
[d,p,stats] = manova1(X,Origin);
manovacluster(stats)
Ver también
Categorías
Más información sobre Repeated Measures and MANOVA en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!