Bar chart samples are shuffled

4 visualizaciones (últimos 30 días)
Iron1759
Iron1759 el 2 de Oct. de 2021
Editada: dpb el 3 de Oct. de 2021
Hi,
I want to create a stacked bar chart that is ordered according to total values; however, no matter what I do it seems that dispite the values matrix for the bar chart, the stacks are shuffled around regardless the order of values in the matrix:
here is the ordered values matrix according to total values - each row represents a sample and contains two observations:
8.89817512249006 10.6114775114530
8.97084136825914 10.6925827879448
9.48697169408196 10.9541916851987
9.68518825475912 10.8490244459713
10.0674964213323 11.5608323808692
The categorical variable:
X = {'Pristine' 'Ne' 'He' 'Ar' 'Kr'};
b = bar(X,vals,'stacked');
and the result attached - like the rows and X are mixed.
Really don't know what's going on.
Thanks!

Respuesta aceptada

dpb
dpb el 2 de Oct. de 2021
Editada: dpb el 2 de Oct. de 2021
As @Star Strider says, categorical variables are not ordinal by default and are valued by lexical sorting. To fix
X = {'Pristine' 'Ne' 'He' 'Ar' 'Kr'};
X=categorical(X,X,"Ordinal",1)
hB = bar(X,E,'stacked');
...
Produces
in which the order is preserved since X is now an ordinal categorical array.
You can generalize the above by using sort with the optional returned index array by which to reorder the categorical values array to match the data order desired or for different datasets before creating the categorical variable.
  2 comentarios
Iron1759
Iron1759 el 3 de Oct. de 2021
Without the 'E' :)
Thanks!
dpb
dpb el 3 de Oct. de 2021
Editada: dpb el 3 de Oct. de 2021
I used E as local variable based on the title in your graph...

Iniciar sesión para comentar.

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