我想使用py2Neo将Neo4j数据的结果转换为Python中的图形。
以下链接提供了详细的程序代码:
http://nicolewhite.github.io/neo4j-jupyter/hello-world.html
import networkx as nx
%matplotlib inline
results = %cypher MATCH p = (:Person)-[:LIKES]->(:Drink) RETURN p
g = results.get_graph()
nx.draw(g)
get_graph函数抛出错误:
TypeError:error()只需要2个参数(给定4个)。
该函数需要两个参数。但我不明白Cypher查询有什么问题?谢谢。