I used these codesthe following code to mightmake a simple triangle, in which the nodes have different effects each other:
data = {{0, 1, 0}, {0, 0, 2}, {3, 0, 0}}; AdjacencyGraph[data, VertexLabels -> "Name"] That gave me three edges between nodes 1 and 3 three edges , futhermoreand two edges between nodes 2 and 3 two edges.
How How can I show on a graphthese multiplicities with edges that range from thin to thickness these values (1,2,3)thick.
@prgrad and @m_goldberg
I mightwant to transform amy graph into one which gives me single edge between the nodes. See pic.the following picture:
for each different edge value of othera different style. for For example, for +3 dark black, for -3 dark red, etc.
Can you can maybe help me futher withto make a graph from my adjacency matrix that has these (minus and plus) codes:labels?
data = {{0, -1, 0}, {0, 0, 2}, {3, 0, 0}}; AdjacencyGraph[data, VertexLabels -> "Name"] 
