I have a table with many entities being predicted to other types of entities with a given confidence score. Ex:
Entity1 -> type1; score:3.0
Entity2 -> type4; score:1.0
Entity1 -> type3; score:5.0
Entity3 -> type3; score:2.0
Entity1 -> type1; score:3.0
I need to visualize this data. Preferably in a matrix diagram or a mapping diagram. The confidence score is the most important feature. It should determine the positions on the chart. I have been looking at HighCharts and some other javascript visualization libraries, but haven't come across a chart that is very useful. Any suggestions would be appreciated.