本文整理汇总了Python中py2neo.Graph.evaluate方法的典型用法代码示例。如果您正苦于以下问题:Python Graph.evaluate方法的具体用法?Python Graph.evaluate怎么用?Python Graph.evaluate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类py2neo.Graph
的用法示例。
在下文中一共展示了Graph.evaluate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: while
# 需要导入模块: from py2neo import Graph [as 别名]
# 或者: from py2neo.Graph import evaluate [as 别名]
else:
Matrix[i][j]=r1
#for i in Author_id:
#print (Author_id[i],' ',Author_name[i],' ', i)
#print (Author_id)
#print (Matrix)
j=1
i=0
while (j < 40):
#a=Relationship(Author_id[i], "Advisor_of",Author_id[j])
#graph.merge(a)
q1="MATCH (n:Author{ID:"+str(Author_id[i])+"}),(m:Author{ID:"+str(Author_id[j])+"}) CREATE UNIQUE (n)-[:Advisor_of{Wt:1}]->(m)"
graph.evaluate(q1)
j+=1
#b=Relationship(Author_id[i], "Advisor_of",Author_id[j])
#graph.merge(b)
q1="MATCH (n:Author{ID:"+str(Author_id[i])+"}),(m:Author{ID:"+str(Author_id[j])+"}) CREATE UNIQUE (n)-[:Advisor_of{Wt:1}]->(m)"
graph.evaluate(q1)
i+=1
j+=1
for i in range(40,44):
r1 = random.randint(5,35)
#a=Relationship(Author_id[i], "Advisor_of",Author_id[r1])
#graph.merge(a)