来自shell的GROUP BY / SUM

时间:2012-04-23 18:57:03

标签: linux shell unix command-line awk

我有一个包含如下数据的大文件:

a 23
b 8
a 22
b 1

我希望能够得到这个:

a 45
b 9

我可以先对此文件进行排序,然后通过扫描文件一次在Python中进行。这样做有什么好的直接命令行方式?

7 个答案:

答案 0 :(得分:31)

编辑:现代(GNU / Linux)解决方案,如多年前的评论所述;-)。

awk '{
    arr[$1]+=$2
   }
   END {
     for (key in arr) printf("%s\t%s\n", key, arr[key])
   }' file \
   | sort -k1,1

最初发布的解决方案,基于旧的Unix sort选项:

awk '{
    arr[$1]+=$2
   }
   END {
     for (key in arr) printf("%s\t%s\n", key, arr[key])
   }' file \
   | sort +0n -1

我希望这会有所帮助。

答案 1 :(得分:8)

这里不需要awk,甚至不需要排序 - 如果你有Bash 4.0,你可以使用关联数组:

#!/bin/bash
declare -A values
while read key value; do
  values["$key"]=$(( $value + ${values[$key]:-0} ))
done
for key in "${!values[@]}"; do
  printf "%s %s\n" "$key" "${values[$key]}"
done

...或者,如果你首先对文件进行排序(这将更节省内存; GNU排序能够做一些技巧来排序大于内存的文件,这是一个天真的脚本 - 无论是在awk,python还是shell中 - 通常不会),你可以用一种适用于旧版本的方式(我希望以下内容能够通过bash 2.0):

#!/bin/bash
read cur_key cur_value
while read key value; do
  if [[ $key = "$cur_key" ]] ; then
    cur_value=$(( cur_value + value ))
  else
    printf "%s %s\n" "$cur_key" "$cur_value"
    cur_key="$key"
    cur_value="$value"
  fi
done
printf "%s %s\n" "$cur_key" "$cur_value"

答案 2 :(得分:8)

这个Perl单线程似乎可以完成这项工作:

perl -nle '($k, $v) = split; $s{$k} += $v; END {$, = " "; foreach $k (sort keys %s) {print $k, $s{$k}}}' inputfile

答案 3 :(得分:2)

使用perl的一种方式:

perl -ane '
    next unless @F == 2; 
    $h{ $F[0] } += $F[1]; 
    END { 
        printf qq[%s %d\n], $_, $h{ $_ } for sort keys %h;
    }
' infile

infile的内容:

a 23
b 8
a 22
b 1

输出:

a 45
b 9

答案 4 :(得分:2)

使用 GNU awk (版本少于4):

WHINY_USERS= awk 'END {
  for (E in a)
    print E, a[E]
    }
{ a[$1] += $2 }' infile

使用 GNU awk > = 4:

awk 'END {
  PROCINFO["sorted_in"] = "@ind_str_asc"
  for (E in a)
    print E, a[E]
    }
{ a[$1] += $2 }' infile

答案 5 :(得分:1)

使用以下单线程可以轻松实现:

cat /path/to/file | termsql "SELECT col0, SUM(col1) FROM tbl GROUP BY col0"

或者

termsql -i /path/to/file "SELECT col0, SUM(col1) FROM tbl GROUP BY col0"

这里使用了一个Python包https://repo.maven.apache.org/maven2,它是SQLite的包装器。请注意,目前它还没有上传到termsql,也只能在系统范围内安装(setup.py有点破损),例如:

sudo pip install https://github.com/tobimensch/termsql/archive/master.zip

答案 6 :(得分:1)

使用 sort + awk 组合可以尝试跟随,而不创建数组。

sort -k1 Input_file | 
awk '
  prev!=$1 && prev{
    print prev,(prevSum?prevSum:"N/A")
    prev=prevSum=""
  }
  {
    prev=$1
    prevSum+=$2
  }
  END{
    if(prev){
       print prev,(prevSum?prevSum:"N/A")
    }
}'

说明:为以上添加详细说明。

sort -k1 file1 |                          ##Using sort command to sort Input_file by 1st field and sending output to awk as an input.
awk '                                     ##Starting awk program from here.
  prev!=$1 && prev{                       ##Checking condition prev is NOT equal to first field and prev is NOT NULL.
    print prev,(prevSum?prevSum:"N/A")    ##Printing prev and prevSum(if its NULL then print N/A).
    prev=prevSum=""                       ##Nullify prev and prevSum here.
  }
  {
    prev=$1                               ##Assigning 1st field to prev here.
    prevSum+=$2                           ##Adding 2nd field to prevSum.
  }
  END{                                    ##Starting END block of this awk program from here.
    if(prev){                             ##Checking condition if prev is NOT NULL then do following.
       print prev,(prevSum?prevSum:"N/A") ##Printing prev and prevSum(if its NULL then print N/A).
    }
}'