Transpose rows to columns complex


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Transpose rows to columns complex
# 1  
Old 12-07-2014
Transpose rows to columns complex

Input:
Code:
IN,A,1
IN,B,3
IN,B,2
IN,C,7
BR,A,1
BR,A,5
BR,C,9
AR,C,9

Output:
Code:
CNTRY,A,B,C
IN,1,5,7
BR,6,0,9
AR,0,0,9

I've tried the below code, but unable to get the desired output, Please help me in this:
Code:
awk -F, '{a[$1","$2]+=$3} END {for (i in a) { print i "," a[i]}}' input.txt

# 2  
Old 12-07-2014
Not the most elegant solution, but try this,,untested..sorry i missed on the sum part...

Code:
awk -F, '{a[$1","$2]+=$3;}END{for(i in a)print i", "a[i];}' file > infile


awk     -F,  '{cntry[$1]; alpha[$2]; val[$1,$2]=$3}
         END    {               printf "%10s", ""; for (i in alpha) printf "%10s", i; print "";
                 for (j in cntry) {printf "%10s",j;   for (i in alpha) printf "%10s", val[j,i]; print ""}
                }
        '  infile


Last edited by ritakadm; 12-07-2014 at 11:46 AM..
This User Gave Thanks to ritakadm For This Post:
# 3  
Old 12-07-2014
Two suggested modifications to ritakadm's approach:
Code:
val[$1,$2]+=$3

and
Code:
val[j,i]+0

This User Gave Thanks to Scrutinizer For This Post:
# 4  
Old 12-07-2014
Modified slightly to delimited file:

Code:
awk     -F,  '{c[$1]; a[$2]; v[$1,$2]+=$3}
         END    {               printf "XX%s", ","; for (i in a) printf "%s,", i; print "";
                 for (j in c) {printf "%s",j;   for (i in a) printf ",%s", v[j,i]+0; print ""}
                }
        '   infile>infile2

sed '1 s/.$//' infile2>output

Here I am facing some difficulty, some times alphabetic order may vary:
A,B,C columns should be fixed always:

Code:
IN,A,1
IN,C,7
BR,A,1
MX,C,9

output should be:
Code:
XX,A,B,C
IN,1,0,7
BR,1,0,0
MX,0,0,9

# 5  
Old 12-08-2014
Not sure what order you want the columns in (order they appear in input or alphabetical):

This keeps order in input file:

Code:
awk     -F,  '{
            c[$1]
            if(!($2 in av)) {
               av[$2]
               a[++cols]=$2}
            v[$1,$2]+=$3
         }
         END {  
           printf "XX"
           for (i=1;i<=cols;i++) printf ",%s", a[i]
           printf "\n"
           for (j in c) {
               printf "%s",j;
               for (i=1;i<=cols;i++)
                  printf ",%s", v[j,a[i]]+0; print ""}
          }' infile>infile2

# 6  
Old 12-08-2014
The oder I am meaning is:

Per Country maximum rows I will get is 3 and minimum is 2.

For example, If I get only 2 rows per country above script will generate only 3 columns i.e.,
Code:
IN,A,5
IN,C,4
CA,A,4

I will get output as:
Code:
XX,A,C
IN,5,4
CA,4,0

Another example:
Code:
IN,A,5
IN,B,5
IN,C,4
CA,A,4

I will get output as:
Code:
XX,A,B,C
IN,5,5,4
CA,4,0,0

Column are varying based on the input, my aim to maintain the genric ie., if A & B records are exists in the source i need to populate C column with 0 value for all the rows.

If A & C records are exits in the source i need to populate B column with 0 value for all the rows.
# 7  
Old 12-08-2014
how about this:
Code:
awk     -F,  '
BEGIN { cols=split("A,B,C", a);}
{ c[$1];v[$1,$2]+=$3 } 
END {
   printf "XX"
   for (i=1;i<=cols;i++) printf ",%s", a[i]
   printf "\n"
   for (j in c) {
       printf "%s",j;
       for (i=1;i<=cols;i++)
       printf ",%s", v[j,a[i]]+0; print ""}
}' infile>infile2

This User Gave Thanks to Chubler_XL For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Transpose rows to certain columns

Hello, I have the following data and I want to use awk to transpose each value to a certain column , so in case the value is not available the column should be empty. Example: Box Name: BoxA Weight: 1 Length :2 Depth :3 Color: red Box Name: BoxB Weight: 3 Length :4 Color: Yellow... (5 Replies)
Discussion started by: rahman.ahmed
5 Replies

2. Shell Programming and Scripting

Transpose comma delimited data in rows to columns

Hello, I have a bilingual database with the following structure a,b,c=d,e,f The right half is in a Left to right script and the second is in a Right to left script as the examples below show What I need is to separate out the database such that the first word on the left hand matches the first... (4 Replies)
Discussion started by: gimley
4 Replies

3. Shell Programming and Scripting

awk to transpose every 7 rows into columns

input: a1 a2 a3 a4 a5 a6 a7 b1 b2 b3 .. b7 .. z1 .. z7 (12 Replies)
Discussion started by: ux4me
12 Replies

4. Shell Programming and Scripting

Columns to Rows - Transpose - Special Condition

Hi Friends, Hope all is well. I have an input file like this a gene1 10 b gene1 2 c gene2 20 c gene3 10 d gene4 5 e gene5 6 Steps to reach output. 1. Print unique values of column1 as column of the matrix, which will be a b c (5 Replies)
Discussion started by: jacobs.smith
5 Replies

5. Shell Programming and Scripting

Transpose Data from Columns to rows

Hello. very new to shell scripting and would like to know if anyone could help me. I have data thats being pulled into a txt file and currently have to manually transpose the data which is taking a long time to do. here is what the data looks like. Server1 -- Date -- Other -- value... (7 Replies)
Discussion started by: Mikes88
7 Replies

6. Shell Programming and Scripting

transpose rows to columns

Any tips on how I can awk the input data to display the desired output per below? Thanking you in advance. input test data: 2 2010-02-16 10:00:00 111111111111 bytes 99999999999 bytes 90% 4 2010-02-16 12:00:00 333333333333 bytes 77777777777 bytes 88% 5 2010-02-16 11:00:00... (4 Replies)
Discussion started by: ux4me
4 Replies

7. Shell Programming and Scripting

Transpose columns to Rows

I have a data A 1 B 2 C 3 D 4 E 5 i would like to change the data A B C D E 1 2 3 4 5 Pls suggest how we can do it in UNIX. Start using code tags, thanks. Also start reading your PM's you get from Mods as well read the Forum Rules. That might not do any harm. (24 Replies)
Discussion started by: aravindj80
24 Replies

8. Shell Programming and Scripting

Transpose Rows Into Columns

I'm aware there are a lot of resources dedicated to the question of transposing rows and columns, but I'm a total newbie at this and the task appears to be beyond me. I have 40 text files with content that looks like this: Dokument 1 von 146 Orange County Register (California) June 26, 2010... (2 Replies)
Discussion started by: spindoctor
2 Replies

9. Shell Programming and Scripting

Transpose columns to Rows : Big data

Hi, I did read a few posts on the subjects, tried out a few solutions, but did not solve my problem. https://www.unix.com/302121568-post11.html https://www.unix.com/shell-programming-scripting/137953-large-file-columns-into-rows-etc-4.html Please help. Problem very similar to the second link... (15 Replies)
Discussion started by: genehunter
15 Replies

10. Shell Programming and Scripting

Rows to Columns - File Transpose

Hi I have an input file and I want to transpose it but I need to take care that if any field is missing for a record it should be popoulated with space for that field - using a shell script INFILE ---------- emp=1 sal=2 loc=abc emp=2 sal=21 sal=22 loc=xyz emp=5 loc=abc OUTFILE... (10 Replies)
Discussion started by: 46019
10 Replies
Login or Register to Ask a Question