in reply to Re: Filling a matrix
in thread Filling a matrix

I edited it a bit. The point of my question is not how to create a Pie Chart,but simply how to to push in the values in correct order, inside my Matrix / Array.

Replies are listed 'Best First'.
Re^3: Filling a matrix
by Anonymous Monk on Aug 08, 2014 at 12:31 UTC

    A clearer picture of the input data and desired output data would be helpful, e.g. use Data::Dumper; print Dumper(\%elohimHash); (possibly reduced to some small number of example datasets), since at the moment your post does not agree with itself ("%elohimHash{$folderId}{$customer}{$version}{points} = $totPoints;" vs. "$totSP = $elohimHash{$folderId}{$customer}{$version}{totSP};") As for the output, is @valueArray supposed to be filled per $customer, per $folderId, or across the entire input hash?