フィルターのクリア

tick marks in boxplot

12 ビュー (過去 30 日間)
Richard
Richard 2012 年 4 月 16 日
close all
fh = figure(1);
boxplot(data,time,'colors','k','jitter',1,'medianstyle','line',...
'whisker',2,'symbol','k.');
set(gca,'xtick',1:length(time),'xticklabel',time);
hB=findobj(fh,'Type','hggroup');
hL=findobj(hB,'Type','text');
set(hL,'Rotation',30);
I use this code to produce box plot of my data. The code works fine except for the fact that it does not rotate the xtick labels, i.e. it seems to ignore the rotate command. However, if I comment out:
set(gca,'xtick',1:length(time),'xticklabel',time);
Then the xticks are rotated, but the tick marks disappear, why does it react in this manner?
I need to find a method which allows for the Xticks to appear and the Xtick labels to be rotated, I cant seem to find a method which allows for both of these to occur.

回答 (1 件)

Thomas
Thomas 2012 年 4 月 16 日
This should help..
close all
fh = figure(1);
boxplot(data,time,'colors','k','jitter',1,'medianstyle','line',...
'whisker',2,'symbol','k.');
hB=findobj(fh,'Type','hggroup');
hL=findobj(hB,'Type','text');
set(hL,'Rotation',30);
set(gca,'xtick',1:length(time));
  4 件のコメント
Richard
Richard 2012 年 4 月 16 日
strange what could be the problem in my case then?
Thomas
Thomas 2012 年 4 月 16 日
try restarting MATLAB.. FYI I'm on R2012a (not that it should make a difference)..

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by