I am working on a great project on social network analysis. My objective is to get different centrality indexes for each node in a graph. I need to analyze the graph and derive some meaning full information from it. I am using Neo4J graph database(Community Edition 1.8.M06) for this project. And I am very new to Neo4J, just two weeks of experience.
Right now my graph is a friendship graph, and so the only relationship I have in the graph is of Friendship, which is mutual. The graph is undirected, unweighted and simplex. Soon I'll be adding other relationships and objects into the graph, which will make it complex.
I understand Neo4J has implementations for a range graph algorithms to measure Centrality and I got that information from this link. But I couldn't find any information or examples on how to use them for getting the centrality measures. I also understand these algorithms are not production ready.
Is there anyone who have tried out something similar with Neo4J? Is it possible to do it just using Neo4J? If not can I use R programming language to get Centrality indexes from Neo4J?
I'd tried using R with igraph package to get centrality from an edge-list. I suppose I could use R to access Neo4J using the REST API.
I had also found some examples on using the common Graph Algorithms for shortest path problems. But no direct examples for getting the Centrality indexes. Learning from an example seems to be a perfect idea.
Thanks,
Deepu