awk 입문자의 질문입니다.

사과먹는 곰돌이의 이미지

아래와 같은 cumul.txt파일의 자료를 처리하려고 합니다.(실제 파일은 이것보다 아주 많이 깁니다.)
cumul.txt

A 1 4
A 2 4
A 3 5
A 4 5
A 5 5
A 6 9
A 7 8
A 8 8
A 9 4
A 10 2
A 11 2
A 12 0
A 13 0
B 1 1
B 2 1
B 3 1
B 4 4
B 5 6
B 6 7
B 7 6
B 8 4
B 9 2
B 10 2
C 1 5
C 2 9
C 3 8
C 4 7
C 5 3
D 1 3

위의 파일로 각 A, B, C, D 항목에 대해 아래와 같은 처리를 하여
A {(3열 값의 총합=4+4+5+5+5+9+8+8+4+2+2+0+0=56)/(행 개수=13)}=4.3077
B 같은 방법으로 34/10=3.4
C 32/5=6.4
D 3/1=3

아래와 같은 파일을 얻고자 합니다.
output.txt
A 4.3077
B 3.4
C 6.4
D 3

아래와 같은 awk 스크립트를 만들었습니다.
cat cumul.txt | awk 'BEGIN{val = 0;n=0}{if(($2 !=1)||(($2 ==1)&&(NR==1))){n=n+1;val=val+$3};if($2 == 1){if(NR > 1){print $1"\t"val/n}; val=$3;n=1}}END{print $1"\t"val/n}' > output.txt

어째 결과물은 아래와 같군요;;;
output.txt
B 4.3077
C 3.4
D 6.4
D 3

어떻게 수정해야 원하는 결과를 얻을 수 있을까요?

nomail의 이미지

awk 보다는 bash스크립트로 각 항목별로 bc 돌리는게 더 낫지 않을까 합니다만..

#!/usr/bin/awk -f
{
    arr[$1][0]++
    arr[$1][1]+=$3
}
 
END {
    for (x in arr) 
        print x, arr[x][1]/arr[x][0]
}

사과먹는 곰돌이의 이미지

작은 파일들에는 이걸로 써먹어야겠네요. 이번 건은 항목별 행 수도 많고 무엇보다 항목 자체가 수만 개라 뭔가 일괄 처리를 하는 게 낫겠다 싶더라고요ㅠㅠ그래도 작은 파일들 평소에 돌릴 때는 이거 괜찮을 것 같네요. 감사합니다!

사과먹는 곰돌이의 이미지

작은 파일들에는 이걸로 써먹어야겠네요. 이번 건은 항목별 행 수도 많고 무엇보다 항목 자체가 수만 개라 뭔가 일괄 처리를 하는 게 낫겠다 싶더라고요ㅠㅠ그래도 작은 파일들 평소에 돌릴 때는 이거 괜찮을 것 같네요. 감사합니다!

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.