Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Invert CSV

by ig (Vicar)
on May 30, 2011 at 20:00 UTC ( [id://907363]=note: print w/replies, xml ) Need Help??


in reply to Invert CSV

It looks to me like you have your iterations over rows and columns ($z and $v) reversed. Maybe something like the following would work better.

use strict; use warnings; my @data; while (<DATA>) { chomp; push(@data, [ split /,/ ]); } my $cols = $#{$data[0]}; my $rows = $#data; foreach my $col (0..$cols) { foreach my $row (0..$rows) { print "$data[$row][$col],"; } print "\n"; } __DATA__ 1.1,1.2,1.3,1.4,1.5 2.1,2.2,2.3,2.4,2.5 3.1,3.2,3.3,3.4,3.5

Are you sure every row has the same number of fields?

Replies are listed 'Best First'.
Re^2: Invert CSV
by roadtest (Sexton) on May 31, 2011 at 16:27 UTC
    Yes, you are right. I made logic mistake. I should loop column number first, then loop row number inside it. My testing data happens to be a square matrix, same columns and row numbers, which hides the logic error.

    After correcting it, all CSV files are processed correctly.

    Cheers,

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (2)
As of 2024-04-26 01:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found