How to change name of "Others" category for histogram with 'ShowOthers'
조회 수: 1 (최근 30일)
이전 댓글 표시
When using
hh=histogram(C,'ShowOthers','on');
Matlab will create a category "Others". Is there a way to access this name and change it to something else?
댓글 수: 0
채택된 답변
Adam Danz
2019년 2월 27일
편집: Adam Danz
2019년 2월 27일
Access the axis handle from the histrogram handle ('hh'), then use strrep() to replace the 'Others' in the XTickLabel with whatever you want (here I use "Misc."). Then reassign the new XTickLabel to the axis. You can do that all in 1 line.
hh.Parent.XTickLabel = strrep(hh.Parent.XTickLabel, 'Others', 'Misc.')
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!