fslaborg / Graphoscope

A pragmatic approach to network science.
http://fslab.org/Graphoscope/
MIT License
14 stars 6 forks source link

Implement wedge count #49

Closed LibraChris closed 1 year ago

LibraChris commented 1 year ago

Description The Wedge Count algorithm, like the Triangle Count algorithm, is a graph analysis technique used to identify certain structural patterns within a graph. In this case, it focuses on detecting wedges. A wedge (sometimes called Triad) is a collection of three nodes in the graph where two of these nodes share a direct edge or relationship, and the third node serves as a common neighbour to the other two. This concept is often referred to as a "2-clique" in graph theory.

image

Pointers The clustering coefficient makes use of triangles, which might give some ideas about the implementation.

References

lamg commented 1 year ago

I'm working on this 🦾

DoganCK commented 1 year ago

https://arxiv.org/pdf/1603.05843.pdf

LibraChris commented 1 year ago

Another resource:

http://dx.doi.org/10.1137/1.9781611972832.2