5

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.

Mat
  • 202,337
  • 40
  • 393
  • 406
Johanna Ramirez
  • 161
  • 1
  • 9

2 Answers2

5
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
Gilles Quénot
  • 173,512
  • 41
  • 224
  • 223
3
$ 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
Ed Morton
  • 188,023
  • 17
  • 78
  • 185