Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago

Correlation Matrix

Hi

 

I want to create a correlation matrix from a table as this one:

setidvalue
A1X
A2Y
A3Y
A4X
A5Z
B1X
B2Y
B3X
B4X
B5Y
C1X
C2Y
C3X
C4X
C5X

 

and to be able to select 2 sets for showing a matrix as this (if A+B sets selected):

  A
  XYZ
BX21 
 Y 11
 Z   

 

how can i do that?

 

1 Reply

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion

    Anonymous You will need a disconnected table that you could create like the following:

    Table 2 = DISTINCT(SELECTCOLUMNS('Table',"set",[set],"value",[value]))

    Use this for your columns or your rows and use the original table for the other. Then you can get the MAX of set and value for each table. Then use FILTER of ALL to grab the rows for each and then INTERSECT and COUNTROWS to count the matches.