i need to make space between two bar plot in x axis
48 ビュー (過去 30 日間)
古いコメントを表示
i have this code
i need to make space between lena pepper airplane cut ,i dont need to near each to other
n=[81.2858,82.6818,82.0401,82.0560];
bar(diag(n),'stacked');
set(gca,'xticklabel',{lena','pepper ','airplane','cut'});
text(1:length(n),n,num2str(n','%0.2f%%'),'vert','bottom','horiz','center','FontSize',12, 'Color','black','FontName','memoir');
box off
採用された回答
Scott MacKenzie
2021 年 5 月 27 日
編集済み: Scott MacKenzie
2021 年 5 月 27 日
With the labels you are using, a multi-line tick label might look better:
n = [81.2858,82.6818,82.0401,82.0560];
bar(diag(n), 0.6, 'stacked');
text(1:length(n),n,num2str(n','%0.2f%%'),'vert','bottom','horiz','center','FontSize',12, 'Color','black','FontName','memoir');
box off;
ax = gca;
ax.XTick = [1 2 3 4];
ax.XTickLabel = '';
myLabels = { 'lena', 'pepper', 'airplane', 'cut';
'transform', 'transform', 'transform', 'transform' };
for i = 1:length(myLabels)
text(i, ax.YLim(1), sprintf('%s\n%s\n%s', myLabels{:,i}), ...
'horizontalalignment', 'center', 'verticalalignment', 'top');
end
ax.XLabel.String = sprintf('\n\n%s', 'X-Axis Label');
0 件のコメント
その他の回答 (2 件)
Sulaymon Eshkabilov
2021 年 5 月 27 日
Hi,
...
bar(diag(n),1); % Change 1 to any other number to make bars closer and more appart
...
2 件のコメント
Walter Roberson
2021 年 5 月 27 日
Your axes is not wide enough to hold the full width of your tick labels with your current font size. The only way you could make your bars far enough apart that your labels do not overlap, would be if you used xlim() to zoom in to part of the plot, so that all of the bars and labels are not visible at the same time.
You need to do one of the following:
- reduce the font size so that all the labels fit
- use a larger figure to fit a larger plotting window
- rotate the labels so they go down or at an angle so that they do not overlap; for example you might be able to use 30 degrees
- depending how wide your window is, switching to latex might happen to allow the labels to fit, such as set(gca,'xticklabel',{'lena-transform','pepper-ransform','airplane-transform', 'cut-transform'},'ticklabelinterpreter','latex');
- switch to tex interpreter: if the labels are too large to fit, it will automatically put them at an angle; set(gca,'xticklabel',{'lena-transform','pepper-transform','airplane-transform', 'cut-transform'},'ticklabelinterpreter','tex');
- use tex or latex facilities to insert line breaks. This is a more advanced topic that I would have to look up
参考
カテゴリ
Help Center および File Exchange で Axis Labels についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!