data-miningweb-mining

How could I use graph mining method to get a multi-node graph?


I now use apriori algorithm to do a data mining project,and I get result such as:item1 <=> iteam2、item2 <=> item3....... I want use graph mining to generate a graph containing many nodes and illustrating relation between these node like this:enter image description here

I heard some data ming software--weka,rapidminer;I also heard some graph library--igraph,networkx;I also heard--tableau.But I'm still confused,could someone give me a illustration about detailed procedure?


Solution

  • I recommend using Prefuse tool kit for your problem. Take a look here http://prefuse.org/gallery/ . This contains an example of the graph that you need.

    Loosely speaking, Prefuse also has a browser version called D3.js . If you want to display your graph in browser then use D3.js

    I have used Prefuse as well as D3.js when I needed a desktop graph and a graph in the browser.