Histogram x axis tick labels – string

Hi,
I've done a simple histogram in Matlab and now I want to change the last tick on x axis. Instead of the "3" number I want string "Others".
How can I do it? I'm at R2015b.
The histogram was done by histogram() function.
hist.jpg

 Akzeptierte Antwort

David Wilson
David Wilson am 12 Apr. 2019

1 Stimme

Try
>> get(gca,'XTicklabel')
and hack that.

2 Kommentare

madhan ravi
madhan ravi am 12 Apr. 2019
Please don’t keep adding answers , use comment on this answer.
Dzerald
Dzerald am 12 Apr. 2019
This is working, thanks a lot!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

David Wilson
David Wilson am 12 Apr. 2019

1 Stimme

Hack the final xticklabel
x = randn(1e5,1); x= x-min(x)+1;
histogram(log(x))
xlim([0,3])
xt = xticklabels;
xt{end} = 'other'
xticklabels(xt)

1 Kommentar

Dzerald
Dzerald am 12 Apr. 2019
Bearbeitet: Dzerald am 12 Apr. 2019
Unfortunately, this isn't working – error ''Undefined function or variable 'xticklabels'."

Melden Sie sich an, um zu kommentieren.

David Wilson
David Wilson am 12 Apr. 2019

0 Stimmen

Released 2016b. What's your version?
>> which xticklabels
C:\Program Files\MATLAB\R2018b\toolbox\matlab\graph3d\xticklabels.m

1 Kommentar

Dzerald
Dzerald am 12 Apr. 2019
It's 2015b.. Is there any way to do it on this version?

Melden Sie sich an, um zu kommentieren.

Gefragt:

am 12 Apr. 2019

Kommentiert:

am 12 Apr. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by