I have a bipartite graph and i want to compute the square of the adjacency matrix.
How to do it in igraph-python?
I am analyzing IMDb data set where i have information about actor and movie.
I want to find out which actors acted in a movie and which movies have common actors.
One option that i explored was bipartite_projection but i still want to find the path of length 2 by doing matrix multiplication i.e. square of adjacency matrix.
I am new to igraph-python so your patience and help is appreciated.
Thanks