Finding the most positive and negative value and defining its position


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Finding the most positive and negative value and defining its position
# 1  
Old 04-18-2010
Finding the most positive and negative value and defining its position

Hi,

I have a file that looks like this:

Code:
Jake      2  3  4  6  4  3  -2  -1
Jerry     1  2  3  2  1  7  -6  -1
Timmy   -1  -4  -5  -8  9  3  1

I want to find the most positive and negative value for each row and also define its position (based on column #)

So the output would look something like:

Code:
Jake  6  4  -2  7
Jerry  7  6  -6  7
Timmy  9  5  -8  4

Where the first column is name, 2nd column is the most positive value, 3rd is its column position, 4th column is the most negative value and 5th column is the column position of the most negative value.

thanks
# 2  
Old 04-18-2010
Code:
awk '{for(i=1;++i<=NF;){if($i>a){a=$i;b=(i-1)};if($i<c){c=$i;d=(i-1)}}}{print $1,a,b,c,d}' file

# 3  
Old 04-20-2010
hmmm

does not work. For the test data it does not go through it row by row instead it stalls at the first row.
# 4  
Old 04-20-2010
If you want to use perl

Code:
cat  filename | perl -e 'while (<>){
chomp;
my ($name,@numbers) = split("\ ");
my ($max,$min,$max_pos,$min_pos) = (0,0,0,0);
for (my $i=0;$i<=$#numbers;$i++){
if ($numbers[$i] > $max){
($max,$max_pos) = ($numbers[$i],$i+1);
}
elsif ($numbers[$i] < $min){
($min,$min_pos) = ($numbers[$i],$i+1);
}
}
print "$name\t$max\t$max_pos\t$min\t$min_pos\n";
}
 '

Jake    6       4       -2      7
Jerry   7       6       -6      7
Timmy   9       5       -8      4

HTH,
PL
# 5  
Old 04-20-2010
Quote:
Originally Posted by kylle345
does not work.
That's not very useful, state your OS, shall and maybe we will be able to solve your problem.
# 6  
Old 04-20-2010
Try this:

Code:
awk '{
max=0;min=0
for(i=2;i<=NF;i++) {
   if ( max < $i ) {max=$i;maxpos=i-1}
   if ( min > $i ) {min=$i;minpos=i-1}
   if (i == NF) { print $1,max,maxpos,min,minpos}
}
}
' filename

Jake 6 4 -2 7
Jerry 7 6 -6 7
Timmy 9 5 -8 4


cheers,
Devaraj Takhellambam
# 7  
Old 04-20-2010
And yet another Perl solution:

Code:
$ 
$ 
$ cat f2
Jake      2  3  4  6  4  3  -2  -1
Jerry     1  2  3  2  1  7  -6  -1
Timmy     -1  -4  -5  -8  9  3  1
$ 
$ 
$ perl -lne '/^(\w+[ ]+)(.*?)$/;@x=split/[ ]+/,$2; for(1..$#x){$x[$i]>$x[$_] or $i=$_; $x[$j]<$x[$_] or $j=$_} print "$1 $x[$i] ",$i+1," $x[$j] ",$j+1' f2
Jake       6 4 -2 7
Jerry      7 6 -6 7
Timmy      9 5 -8 4
$ 
$

tyler_durden
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Splitting a file based on negative and positive numbers

I have a file that is pipe delimited and in Column F they have number values, both positive and negative. I need to take the one file I am starting with and split it into two separate files based on negative and positive numbers. What is the command to do so? And then I need to also transfer... (4 Replies)
Discussion started by: cckaiser15
4 Replies

2. UNIX for Beginners Questions & Answers

Converting negative number to positive in a file

Hi ALL, I am having semi column separated file as below. I am having negative values for the records starting with 11095. How can I convert that positive number I tried this below seems not working sed 's/ \(*\)$/ -\1/;t;s/\(.*\)-/\1/ myfile myfile... (6 Replies)
Discussion started by: arunkumar_mca
6 Replies

3. Shell Programming and Scripting

Splitting a file based on positive and negative numbers

Dear All, I have to split a tab delimited file in two files based on the presence of a positive or negative in column number 9 , for example file: A 1 5 erg + 6766 0.9889 0.9817 9.01882 erg inside upstream B 1 8 erg2 + 6766 0.9889 0.9817 -9.22 erg2 inside... (3 Replies)
Discussion started by: paolo.kunder
3 Replies

4. Shell Programming and Scripting

Taking largest (negative) number from column of coordinates and adding positive form to every other

Hello all, I'm new to the forums and hope to be able to contribute something useful in the future; however I must admit that what has prompted me to join is the fact that currently I need help with something that has me at the end of my tether. I have a PDB (Protein Data Bank) file which I... (13 Replies)
Discussion started by: crunchgargoyle
13 Replies

5. Shell Programming and Scripting

Find Where Values Change From Positive To Negative and viceversa

Hi all, I have a file that looks like shown below. I want to find places where the value in column 2 change from negative to positive and vice versa and return the value on column 1 at that point. I wonder if this is possible in shell script or awk .. please help! Here is the original data ... (6 Replies)
Discussion started by: malandisa
6 Replies

6. Shell Programming and Scripting

addition of both positive and negative numbers

Let, I have three numbers +00123.25 -00256.54 +00489.23 I need to sum up all those three numbers, after storing them in three variables (say var1, var2, var3). I used both expr and BC, but they didn't work for me. But, I am not able to sum up them, as I don't have any idea how to... (13 Replies)
Discussion started by: mady135
13 Replies

7. Shell Programming and Scripting

Sorting positive and negative values

Hello, I have a list like this : 1 2 -4 0 -3 -7 5 6 etc. Is there a way to remove all the positive values and print only the negative values, without using grep, sed or awk? Thanks, Prasanna (4 Replies)
Discussion started by: prasanna1157
4 Replies

8. Shell Programming and Scripting

Perl output with negative and positive numbers

Hello, For my weather station I have made a little perl script to put the data into cacti. The next problem I have. I can only get positive numbers or negative numbers. What do I do: Though a shell scrip I call the perl script. Shell script: #!/bin/sh cat data.txt | stats.pl Perl... (4 Replies)
Discussion started by: rbl-blacklight
4 Replies

9. Shell Programming and Scripting

Help in adding positive & negative values in a column

Hi Gurus, In my file I have an amount field from position 74 to 87, which contains values starting with '+' as well as '-'. I want to add all positive values in a varible called "CREDIT" and all negative values in a variable "DEBIT". I know, we can use grep to identify values with positive and... (4 Replies)
Discussion started by: berlin_germany
4 Replies
Login or Register to Ask a Question