gpt4 book ai didi

sorting - 对大数据文件进行排序和求和

转载 作者:行者123 更新时间:2023-12-02 04:45:47 25 4
gpt4 key购买 nike

我必须处理 sort 似乎无法处理的文件。这些文件是 apprx。每个 3 GB。

输入如下:

last-j  nmod+j+n    year-n 9492
last-j nmod+j+n night-n 8075
first-j nmod+j+n-the time-n 7749
same-j nmod+j+n-the time-n 7530
other-j nmod+j+n-the hand-n 5319
ast-j nmod+j+n year-n 1000
last-j nmod+j+n night-n 5000
first-j nmod+j+n-the time-n 1000
same-j nmod+j+n-the time-n 3000
other-j nmod+j+n-the hand-n 200

我需要在其中对相应重复项的数量求和。

所以期望的输出如下:

   last-j   nmod+j+n    year-n 10492
last-j nmod+j+n night-n 13075
first-j nmod+j+n-the time-n 8749
same-j nmod+j+n-the time-n 10530
other-j nmod+j+n-the hand-n 5519

我一直在尝试这个排序命令,它应该可以解决问题

sort input | uniq -c | awk '{print $2 "\t" $3 "\t" $1*$4}' 

内存不足。关于可以更优化以处理更大数据文件的东西的任何建议?谢谢

最佳答案

awk 中使用数组,您可以一起完成所有操作,无需 sortuniq:

$ awk '{a[$1,$2,$3]+=$4} END{for (i in a) print i, a[i]}' file
first-jnmod+j+n-thetime-n 8749
ast-jnmod+j+nyear-n 1000
same-jnmod+j+n-thetime-n 10530
last-jnmod+j+nnight-n 13075
last-jnmod+j+nyear-n 9492
other-jnmod+j+n-thehand-n 5519

因为这是使用col 1, 2, 3 作为索引,所以它们被写在一起。这可以通过将它们放在另一个数组中来解决:

$ awk '{a[$1,$2,$3]+=$4; b[$1,$2,$3]=$1" "$2" "$3} END{for (i in a) print b[i], a[i]}' a
first-j nmod+j+n-the time-n 8749
ast-j nmod+j+n year-n 1000
same-j nmod+j+n-the time-n 10530
last-j nmod+j+n night-n 13075
last-j nmod+j+n year-n 9492
other-j nmod+j+n-the hand-n 5519

关于sorting - 对大数据文件进行排序和求和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19832626/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com