How to Use Hash Map to Count the Frequencies of Values and Itera
- 时间:2020-10-09 18:35:39
- 分类:网络文摘
- 阅读:129 次
AWK is a powerful text-processing programming language. Given a multi-million lines of text file containing the following data – we want to know the frequencies the delegation at each integer interval e.g. 2, 3, 4:

awk-data-example-steem
First, we output the text file to console using cat then pipe it into grep to filter out non-data rows, and then we can execute the awk script.
cat steem3.txt | grep "delegates" | awk '$6 > 0 {
data[int($6)]++
}
END {
for (sp in data) {
print (sp, "=", data[sp]);
}
}'
It filters out the records that have zero values (undelegation records) – then we round the fraction numbers into integers and count them in a hash map.
Basically, we don’t have to declare the hash table prior to using it. And we can access it using the syntax map[key]. And at the END section, we can iterate the keys in the hash map in awk and print each value:
for (key in map) {
print ("key is ", key, ", value is ", map[key]);
}

awk
–EOF (The Ultimate Computing & Technology Blog) —
推荐阅读:春季饮食宜润肺,常吃炖梨既滋润又养人,口感甜香味道美 这道小学应用题比较难,解题关键是求相遇时间 豆腐搭配鸡蛋做出香酥可口的丸子,营养也很丰富 这道小学奥数题难倒多数学生,解题关键是比例 分享茄子的家常做法,吃起来不油腻,营养美味又下饭 中华人民共和国慈善法(主席令第四十三号) 中华人民共和国深海海底区域资源勘探开发法(主席令第四十二号) 全国人民代表大会常务委员会关于修改《中华人民共和国人口与计划生育法》的决定(主席令第四十一号) 全国人大常委会关于修改《中华人民共和国高等教育法》的决定(主席令第四十号) 中华人民共和国反家庭暴力法(主席令第三十七号)
- 评论列表
-
- 添加评论