1
G = DiGraph(A, format='weighted_adjacency_matrix')
G.relabel([1..10],inplace=True)
H = G.plot(edge_labels=False, graph_border=True)
H.show()
是否可以通過此圖表突出顯示某條路線?即讓一些線條變成不同的顏色,比如紅色?使用Sage的圖形
G = DiGraph(A, format='weighted_adjacency_matrix')
G.relabel([1..10],inplace=True)
H = G.plot(edge_labels=False, graph_border=True)
H.show()
是否可以通過此圖表突出顯示某條路線?即讓一些線條變成不同的顏色,比如紅色?使用Sage的圖形
這是你在找什麼?
http://www.sagemath.org/doc/reference/plotting/sage/graphs/graph_plot.html
Nathann
:sage: g = graphs.PetersenGraph()
sage: g.show(edge_colors={'red':[(0,1),(1,6),(6,9),(9,4)] })
的用於圖形繪製所有可用選項的文檔可以在此頁面上找到