How to get spatial proportional nodes in Gephi?

Gephi has excellent functionality for sizing nodes based on this variable. The nodes are apparently sized, so the radius of the circle is linearly proportional to the value of the variable. How to get the area of ​​a circle in proportion to the value of a variable?

Using spline functionality to get precise proportionality seems rather complicated. I suggest that one solution might be to export the node table, calculate the square root of the variable, and re-import the data. I was wondering if I was missing a more direct solution.

Example of proportional character radius using data from Martin Granjan's textbook

+5
source share
1 answer

Calculating the square root would be correct if we were displaying squares. But since we are showing circles, the correct Excel formula is likely to be:

=SQRT(*value here*/(2*PI())) 
0
source

Source: https://habr.com/ru/post/1243260/


All Articles