gephi.team team mailing list archive
-
gephi.team team
-
Mailing list archive
-
Message #00652
[Bug 569329] Re: Edge weight scale is different between Graph and Preview
** Changed in: gephi
Status: Fix Committed => Fix Released
** Changed in: gephi/0.7
Status: Fix Committed => Fix Released
--
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 Released
Status in Gephi 0.7 series: Fix Released
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