Sponsored Content
Full Discussion: Standard deviation in awk
Top Forums Shell Programming and Scripting Standard deviation in awk Post 302549440 by gd9629 on Tuesday 23rd of August 2011 04:42:25 AM
Old 08-23-2011
Bartus I do believe you're a magician. If I want to combine two files

File 1
Code:
Site: Ridge Hill
yyyy mm dd hh         CO2                CH4         H20
2011 06 09 14  5.2977498477e+02 2.2533536482e+00 9.5975030698e-01
2011 06 09 15  4.6520528305e+02 2.0304031747e+00 8.5550947898e-01
2011 06 09 16  4.2844761381e+02 1.9940230591e+00 8.1996490325e-01
2011 06 09 17  4.2039731519e+02 2.1120403967e+00 8.8853008313e-01
2011 06 09 18  4.1383091367e+02 2.2051511063e+00 9.2270478393e-01
2011 06 09 19  4.0919424013e+02 2.2731077128e+00 9.3647077771e-01
2011 06 09 20  4.0612124764e+02 2.3469439802e+00 9.3830980979e-01
2011 06 09 21  4.0448877229e+02 2.4314198862e+00 9.3857043465e-01
2011 06 09 22  4.0341963267e+02 2.5037286957e+00 9.3017004739e-01
2011 06 09 23  4.0258560618e+02 2.5635443249e+00 9.2232603099e-01

File 2 (3 columns with all these values to 4.d.p)
Code:
71.0168 0.178157 0.0674305
24.332 0.087471 0.0448028
19.5077 0.082566 0.0407083
15.8686 0.0851615 0.0366714
15.507 0.0850516 0.0349926
15.3 0.0870619 0.0349696
15.1607 0.0904091 0.0350349
15.0886 0.0938745 0.0350621
15.0478 0.0954998 0.0348352
15.0147 0.0965944 0.0344979

Desired Output
Code:
Site: Ridge Hill
yyyy mm dd hh         CO2       	    CH4           		   H20
2011 06 09 14  5.2977498477e+02 71.0168	2.2533536482e+00 0.178157 9.5975030698e-01 0.0674305
2011 06 09 15  4.6520528305e+02 24.332	2.0304031747e+00 0.087471 8.5550947898e-01 0.0448028
2011 06 09 16  4.2844761381e+02 19.5077	1.9940230591e+00 0.082566 8.1996490325e-01 0.0407083
2011 06 09 17  4.2039731519e+02 15.8686	2.1120403967e+00 0.0851615 8.8853008313e-01 0.0366714
2011 06 09 18  4.1383091367e+02 15.507	2.2051511063e+00 0.0850516 9.2270478393e-01 0.0349926
2011 06 09 19  4.0919424013e+02 15.3 	2.2731077128e+00 0.0870619 9.3647077771e-01 0.0349696
2011 06 09 20  4.0612124764e+02 15.1607	2.3469439802e+00 0.0904091 9.3830980979e-01 0.0350349
2011 06 09 21  4.0448877229e+02 15.0886	2.4314198862e+00 0.0938745 9.3857043465e-01 0.0350621
2011 06 09 22  4.0341963267e+02 15.0478	2.5037286957e+00 0.0954998 9.3017004739e-01 0.0348352
2011 06 09 23  4.0258560618e+02 15.0147	2.5635443249e+00 0.0965944 9.2232603099e-01 0.0344979

Can I use the 'join' command? Or would it be better to use the 'FNR==NR' or perhaps something different?

Thanks

Last edited by gd9629; 08-23-2011 at 06:02 AM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script for finding standard deviation

I have a CSV file that looks like 0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0 10,11,7,0,4,12,2,3,7,0,11,3,12,4,0,5,5,4,5,0,8,6,12,0,9,3,3,0,2,7,8 19,11,7,0,4,14,16,10,8,2,13,7,15,6,0,76,6,4,10,0,18,10,17,1,11,3,3,0,9,9,8... (7 Replies)
Discussion started by: RJ17
7 Replies

2. Shell Programming and Scripting

Mean and Standard deviation

Hi all, I am new to shell scripting and wanna calculate the mean and standard deviation using shell programming. I have a file with letters that are repeating and their corresponding duration a 0.32 a 0.89 aa 0.34 aa 0.23 au 0.012 au 0.26... (4 Replies)
Discussion started by: lakshmikanth.pg
4 Replies

3. UNIX for Dummies Questions & Answers

Calculating the Standard Deviation for a column

Hi all, I want to calculate the standard deviation for a column (happens to be column 3). Does any know of simple awk script to do this? Thanks (1 Reply)
Discussion started by: kylle345
1 Replies

4. Shell Programming and Scripting

using awk to print average and standard deviation into a file

Hi I want to use awk to print avg and st deviation but it does not go into a file for column 1 only. I can do average and # of records but i cannot get st deviation. awk '{sum+=$1} END { print "Average = ",sum/NR}' thanks (1 Reply)
Discussion started by: phil_heath
1 Replies

5. Shell Programming and Scripting

AWK script for standard deviation / root mean square deviation

I have a file with say 50 columns, each containing a whole lot of data. Each column contains data from a separate simulation, but each simulation is related to the data in the last (REFERENCE) column $50 I need to calculate the RMS deviation for each data line, i.e. column 1 relative to... (12 Replies)
Discussion started by: chrisjorg
12 Replies

6. Shell Programming and Scripting

Finding standard deviation for all columns in a data file

Hi All, I want someone to modify the below script from this forum so that it can be used for all columns in the file( instead of only printing column 3 mean and standard deviation values). I don't know how to loop around all the columns. ... (3 Replies)
Discussion started by: ks_reddy
3 Replies

7. Shell Programming and Scripting

calculating row-wise standard deviation using awk

Hi, I have a file containing 100,000 rows-by-120 columns and I need to compute for the standard deviation for each row. Any idea on how to calculate row-wise standard deviation using awk? My sample data looks like this: input data: 23 35 12 25 16 17 18 19 29 12 12 26 15 14 15 23 12 12... (2 Replies)
Discussion started by: ida1215
2 Replies

8. Shell Programming and Scripting

Computing average and standard deviation from multiple text files

Hello there, I found an elegant solution to computing average values from multiple text files awk '{for (i=1;i<=NF;i++){if ($i!~"n/a"){a+=$i}else{b++}}}END{for (i=1;i<=FNR;i++){for (j=1;j<=NF;j++){printf (a/(3-b))((b>0)?"~"b" ":" ")};printf "\n"}}' file1 file2 file3 I tried to modify... (2 Replies)
Discussion started by: charmmilein
2 Replies

9. Shell Programming and Scripting

Output mean and standard deviation of a row

I have a file that looks that this: 820 890 530 1650 1600 1800 1850 1900 2270 1640 2300 1670 2080 2200 2350 1150 1630 2210 I would like to output the mean and standard deviation of each row so that my final output would look like this 820 890 530 746.667 155.849 1650 1600 1800... (5 Replies)
Discussion started by: kayak
5 Replies

10. Shell Programming and Scripting

SMA (Single Moving Average) and Standard Deviation

Hello Team, I am using the following awk script to calculate the SMA (Single Moving Average) for an specific period but now I would like to include the standard deviation output. Could you please help me to modify this awk shell script awk -F, -v points=5 ' { a = $2; ... (4 Replies)
Discussion started by: csierra
4 Replies
GRDINFO(l)																GRDINFO(l)

NAME
grdinfo - Get information about the contents of a 2-D grd file SYNOPSIS
grdinfo grdfiles [ -C ] [ -D ] [ -F ] [ -L1 ] [ -L2 ] [ -M ] [ -V ] DESCRIPTION
grdinfo reads a 2-D binary grd file and reports various statistics for the (x,y,z) data in the grdfile. The output information contains the minimum/maximum values for x, y, and z, where the min/max of z occur, the x- and y-increments, and the number of x and y nodes, and [optionally] the mean, standard deviation, and/or the median, L1 scale of z, and number of nodes set to NaN. grdfile The name of one or several 2-D grd files. OPTIONS
No space between the option flag and the associated arguments. -C Formats the report using tab-separated fields on a single line. The output is w e s n z0 z1 dx dy nx ny [ x0 y0 x1 y1 ] [ med scale ] [ mean std rms] [n_nan]. The data in brackets are output only if the corresponding options -M, -L1, -L2, and -M are used, respec- tively. -D Report grid domain and x/y-increments using dd:mm:ss[.fff] notation [Default is decimal]. Does not apply to the -C option. -F Report grid domain and x/y-increments world mapping format [Default is generic]. Does not apply to the -C option. -L1 Report median and L1 scale of z (L1 scale = 1.4826 * Median Absolute Deviation (MAD)). -L2 Report mean and standard deviation of z. -M Find and report the location of min/max z-values, and count and report the number of nodes set to NaN, if any. -V Selects verbose mode, which will send progress reports to stderr [Default runs "silently"]. EXAMPLES
To obtain all the information about the data set in file hawaii_topo.grd, try grdinfo -L1 -L2 -M hawaii_topo.grd SEE ALSO
gmt(1gmt), grd2cpt(1gmt), grd2xyz(1gmt), grdedit(1gmt) 1 Jan 2004 GRDINFO(l)
All times are GMT -4. The time now is 05:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy