“narysuj dwustronną sieć grafów” Kod odpowiedzi

narysuj dwustronną sieć grafów

nx.draw_networkx(
    B,
    pos = nx.drawing.layout.bipartite_layout(B, B_first_partition_nodes), 
    width = edge_widths*5) # Or whatever other display options you like
Real Raccoon

narysuj dwustronną sieć grafów

X, Y = bipartite.sets(B)
pos = dict()
pos.update( (n, (1, i)) for i, n in enumerate(X) ) # put nodes from X at x=1
pos.update( (n, (2, i)) for i, n in enumerate(Y) ) # put nodes from Y at x=2
nx.draw(B, pos=pos)
plt.show()
Real Raccoon

Odpowiedzi podobne do “narysuj dwustronną sieć grafów”

Pytania podobne do “narysuj dwustronną sieć grafów”

Więcej pokrewnych odpowiedzi na “narysuj dwustronną sieć grafów” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu