在Mathematica中计算相对频率

时间:2011-08-25 12:16:56

标签: wolfram-mathematica frequency bin

使用:

dalist = {{379, 219, 228, 401}, {387, 239, 230, 393}, 
          {403, 238, 217, 429}, {377, 233, 225, 432}}

BarChart@dalist

enter image description here

我想为每个条件计算/绘制每个Bin的相对频率而不是绝对计数。

其中:

{379, 219, 228, 401}

是一个条件的4个箱数。所以:

{379, 219, 228, 401}[[1]]/Total@{379, 219, 228, 401}

enter image description here

是我想要看到的第一个条件/第一个Bin的结果,而不是计数本身。

3 个答案:

答案 0 :(得分:4)

belisarius打败了我。

您可能还想探索BarChart[dalist, ChartLayout -> "Percentile"]

enter image description here

答案 1 :(得分:3)

不是吗

BarChart[dalist/Total /@ dalist]

enter image description here

答案 2 :(得分:3)

你所要做的就是:

In[13]:= #/Total[#] & /@ dalist

Out[13]= {{379/1227, 73/409, 76/409, 401/1227}, {387/1249, 239/1249, 
  230/1249, 393/1249}, {31/99, 238/1287, 217/1287, 1/3}, {377/1267, 
  233/1267, 225/1267, 432/1267}}

并改为绘制图表