In 2016b is there a way to get categories on the x-axis of a bar chart?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Daniel Gray
el 28 de Jun. de 2017
Respondida: Mishaal Aleem
el 28 de Jun. de 2017
I have seen how to do it on the 2017 release, but wondered if there was a way to get categories on the x-axis of a bar chart as opposed to just numbers on the 2016b release?
0 comentarios
Respuesta aceptada
Mishaal Aleem
el 28 de Jun. de 2017
Here is a simple example applied to a bar chart.
x = [1,2,3,4,5];
y = [3,5,6,7,2];
bar(x,y);
labels = {'A', 'B', 'C', 'D', 'E'}; % Labels to use on x-axis
xticklabels(labels);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Bar Plots 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!