Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
06-23-2021 02:49 PM
Hi everyone, i have 12 000 nodes which stores keywords and there is a SEEN relation with weight.
For example, if k1 and k2 has seen on 10 articles then k1-----SEEN {weight:10} --->k2
Now i want to visualize with the 5 most influencer. Actually something in the picture bellow. if it is possible how can i do it. Thanks for advance.
06-23-2021 04:09 PM
you can order by the sum of the weight.
match (k1:Keyword)-[seen:SEEN]-(k2)
with k1, sum(seen.weight) as weight
order by weight desc limit 5
match path= (k1:Keyword)-[seen:SEEN]-(k2)
return path
06-24-2021 12:06 AM
Hi Michael, first of all thank you. The piece of code you wrote works. The result in the pictures bellow.
How can I visualize the result with adjust different colors and sizes of nodes or the thickness of the weights. Thank you again.
06-24-2021 01:54 AM
You would do that in neo4j bloom, neo4j-browser is more a developer tool than a data visualization tool.
see here
All the sessions of the conference are now available online