Sponsored Content
Full Discussion: transpose selected columns
Top Forums Shell Programming and Scripting transpose selected columns Post 302592019 by quincyjones on Sunday 22nd of January 2012 11:51:39 AM
Old 01-22-2012
transpose selected columns

Can I transform input like the below ?
Note: Insert zeros if there is no value to transform.

Input

Code:
key    name    score
key1    abc    10
key2    abc    20
key1    xxx    100
key2    xxx    20
key1    zzz    0
key2    zzz    29
key3    zzz    129
key1    yyy    39

output
Code:
    abc    xxx    zzz     yyy
key1    10    100    0    39
key2    20    20    29    0
key3    0      0     129    0


Last edited by quincyjones; 01-22-2012 at 12:58 PM..
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. Shell Programming and Scripting

Transpose few columns alone in a Text file

Hi Friends, I am Stuck up with a problem on transposing Rows to Coloumns.. Though there are many threads on this my problem is little difficult.. I have a tab separated file like Below, computer selling_loc currency_type manufacturer_name salesweek-wk1 sales-wk2 ...wk-3 ..wk4 till... (7 Replies)
Discussion started by: heinz_holan
7 Replies

6. Shell Programming and Scripting

Transpose whole file and specific columns

Hi, I have a file like this a b c d e f g h i j k l Case1: I want to transpose the whole file Output1 a d g j b e h k c f i l Case2 Transpose a specific column - Say 3rd (6 Replies)
Discussion started by: jacobs.smith
6 Replies

7. 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

8. Shell Programming and Scripting

Transpose rows to columns complex

Input: 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: CNTRY,A,B,C IN,1,5,7 BR,6,0,9 AR,0,0,9 (7 Replies)
Discussion started by: unme
7 Replies

9. Shell Programming and Scripting

Transpose columns to row

Gents Using the attached file and using this code. awk '{print substr($0,4,2)}' input.txt | sort -k1n | awk '{a++}END{for(i in a) print i,a}' | sort -k1 > output i got the this output. 00 739 01 807 02 840 03 735 04 782 05 850 06 754 07 295 08 388 09 670 10 669 11 762 (8 Replies)
Discussion started by: jiam912
8 Replies

10. 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
transform(1)                                              GNU Triangulated Surface utils                                              transform(1)

NAME
transform - apply geometric transformations to the input. SYNOPSIS
transform [OPTIONS] < file.gts DESCRIPTION
This manual page documents briefly the transform command. OPTIONS
This program follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. -r ANGLE, --rx=ANGLE Rotate around x-axis (ANGLE in degrees). -m ANGLE, --ry=ANGLE Rotate around y-axis. -m ANGLE, --rz=ANGLE Rotate around z-axis. -s FACTOR, --scale=FACTOR Scale by FACTOR. -R FACTOR, --sx=FACTOR Scale x-axis by FACTOR. -M FACTOR, --sy=FACTOR Scale y-axis by FACTOR. -N FACTOR, --sz=FACTOR Scale z-axis by FACTOR. -t V, --tx=V Translate of V along x-axis. -u V, --ty=V Translate of V along y-axis. -w V, --tz=V Translate of V along z-axis. -i, --revert Turn surface inside out. -o, --normalize Fit the resulting surface in a cube of size 1 centered at the origin. -v, --verbose Print statistics about the surface. -h, --help Display the help and exit. AUTHOR
transform was written by Stephane Popinet <popinet@users.sourceforge.net>. This manual page was written by Ruben Molina <rmolina@udea.edu.co>, for the Debian project (but may be used by others). June 2, 2008 transform(1)
All times are GMT -4. The time now is 04:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy