You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is meant to prevent overly large or badly structured full adjacency matrices from appearing.
For instance, a 1000x1000 adjacency matrix simply won't be legible if plotted naively.
Even a small, bipartite network can waste a lot of space: the Paul Revere network has two bipartite classes: 7 clubs and ~150-some-odd people. The naive rendering results in a large swath of non-connected nodes (in the club-to-club and people-to-people regions), with a thin, 7x~150 patch encoding the interesting information reflected across the diagonal. Better would be to express the two classes in the rows and columns, and make better use of the full screen real estate.
The text was updated successfully, but these errors were encountered:
gotdairyya
changed the title
Allow user-controlled rows/columns
Display appropriate-sized matrix on-load
May 18, 2020
This is meant to prevent overly large or badly structured full adjacency matrices from appearing.
For instance, a 1000x1000 adjacency matrix simply won't be legible if plotted naively.
Even a small, bipartite network can waste a lot of space: the Paul Revere network has two bipartite classes: 7 clubs and ~150-some-odd people. The naive rendering results in a large swath of non-connected nodes (in the club-to-club and people-to-people regions), with a thin, 7x~150 patch encoding the interesting information reflected across the diagonal. Better would be to express the two classes in the rows and columns, and make better use of the full screen real estate.
The text was updated successfully, but these errors were encountered: