在 Mathematica 中计算相对频率
使用:
dalist = {{379, 219, 228, 401}, {387, 239, 230, 393},
{403, 238, 217, 429}, {377, 233, 225, 432}}
BarChart@dalist
我想计算/绘制每个条件下每个 Bin 的相对频率而不是绝对计数。
其中:
{379, 219, 228, 401}
是一种条件的 4 个容器计数。所以:
{379, 219, 228, 401}[[1]]/Total@{379, 219, 228, 401}
是我想看到的第一个条件/第一个 Bin 的结果,而不是计数本身。
With :
dalist = {{379, 219, 228, 401}, {387, 239, 230, 393},
{403, 238, 217, 429}, {377, 233, 225, 432}}
BarChart@dalist
I would like to compute / Plot the relative frequency instead of absolute count for each Bin for each condition.
Where :
{379, 219, 228, 401}
are the 4 bins count for one condition. So :
{379, 219, 228, 401}[[1]]/Total@{379, 219, 228, 401}
is the result I want to see of the first condition / first Bin, instead of the count itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
贝利萨留抢先了我。
您可能还想探索 BarChart[dalist, ChartLayout -> "百分位"]
belisarius beat me to it.
You might also want to explore
BarChart[dalist, ChartLayout -> "Percentile"]
不是吗
?
Isn't it
?
您所要做的就是:
并绘制图表
All you have to do is this:
and chart it instead