计算字符串出现次数和绘图直方图

时间:2012-08-15 09:46:00

标签: matlab histogram cells

有没有直接的方法从像下面的单元格数组创建直方图?连续条之间的间距应该完全相同,x轴的标签应该是垂直方向下面变量的相应名称。

'w464'
'w462'
'w461'
'w464'
'w461'
'w463'
'w466'
'w461'

4 个答案:

答案 0 :(得分:9)

我想知道更好的方法。 Fwiw,我以迂回的方式使用countmember来绘制这样的数据。 I.E.如果您发布的数据名为A

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

答案 1 :(得分:5)

如果您有权访问统计工具箱,grp2idx非常有用:

%# sorting is only necessary if the output should be sorted as well
[idx,label] = grp2idx(sort(A)) 

hist(idx,unique(idx));
set(gca,'xTickLabel',label)

答案 2 :(得分:3)

仅使用内置函数的解决方案

[u,~,n] = unique(A(:));
B = accumarray(n, 1, [], @sum);
bar(B)
set(gca,'XTickLabel',u)

答案 3 :(得分:2)

您还可以使用直方图功能,如下所示:

[C,~,ic] = unique(A);

fig1 = figure;
axes1 = axes('Parent',fig1,'XTickLabel',C,'XTick',1:length(C));
hold(axes1,'on');

histogram(ic)