I'm trying to get a python dictionary with the following structure:
>>>my_dict
>>>(i1,j1):{c1:1,c2:3,c3:4},(i2,j2):{c1:1,c2:1,c3:1}...
What I would like to do is get the key (i,j) and the r1,r2,r3.rn in a matrix or some sort of table used for visulization. So the table representation would look like this.
c1 c2 c3 ...rN
i1,j1 1 3 4
i2,j2 1 1 1
iN,jN
Basically I want my primary keys on the rows and the keys of my value (which is another dictionary) on the column. Then easily map the keys to a column and row value.
I'm being really specific, and this is just one example. I'm actually confused as to what i'm looking for. I have to do this many times, Is their an easy way to map dictionaries to a table like this? Is there some module I should be looking for?
Thanks in advance, J
