Boxplot X-axis change label size
显示 更早的评论
Dear all,
I've been googling and trying all sorts of things to get my label a proper size from a boxplot. The 'names' on the x-axis are obtained from the excel that is loaded ( boxplot(num(:,1),txt(:,1)) ). However i can't get the text to increase in size.. not even with figure editor..
Can anybody please help me
Added is the figure i am talking about

9 个评论
jonas
2018-3-27
You have tried the following?
set(gca,'fontsize',15)
Twevers
2018-3-27
jonas
2018-3-27
That's weird. The source of the data should not matter. I could give it a try if you upload the data (or part of it) and code.
Twevers
2018-3-28
jonas
2018-3-28
The following code gives me the figure below.
[num,txt,raw] = xlsread('boxplot.xls', 'Sheet1');
boxplot(num(:,1),txt(:,1))
set(gca,'fontsize',15)
xtickangle(45)
Are you creating another set of axis when you are plotting the mean values?

Twevers
2018-3-28
编辑:Walter Roberson
2018-3-28
jonas
2018-3-28
Hello!
I'm not sure that I fully understand the problem. The size of the ticklabels can be changed by adjusting the 'fontsize' of the current axis. What exactly is the issue?
Twevers
2018-3-28
jonas
2018-3-28
We've all been there, happy that it worked out :)
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Axis Labels 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!