cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Better graph model for GDS

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)


b)partially schema (as I haven't finished changing the rest)

Thanks!

3 REPLIES 3

Hi ,
Kind of same issue I faced when do Transaction by customers.

Here is my 2 cents.

  1. 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

  2. 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

  3. If you get results ...you can use that query to create a sub graph and then you can try relevant algo.

  4. 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 ..

  5. 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

Hi @senthilc78,

Thanks a lot for sharing your experience!

  1. I agree trying cypher projection rather than native projection at the beginning is a better choice. It gives us more flexibility even though it takes longer to generate. Native projection are more suitable for production time after reading the documents neo4j provided
  2. I tried the degree check and I got no results not surprisingly
  3. No results
  4. Totally agree - and that is the reason I want to adjust the schema a) I'm using. Just a bit background about OMOP common data model - observation and condition_occurrence usually represent symptoms and diagnosis. but again my model has the same problem that each patient's symptom occurrence is independent
  5. I assume you mean the scale of the dataset - agree that having more data can give us enough shared nodes ( I think in our case ~400 patients in the same ICU should be sufficient) but for large company you might need more txn data to build the network.

Thanks again for insights!

Best,
Mengjia

Its my pleasure Mengjia!