Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^4: Equality checking for strings AND numbers

by Anonymous Monk
on Jul 13, 2007 at 14:26 UTC ( [id://626446]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Equality checking for strings AND numbers
in thread Equality checking for strings AND numbers

Here is some sample input.
File1 ----- X Y Category1 Category2 Value1 Value2 Value3 Result 2 -9 1.0 2.0 1.1e3 1.234 -0.003 PASS File2 ----- X Y Category2 Category1 Value3 Value1 Value2 2 -9 1 1 -0.003 1.1e3 1.2345 FAIL

The main points to note are:
1. The columns are not necessarily in the same order (the main reason I started this in the first place).
2. Data is a mixture of strings and numbers of differing precisions (but all base10).

To take account of the differences in column order, I rebuild the data using a hash keyed by the XY coordinate (first 2 columns) and using the actual column name e.g
...other code omitted... $data1{"$x,$y}{$colnames[$colnum]} = $linedata[$colnum];


Output would be something like:
X=2 Y=9 Category2
X=2 Y=9 Value2
X=2 Y=9 Result


i.e. a list of the column names for which the data did not match between the two files, allowing for strings an numerical values, and accuracy to a certain precision (using the $eps approach detailed elsewhere in this thread)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://626446]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-24 20:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found