I have the following problem: I want to plot an adjacency matrix using a colormap. Now I want do adjust the markersize, because you cannot really see the dots in the picture since the matrix is really big . How can I do this? Using spy(), this works like this.
plt.spy(adj, markersize = 1)
I want to have something like this:
plt.imshow(adj, cmap = colormap, markersize= 1)
This however, doesnt work. Thanks