gephi.team team mailing list archive
-
gephi.team team
-
Mailing list archive
-
Message #00562
[Bug 569329] Re: Edge weight scale is different between Graph and Preview
Fixed in rev 1709
** Changed in: gephi
Status: Confirmed => Fix Committed
** Changed in: gephi/0.7
Status: Confirmed => Fix Committed
--
Edge weight scale is different between Graph and Preview
https://bugs.launchpad.net/bugs/569329
You received this bug notification because you are a member of Gephi
Team, which is subscribed to 0.7.
Status in Gephi - Network exploration and manipulation: Fix Committed
Status in Gephi 0.7 series: Fix Committed
Bug description:
Edge weight appears differently in Graph and Preview. In Graph the scale makes different weight appears more different and therefore improve readability. The formula is like this, just scale it between 0.4 - 8
MIN = 0.4
MAX = 8
min = minimum edge weight in the graph
max = maximum edge weight in the graph
w = edge's weight
s = the scale the user can configure
ratio= (MAX - MIN) / (max - min)
weight = ((w - min) * ratio+ MIN) * s;
References