Sponsored Content
Top Forums Shell Programming and Scripting Transpose multipe columns to rows and adding headers Post 302406321 by Gery on Monday 22nd of March 2010 02:32:02 PM
Old 03-22-2010
Ohhh!, sorry for this mistake, the columns are tabulated by space, no comma-tabulated values, it's in the way around:

Input file (gery.txt):
2.8 0 9
2.2 0 8
2.1 0 7

Output file: (comma-tabulated value in rows plus header)
first=2.8,2.2,2.1
second=0,0,0
third=9,8,7

Sorry again for my mistake. Thanks for your great support.
 

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

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

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

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

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

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

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

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

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
Xray::Scattering::CromerMann(3pm)			User Contributed Perl Documentation			 Xray::Scattering::CromerMann(3pm)

NAME
Xray::Scattering::CromerMann - Perl interface to Thomspon scattering factors SYNOPSIS
use Xray::Scattering; Xray::Scattering->load('CroMann'); $fnot = Xray::Scattering->get_f($symb, $d); DESCRIPTION
This module provides a functional interface to the Cromer-Mann table of coefficients for calculating the Thomson (kinematical) scattering factors of the elements and common valence states. The coefficients are stored externally in the cromann.db database file. The coefficients are for an Aikman expansion, which is of this form: 4 f0 = sum [ ai*exp(-bi*s^2) ] + c i=1 Thus there are 9 coefficients for each of the 213 tabulated element/valence symbols. "s" is "sin(theta)/lambda". "(lambda*s)/2pi" is the momentum transfer. "s" is simply related to the crystal d-spacing by "s=1/2d". The data for these tables can be found in Volume C of the International Tables of Crystallography, ed. A.J.C. Wilson, published by IUCr and Kluwer Academic Publishers(1992). The table starts on page 500 and a discussion can be found on page 487. These tables are known to be inaccurate, particularly at high angles. This module is a toy. It is suitable for a student or for the sort of quick-n-dirty crystallographic hackery that the author indulges in. CLASS METHODS
"get_f" This function calculates the Thomson scattering for a given symbol and d-spacing. The Thomson scattering depends only on the momentum transfer. The d-spacing of the scattering planes is a closely related quantity and is easily calculated from the crystal structure, see Xtal.pm. $symb = "Ce3+"; $fnot = Xray::Scattering->get_f($symb, $d); If the symbol cannot be found in the table, "get_f" returns 0. It also returns 0 when $symbol consists of whitespace or is "null" or "nu". If $symbol is a number or the name of an element, then it assumes you want the Thomson scattering for the neutral element. The absolute value of $d_spacing is used by this function. If you ask for a valence state that is not in the table but for an element whose 0+ state is in the table, this method returns the scattering factor for the 0 valent atom. "get_coefficients" This returns the 9 element list containing the coefficients for the given symbol. @coefs = Xray::Scattering->get_coefficients($elem) Returns the array a1,b1,a2,b2,a3,b3,a4,b4,c. If you ask for a valence state that is not in the table but for an element whose 0+ state is in the table, this method returns the coefficients for the 0 valent atom. "has" This is a test of whether a given symbol is tabulated in the Cromer-Mann table. It returns the symbol itself if found in the table or 0 if it is not in the table. $symb = "Ce3+"; $is_tabulated = Xray::Scattering->has($symb); ELEMENTS AND VALENCE STATES
The following is a list of symbols for the tabulated elements and valence states. The final two are ways of refering to an empty site (i.e. a null or blank atom). H H. H1- He Li Li1+ Be Be2+ B C C. N O O1- F F1- Ne Na Na1+ Mg Mg2+ Al Al3+ Si Si. Si4+ S P Cl Cl1- Ar K K1+ Ca Ca2+ Sc Sc3+ Ti Ti2+ Ti3+ Ti4+ V V2+ V3+ V5+ Cr Cr2+ Cr3+ Mn Mn2+ Mn3+ Mn4+ Fe Fe2+ Fe3+ Co Co2+ Co3+ Ni Ni2+ Ni3+ Cu Cu1+ Cu2+ Zn Zn2+ Ga Ga3+ Ge Ge4+ As Se Br Br1- Kr Rb Rb1+ Sr Sr2+ Y Y3+ Zr Zr4+ Nb Nb3+ Nb5+ Mo Mo3+ Mo5+ Mo6+ Tc Ru Ru3+ Ru4+ Rh Rh3+ Rh4+ Pd Pd2+ Pd4+ Ag Ag1+ Ag2+ Cd Cd2+ In In3+ Sn Sn2+ Sn4+ Sb Sb3+ Sb5+ Te I I1- Xe Cs Cs1+ Ba Ba2+ La La3+ Ce Ce3+ Ce4+ Pr Pr3+ Pr4+ Nd Nd3+ Pm Pm3+ Sm Sm3+ Eu Eu2+ Eu3+ Gd Gd3+ Tb Tb3+ Dy Dy3+ Ho Ho3+ Er Er3+ Tm Tm3+ Yb Yb2+ Yb3+ Lu Lu3+ Hf Hf4+ Ta Ta5+ W W6+ Re Os Os4+ Ir Ir3+ Ir4+ Pt Pt2+ Pt4+ Au Au1+ Au3+ Hg Hg1+ Hg2+ Tl Tl1+ Tl3+ Pb Pb2+ Pb4+ Bi Bi3+ Bi5+ Po At Rn Fr Ra Ra2+ Ac Ac3+ Th Th4+ Pa U U3+ U4+ U6+ Np Np3+ Np4+ Np6+ Pu Pu3+ Pu4+ Pu6+ Am Cm Bk Cf O2-. ' ' Nu AUTHOR
Bruce Ravel, bravel AT bnl DOT gov http://cars9.uchicago.edu/~ravel/software/exafs/ perl v5.12.4 2011-07-30 Xray::Scattering::CromerMann(3pm)
All times are GMT -4. The time now is 01:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy