Sponsored Content
Full Discussion: Matrix with Percentage
Top Forums Shell Programming and Scripting Matrix with Percentage Post 302975463 by Don Cragun on Monday 13th of June 2016 02:35:00 PM
Old 06-13-2016
Is this a homework assignment? Homework and coursework questions can only be posted in this forum in a particular format described in special homework rules.

If this is homework, please repost it in the Homework & Coursework forum in the required format.

If not, please show us a sample of your input. Does it come from a file, is data manually entered, or what is the source? What is the format of the input data? Is it a CSV file using the pipe symbol as the field separator or is it some other format? Is there a heading line in the input?

Exactly what output you are trying to produce from your sample intermediate output (with the percentages you said you want, but did not describe).

What is your definition of a "blank space"? Is it an empty string? Is it a single <space> character? Is it a single character in the current locale's blank character class? Is it a string of one or more <space> characters? Is it a string of one or more characters in the current locale's blank character class? Is it a string of zero or more <space> characters? Is it a string of zero or more characters in the current locale's blank character class?

Please explain the logic used to determine when the output should be TRUE or FALSE and the logic used to determine when the output should be Positive or Negative.

If blank space is an empty string or a single <space>, why isn't the line in your intermediate output:
Code:
<BLANK>|<BLANK>|True Negative

be:
Code:
<BLANK>|<BLANK>|True Positive

instead. Shouldn't identical strings be Positive???

If blank space is a single <space> character, why isn't the line your intermediate output:
Code:
Binny's Sales|<BLANK>|False Negative

be:
Code:
Binny's Sales|<BLANK>|True Positive

instead. Shouldn't the <space> in the second field be considered a substring of the 1st field (matching the space in the middle of the 1st field?

What operating system and shell are you using?

What have you tried to solve this problem on your own?

Last edited by Don Cragun; 06-13-2016 at 05:11 PM.. Reason: Fix typos: missing "be:" between code segments.
This User Gave Thanks to Don Cragun For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk percentage

how would you calculate percentage by per line? Given a column of 16 lines, grab each line and divide it by the sum of the entire column and multiply by 100? thanks ... (8 Replies)
Discussion started by: rockiefx
8 Replies

2. UNIX for Dummies Questions & Answers

percentage

How to calculate percentage of two values in unix. (5 Replies)
Discussion started by: venkatesht
5 Replies

3. Shell Programming and Scripting

diagonal matrix to square matrix

Hello, all! I am struggling with a short script to read a diagonal matrix for later retrieval. 1.000 0.234 0.435 0.123 0.012 0.102 0.325 0.412 0.087 0.098 1.000 0.111 0.412 0.115 0.058 0.091 0.190 0.045 0.058 1.000 0.205 0.542 0.335 0.054 0.117 0.203 0.125 1.000 0.587 0.159 0.357... (11 Replies)
Discussion started by: yifangt
11 Replies

4. Ubuntu

How to convert full data matrix to linearised left data matrix?

Hi all, Is there a way to convert full data matrix to linearised left data matrix? e.g full data matrix Bh1 Bh2 Bh3 Bh4 Bh5 Bh6 Bh7 Bh1 0 0.241058 0.236129 0.244397 0.237479 0.240767 0.245245 Bh2 0.241058 0 0.240594 0.241931 0.241975 ... (8 Replies)
Discussion started by: evoll
8 Replies

5. Shell Programming and Scripting

awk? adjacency matrix to adjacency list / correlation matrix to list

Hi everyone I am very new at awk but think that that might be the best strategy for this. I have a matrix very similar to a correlation matrix and in practical terms I need to convert it into a list containing the values from the matrix (one value per line) with the first field of the line (row... (5 Replies)
Discussion started by: stonemonkey
5 Replies

6. Shell Programming and Scripting

Percentage calculation

i am trying to get percentage : but not able to do it: i tried : x=1 y=2 z=`expr $x/$y*100` it is not giving me result can u pls help on this (4 Replies)
Discussion started by: Aditya.Gurgaon
4 Replies

7. Shell Programming and Scripting

Percentage of occurence

Dear all, I have data like below and i need to add coloumn before the COUNT field to see the Percentage out of all COUNT field value for respective raw. ============================================= COUNT CODE sConnType tConnType... (6 Replies)
Discussion started by: Iroshan
6 Replies

8. Shell Programming and Scripting

Need to monitor OS in percentage

Hi, I am looking for generic commands / scripts that could run across platforms especially on HP Itanium boxes to give me % of free OS parameters For eg: Free Total Memory RAM : 20 % Free Total Swap Memory: 35% Free Total CPU utilisation: 44% Free Disk Space: /appl = 55%... (5 Replies)
Discussion started by: mohtashims
5 Replies

9. Shell Programming and Scripting

Calculate percentage of columns greater than certain value in a matrix using awk

This matrix represents correlation values. Is it possible to calculate the percentage of columns (a1, a2, a3) that have a value >= |0.5| and report the percentage that has positive correlation >0.5 and negative correlation <-0.5 separately. thanx in advance! input name a1 a2 a3... (5 Replies)
Discussion started by: quincyjones
5 Replies

10. Shell Programming and Scripting

Percentage calculation

Hi, I have a text file in below format. I trying to find a solution for finding percentage used for each of the NAMEs. Directory ALLOCATED USED NAME1 93MB 93KB NAME2 25G 62K NAME3 14G 873M NAME4 25G 62K NAME5 20G... (10 Replies)
Discussion started by: ctrld
10 Replies
All times are GMT -4. The time now is 10:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy