Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-17-2020 08:24 PM
Dear all,
I'm currently modeling the OMOP EMR to graph database and have loaded ~400 patients dataset into Neo4j. When I tried to apply graph algorithms, I found my graph very separated having limited sharing nodes. So I am wondering if anyone could share they experience/opinion on what is a better graph model for applying graph algorithms? I'm posting two schemas here for comparison-
a) every row in the EMR tables are turned into a node (all the properties are attached to the node)
b) every unique instance are turned into a node and use relationship properties to distinguish occurrence records (dates and ids on edges)
a)
12-17-2020 09:21 PM
Hi ,
Kind of same issue I faced when do Transaction by customers.
Here is my 2 cents.
As we knew..we have to create sub graph first (CALL gds.graph.create(...)..then apply GDS .when I try direct didn't get any at my first time
Just try to check do you have min 3 ..5 hops degree btw patients MATCH gp=(p1:Patient )-[*3..5]-(p2:Patient) RETURN nodes(gp) LIMIT 100
If you get results ...you can use that query to create a sub graph and then you can try relevant algo.
May be from your data model ..except gender and race not sure you have enough common nodes for connect for graph traversal. I cud see Drug exposure node but not sure have you included 'Drug ' or 'Initial symptoms or diagnosis ' in your model ..
Also you may have to have more data since sometimes initial data load may not cover all possible common or influence node.. example 5 people 5 txn 10 different products all will be separate 10 path _no connection btw people ..here we need more samples
Hope it helps.
With Smiles,
Senthil Chidambaram
12-21-2020 07:59 PM
Hi @senthilc78,
Thanks a lot for sharing your experience!
Thanks again for insights!
Best,
Mengjia
12-22-2020 12:35 AM
Its my pleasure Mengjia!
All the sessions of the conference are now available online