I have an input data file:
anim gent
FZ543 1
FZ543 2
FZ543 3
FZ543 1
FZ547 4
FZ547 3
FZ547 3
FZ547 1
I wanted to transpose these data to:-
anim gent
FZ543 1 2 3 1
FZ547 4 3 3 1
In other words, I wanted to transpose elements from vertical to horizontal. I can used AWK Comand
Thanks for your atention.
awk 'NR==1{print} NR>1{a[$1]=a[$1]" "$2}END{for (i in a){print i " " a[i]}}' file
OUTPUT
anim gent
FZ543 1 2 3 1
FZ547 4 3 3 1
$ awk '$1 != prev{printf "%s%s",ors,$1; ors=ORS; ofs="\t"} {printf "%s%s",ofs,$2; ofs=OFS; prev=$1} END{print ""}' file
anim gent
FZ543 1 2 3 1
FZ547 4 3 3 1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With