Information Visualization

See EdwardTufte - one of the widely recognized masters of this field.

See also VisualizeTheWiki.


I'm fiddling with this stuff at the moment. In JavaLanguage, the artifacts are

  1. Packages
  2. Classes
    • special case is interface
  3. Methods
    • special case is constructors
  4. Variables

The types of relationships are
  1. Containment
    1. Packages contain subpackages
    2. Packages contain classes
    3. classes contain inner classes
    4. classes contain methods
    5. classes contain variables
  2. Inheritance
    1. classes extend/implement classes
    2. methods override methods
    3. variables hide variables
  3. Dependency
    1. variables are of type class
    2. methods return type class
    3. methods take parameters of type class
    4. methods invoke methods
      • special case is invoking initializer methods
    5. methods refer to variables
    6. methods have stack variables of type class

And that's about it, for Java. The different types of relationships are part of the problem of why visualization is awkward; they each form an important hierarchy often orthogonal to the others. You need six-dimensional space to lay it out properly.

Either that or a way to filter what you see at any given time. One of the reasons why I like TableOrientedProgramming is that one's view of information can depend on ad-hoc queries rather than the original layout that the original programmer had in mind. Views of tables help me "visualize" patterns because I can control what they are showing me at any given time. I don't know if there is any analogous VisualQueryLanguage? though.


EditText of this page (last edited January 17, 2006) or FindPage with title or text search

Meatball