I'm new to Graphframes and trying to implement edge-betweenness.
I tried using shortest Paths function that is built-in. It returns the distance from the source to the destination vertex but not the actual path between them.
The output is:
| id | name | age | distances|
| g | Gabriel | 33 | [e -> 2] |
Is there any way to get the actual path instead of distance value ?
If anyone could tell me how to implement edge-betweenness efficiently in graph frames that would be really great.