How to change x-axis in kruskalwallis auto-generated boxplots?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear all, I want to change the x-axis labels of the auto-generated Kruskal-Wallis test boxplot.
so if this is the code
clear; clc;
A = rand(1000,1);
B = rand(1000,1);
AB = [A B];
[p, tbl, stats] = kruskalwallis(AB);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/811569/image.jpeg)
I want to change the x labels to group one and group two instead of 1, 2. So is there any way to do this?
Thank you all
0 Kommentare
Akzeptierte Antwort
Yusuf Suer Erdem
am 24 Nov. 2021
Hi BN, try these codes below please. Good luck.
clear; clc;
A = rand(1000,1);
B = rand(1000,1);
AB = [A B];
[p, tbl, stats] = kruskalwallis(AB);
xticklabels({'group one','group two'});
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Specifying Target for Graphics Output finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!