Question

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.

Was it helpful?

Solution

You could take a look at d3? This is a great, very flexible, visualization framework. It may be a bit more low-level than the other alternatives you're looking at, but it does include a number of (almost) ready-to-go "layouts", which are mostly different graph types.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top