Borrar filtros
Borrar filtros

How can I show the value on bars

1 visualización (últimos 30 días)
Latifa Bouguessaa
Latifa Bouguessaa el 19 de Dic. de 2022
Respondida: VBBV el 19 de Dic. de 2022
Hi, everyone
How can I show the value on bars
here is my code;
X = categorical({'roiA','roiB','roiC','roiD', 'roiE'});
Y = [44 66 23 56 54;5 6 4 5 3 ];
bar(X,Y);
legend({'Mean','Std'},'Location','northwest','Orientation','horizontal')

Respuesta aceptada

VBBV
VBBV el 19 de Dic. de 2022
X = categorical({'roiA','roiB','roiC','roiD', 'roiE'});
Y = [44 66 23 56 54;5 6 4 5 3 ];
b = bar(X,Y);
x = b(1).XEndPoints;
y = b(1).YEndPoints;
text(x,y+2,num2str([y(:)]))
x1 = b(2).XEndPoints;
y1 = b(2).YEndPoints;
text(x1,y1+2,num2str([y1(:)]))
legend({'Mean','Std'},'Location','best','Orientation','horizontal')

Más respuestas (0)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by