Hi Saurabh, You might find ipython-cypher [1] useful for your case, since it allows you to get the Pandas dataframe and the NetworkX graph of each Cypher query. The docs are nonexistent, but I will work on that. Here is a notebook example [2]. Right now it is not easy to use outside IPython, but I will work on that too.
Also, if you need to run Cypher-like queries over a NetworkX graph, an even perform projections, a colleague is actually working on that, ProjX [2, 3]. [1] https://github.com/versae/ipython-cypher [2] http://nbviewer.ipython.org/github/versae/ipython-cypher/blob/master/src/examples.ipynb [3] https://pypi.python.org/pypi/projx/ [4] http://nbviewer.ipython.org/github/davebshow/projx/blob/master/projx_demo.ipynb On Tue, Jan 13, 2015 at 9:14 PM, saurabh mangal <[email protected]> wrote: > I have build a Neo4j database with batch import utility, I can even > connect it to python using py2neo and easily do all the cypher queries that > I want. > > But I want to create a subgraph using cypher (which I can do easily) but I > am not able to bring that graph into NETWORKX or IGRAPH format, > > I want to run analytics like betweeness , centrality , key-players > identification -- using NEtworkx and Igraph packages in python. > > Can someone help me. > > -- > You received this message because you are subscribed to the Google Groups > "Neo4j" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- Javier de la Rosa http://versae.es -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
