Say I have a table as such:
Attr | Foo | Bar
Name|Val | 1 | 2 | 3 | 4
-----------------------------
OFO |1 | F | T | F | F
|2 | T | F | F | T
-----------------------------
ARB |5 | T | T | F | F
|6 | F | F | F | T
Where my rows are controlled by an index with level 0 = {OFO, ARB} and level 1 = {1,2,5,6} and columns are level 0 = {Foo,Bar} and level 1 = {1,2,3,4} I want to be able to pull the respective row and column index from each T entry, so one return would be:
((Foo,1),(OFO,1))
I'm struggling to come up with a good solution.