neo4j - How do I create multiple weighted edges between nodes -


i want keep browse history,

to calculate behaviour among browsing pages.

so designed following graph show idea,

as can see, there 4 edges between page a , page b,

so how create kind of relationships , nodes ?

how

  • average browsing time (20min)
  • min browsing time
  • max browsing time

any suggestion , ideas?

thanks

i'm bit confused. relationship mean? represent amount of time spent on page before user browses page b?

just going model , goals, maybe work?

match (a:page)-[r:browsed_to]->(b:page) return avg(r.time_spent) 

for min , max time replace avg min , max


Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -