Hello friends,
Say I have a graph that of people who are connected with each other via different relationships: friends_with, follows, messages, retweets.
so the graph should be as follows
x friends_of y
a retweets b
x follows y
y retweets b
b follows a
if we construct some vertices of this graph we can have something like this:
x ----> friends_of ---->y ----> retweets b ----> follows ----> a
Is there a way we can visualize these triplets as a disconnected graph not as I have shown in above?
Thanks very much!
-Ahmed