Go to Google Home
Go
A data-code-compute resource for research and education in information visualization
InfoVis Home Learning Modules Software Databases Compute Resources References

Software > Force Directed Placement Algorithm

Description | Pros and Cons | Applications | Details | Usage Hints | References | Acknowledgments

Organization of random 49 numbers (index value) by Yuezheng Zhou
The numbers in the left upper corner represent the boundary, potential energy, shift in x-direction and y-direction, total distance between nodes, iteration steps.


line
Description

Spring embedding algorithms also called FDP (Force Directed Placement) can be used to sort randomly placed nodes into a desirable layout that satisfies the aesthetics for visual presentation (symmetry, non-overlapping etc.) See Eades (1984) and Jones' webpage.

FDP (Battista et al., 1984) views nodes as physical bodies and edges as springs connected to the nodes providing forces between them. Nodes move according to the forces on them until a local energy minimum is achieved. In addition to the imaginary springs, other forces can be added to the system in order to produce different effects (see table). Many visual examples of these force models can be found in Battista et al. (1984).

Force Model Formula Example of Usage
Spring Force F = k(1-a) k- stiffness of spring a- natural length of spring Assigning different k and a to different edges to separate nodes by different distances.
Gravity Force F = g/r2 g- associated with mass of node, usually equals 1. Apply gravity force between node pairs to prevent node overlapping.
Electrical and Magnetic Force F = eE
F = qB E- electric field strength B- magnetic field strength
Changes nodes distribution along a direction.

FDP was extended to three dimensions by Kumar & Fowler (1996).

A simple algorithm to find the equilibrium configuration is to trace the move of each node according to Newton’s 2nd law. This takes time O n3, which makes it unsuitable for large data sets. Rob Forbes (1987) proposed two methods that were able to accelerate convergence of a FDP problem 3-4 times. One stabilizes the derivative of the repulsion force and the other uses information on node movement and instability characteristics to make a predictive extrapolation.

In a recent paper, Huang et al. (1998) describe a system that uses a “logical frame” to present a subgraph of the entire graph. Algorithms are provided to smoothly migrate from one logical frame to another.


line
Pros & Cons

The FDP method is easy to understand and implement, but is very slow for large graphs.


line
Applications

Force directed graph drawing algorithms are increasingly popular in information visualization. They have been used in BEAD (Chalmers, 1992), Narcissus (Hendley, 1995), SHriMP (Simple Hierarchical Multi-Perspective views) (Storey, 1995) and SPIRE (Hetzler et al., 1998) see (Young, 1996). They can/have also been used to generate graphical representations of Pathfinder networks.

Some Demo's & Examples:


line
Details

In class we will use a java code that was originally implemented by Sun Microsystems, Inc. and was modified by Larry Mongin. In particular, the appearance of the nodes was changed, the forces between these nodes were modified, and several variables like system energy, step bound, iteration step and several functions were added to observe (and interact with nodes during) sorting.


line
Usage Hints

The Spring package can be found on ella in '/home/www/ella/htdocs/classes/L697/code/infovis/gui/spring'.

The implementation in the Information Visualization XML Toolkit can be found on ella in '/home/www/ella/htdocs/classes/L697/code/infovis/xmlbridge'.

To use only the spring portion of the toolkit you will need an entire copy of the Spring Package and the Information Visualization XML Toolkit, as listed in the above directories on ella. You need to maintain the package (directory) structure of these copied files for it to work with your own code. You will need to use XMLSpring as a visual component just like any other Swing component (initialize it and add it to a container in an applet or application). Please review the following applet Example.java.

The demo is also in the Information Visualization XML Toolkit. The demo can be found on ella in '/home/www/ella/htdocs/classes/L697/code/infovis/demo/'. Copy the demo files to a machine with the proper JDK (1.3 with the XML pack or 1.4) and then double click on infovis.jar to open the demo. Click on 'Select File' to select a XML file to visualize and select one of the XML files from the demo. Note: there are 3 files (hierarchy.xml, tabular.xml, list.xml) and their names indictate their structure type so you should know which visualizations can use which XML file.  

Variations: Change appearance of the nodes, the forces between these nodes, energy, step bound, iteration steps.

line
References
  • Battista, G. , Eades, P., Tamassia, R., and Tollis, I.G. (1994) Algorithms for drawing graphs: An annotated bibliography. Computational Geometry: Theory and Applications, 4(5), 235-282.
  • Dobkin, D. P., Hausner, A., Gansner, E. R., & North, S. C.(1999) Clustering force-directed graph layouts. In Proceedings of the 15th Annual Symposium on Computational Geometry, 425-426.
  • Eades, P. A heuristic for graph drawing Stanton. Ralph G. (Ed.). Congressus numerantium. Winnipeg: Utilitas Mathematica.
  • Young, P. (1996) Software Visualization.  http://vrg.dur.ac.uk/misc/PeterYoung/pages/work/documents/lit-survey/soft-vis/
  • Forbes, R.(1987) Heuristic acceleration of force-directed placement. In Proceedings of 24th ACM/IEEE Conference on Design Automation Conference, 735-740.
  • Huang, M. L., Eades, P., & Wang, J. (1998) On-line animated visualization of huge graphs using a modified spring algorithm. Journal of Visual Languages and Computing, 9(6), 623-645.
  • Jones, C. Graph Drawing webpage http://orcs.bus.okstate.edu/jones98/drawing.htm
  • Kumar, A. & Fowler, R.H. (1996) A Spring Modeling Algorithm to Position Nodes of an undirected Graph in Three Dimensions. Technical Report Department of Computer Science, University of Texas - Pan American. http://bahia.cs.panam.edu/info_vis/spr_tr.html

line
Acknowledgments

The java applet was implemented by Yuezheng Zhou. Nihar Sanghvi integrated the code into the software repository.

line
Information Visualization Cyberinfrastructure @ SLIS, Indiana University
Last Modified January 14, 2004