Thread Reader
Share this page!
×
Post
Share
Email
Enter URL or ID to Unroll
×
Unroll Thread
You can paste full URL like: https://x.com/threadreaderapp/status/1644127596119195649
or just the ID like: 1644127596119195649
How to get URL link on X (Twitter) App
On the Twitter thread, click on
or
icon on the bottom
Click again on
or
Share Via icon
Click on
Copy Link to Tweet
Paste it above and click "Unroll Thread"!
More info at
Twitter Help
Adam Cowley
@adamcowley
Providing anti-Java balance at @neo4j. Here if you need me. #graphacademy He/him
Subscribe
Save as PDF
Jun 14, 2019
•
5 tweets
•
2 min read
Detecting and visualising nodes in
#neo4j
using Neo4j Graph Algorithms and APOC.
This works really well with Neo4j Bloom and will show you whether you're on the right track.
1/
// Run the appropriate Community Detection Algorithm
CALL
algo.louvain.stream
('User', 'FRIENDS')
YIELD nodeId, community
WITH community, collect(nodeId) AS ids