系统相关
首页 > 系统相关> > linux – 概率排除零后,数组中每个唯一数字(长度未知)的分布

linux – 概率排除零后,数组中每个唯一数字(长度未知)的分布

作者:互联网

我的部分数据文件看起来像

ifile.txt
1
1
3
0
6
3
0
3
3
5

我想找出除零之外的每个数字的概率.例如P(1)= 2/8; P(3)= 4/8,依此类推

欲望输出

ofile.txt
1  0.250
3  0.500
5  0.125
6  0.125

第1列显示除0和第2列之外的唯一数字显示概率.我正在尝试如下,但看起来非常冗长的想法.我在for循环中遇到问题,因为有很多唯一的数字

n=$(awk '$1 > 0 {print $0}' ifile.txt | wc -l)
for i in 1 3 5 6 .....
do
n1=$(awk '$1 == $i {print $0}' ifile.txt | wc -l)
p=$(echo $n1/$n | bc -l)
printf "%d %.3f\n" "$i $p" >> ofile.txt
done

解决方法:

在awk中使用关联数组可以在一次传递中获取每个唯一编号的计数.

awk '$0 != "0" { count[$0]++; total++ } 
     END { for(i in count) printf("%d %.3f\n", i, count[i]/total) }' ifile.txt | sort -n > ofile.txt

标签:shell,unix,linux,awk,probability-density
来源: https://codeday.me/bug/20190716/1476094.html