I've been trying to do this for a week now, with no success. I have a csv file that has data in three columns and looks like this

NAME, IN, OUT
a, 10, 20
b, 10, 30
c, 50, 20
d, 20, 60

Then I take the IN and OUT numbers and do some processing on them which is not relevant. But at the end I output the IN and OUT in lists like this:
IN:
row1: 10, 50
row2: 20, 10

OUT:
row1: 20, 60
row2: 20, 30

This is all good so far, the problem is that I also want to give these IN and OUT lists by the name (for the values that correspond to more than one name, I just want to give them in the order they appear). In this case:
IN:
row1: a, c
row2: d, b

OUT:
row1: a, d
row2: c, b

Any help would be greatly appreciated.


In reply to Linking data together by perlUser345

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.