Plot a bar chart while sorting its variables and presenting the cosponsoring new sorted variables in the x-axis.

5 visualizaciones (últimos 30 días)
I have two vectors as below where i would like to plot them in a bar chart in a descending order while showing the corropsoing values in the x-axix. However, my plot does not look nice as attached. Is there any way to fix it please.
fields_name = 1:19;
CV = [8 68 30 14 9 13 28 17 13 29 23 17 41 27 25 51 0 20 28];
[CV_Sorted,index] = sort(CV,'descend');
bar(CV_Sorted)
yt = get(gca, 'xTick');
set(gca, 'xTick',yt, 'xTickLabel',Fields_Sorte)

Respuesta aceptada

Yaser Khojah
Yaser Khojah el 25 de Feb. de 2019
Cases = 1:19;
[CV_Sorted,index] = sort(CV,'descend');
bar(CV(index))
xTick = Fields_Sorte;
set(gca, 'xTick',Cases, 'xTickLabel',Fields_Sorte)

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by