Hi Sharonahorung,
You may please refer to the my post on the same available in this link: How to visualise a neo4j graph in python? - #2 by andreperez
Thanks
Ishwarya
Hi Elaine,
I am Neo4j Graph Data Science Certified.
I am trying to claim the T-shirt as mentioned in your website. But it says, it is unable to verify me although I am using the same email id.
Email id used for certification: ishwarya.ms@prodapt.com
...
Hi There,
You can use the package called 'neo4jupyter' for viewing neo4j data points via Jupyter Notebook.
Here is the link to code base: GitHub - merqurio/neo4jupyter: A quick visualization tool for Jupyter and Neo4J
Using this code base is super si...
Hi there,
You may try to use this package 'neo4jupyter' for your requirement.
Following steps are to be carried out:
Install and import the neo4jupyter package.
1.1. !pip install neo4jupyter
1.2. import neo4jupyterCreate a py2neo graph object
2.1. fr...
Hi,
You may try using the following code snippet to find the loops in the path.
MATCH p=((n)-[*..10]-(m)) WHERE ID(n)=Id(m) RETURN p
This code uses ID to find the same starting and ending node upto 10 hops. The maximum number of hops can be defined u...