Reputation: 465
Not sure if this is the right exchange to post this question but please feel free to redirect me.
I have a bunch of clusters each with a title and a bunch of items associated with it. What is the best/easiet way to visualize it?
[{
title: "Title1",
items: [ "a", "b", "c"]
},
{
title: "Title2",
items: [ "c", "d", "e"]
},
...]
Upvotes: 0
Views: 483
Reputation: 13065
My go-to way to visualize data is GraphViz. It's pretty simple to learn, and can generate some nice graphs. They aren't pretty, but they are very functional.
For example, see here: http://www.ibm.com/developerworks/library/l-graphvis/
Upvotes: 1