How to change x-axis in kruskalwallis auto-generated boxplots?

2 次查看(过去 30 天)
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);
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

采纳的回答

Yusuf Suer Erdem
Yusuf Suer Erdem 2021-11-24
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'});

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Specifying Target for Graphics Output 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by