Count strings occurrences and plot histogram

后端 未结 4 502
陌清茗
陌清茗 2021-01-18 05:09

Is there any straightforward way to create a histogram from a cell array like the one below? The spacing between the consecutive bars should be exactly the same and the labe

4条回答
  •  萌比男神i
    2021-01-18 05:48

    I would like to know a better way, as well. Fwiw, I have used countmember in a roundabout way to plot data like this. I.E. if the data you posted was named A

    >> B={sort(unique(A)) countmember(sort(unique(A)),A)};
    >> bar(B{2});
    >> set(gca,'XTickLabel',B{1})
    

提交回复
热议问题