-->

Monday, October 30, 2017

In information visualization and computing, treemapping is a method for displaying hierarchical data using nested figures, usually rectangles.

Main idea



source : www.cs.umd.edu

Treemaps display hierarchical (tree-structured) data as a set of nested rectangles. Each branch of the tree is given a rectangle, which is then tiled with smaller rectangles representing sub-branches. A leaf node's rectangle has an area proportional to a specified dimension of the data. Often the leaf nodes are colored to show a separate dimension of the data.

When the color and size dimensions are correlated in some way with the tree structure, one can often easily see patterns that would be difficult to spot in other ways, such as if a certain color is particularly relevant. A second advantage of treemaps is that, by construction, they make efficient use of space. As a result, they can legibly display thousands of items on the screen simultaneously.

Tiling algorithms



source : visualign.wordpress.com

To create a treemap, one must define a tiling algorithm, that is, a way to divide a region into sub-regions of specified areas. Ideally, a treemap algorithm would create regions that satisfy the following criteria:

  1. A small aspect ratio - ideally close to one. Regions with a small aspect ratio (i.e, fat objects) are easier to perceive.
  2. Preserve some sense of the ordering in the input data.
  3. Change to reflect changes in the underlying data.

Unfortunately, these properties have an inverse relationship. As the aspect ratio is optimized, the order of placement becomes less predictable. As the order becomes more stable, the aspect ratio is degraded.

Rectangular treemaps



source : www.juiceanalytics.com

To date, six primary rectangular treemap algorithms have been developed:

Convex treemaps



source : slideplayer.com

Rectangular treemaps have the disadvantage that their aspect ratio might be arbitrarily high in the worst case. As a simple example, if the tree root has only two children, one with weight 1 / n {\displaystyle 1/n} and one with weight 1 âˆ' 1 / n {\displaystyle 1-1/n} , then the aspect ratio of the smaller child will be n {\displaystyle n} , which can be arbitrarily high. To cope with this problem, several algorithms have been proposed that use regions that are general convex polygons, not necessarily rectangular.

Convex treemaps were developed in several steps, each step improved the upper bound on the aspect ratio. The bounds are given as a function of n {\displaystyle n} - the total number of nodes in the tree, and d {\displaystyle d} - the total depth of the tree.

1. Onak and Sidiropoulos proved an upper bound of O ( ( d log ⁡ n ) 17 ) {\displaystyle O((d\log {n})^{17})} .

2. De-Berg and Onak and Sidiropoulos improve the upper bound to O ( d + log ⁡ n ) {\displaystyle O(d+\log {n})} , and prove a lower bound of Ω ( d ) {\displaystyle \Omega (d)} .

3. De-Berg and Speckmann and van-der-Weele improve the upper bound to O ( d ) {\displaystyle O(d)} , matching the theoretical lower bound.

  • For the special case where the depth is 1, they present an algorithm that uses only four classes of 45-degree-polygons (rectangles, right-angled triangles, right-angled trapezoids and 45-degree pentagons), and guarantees an aspect ratio of at most 34/7.

The latter two algorithms operate in two steps (greatly simplified for clarity):

  • A. The original tree is converted to a binary tree: each node with more than two children is replaced by a sub-tree in which each node has exactly two children.
  • B. Each region representing a node (starting from the root) is divided to two, using a line that keeps the angles between edges as large as possible. It is possible to prove that, if all edges of a convex polygon are separated by an angle of at least Ï• {\displaystyle \phi } , then its aspect ratio is O ( 1 / Ï• ) {\displaystyle O(1/\phi )} . It is possible to ensure that, in a tree of depth d {\displaystyle d} , the angle is divided by a factor of at most d {\displaystyle d} , hence the aspect ratio guarantee.

Orthoconvex treemaps

In convex treemaps, the aspect ratio cannot be constant - it grows with the depth of the tree. To attain a constant aspect-ratio, Orthoconvex treemaps can be used. There, all regions are orthoconvex rectilinear polygons with aspect ratio at most 64; and the leaves are either rectangles with aspect ratio at most 8, or L-shapes or S-shapes with aspect ratio at most 32.

  • For the special case where the depth is 1, they present an algorithm that uses only rectangles and L-shapes, and the aspect ratio is at most 2 + 2 / 3 ≈ 3.15 {\displaystyle 2+2/{\sqrt {3}}\approx 3.15} ; the internal nodes use only rectangles with aspect ratio at most 1 + 3 ≈ 2.73 {\displaystyle 1+{\sqrt {3}}\approx 2.73} .

Other treemaps



source : www.cs.umd.edu

Voronoi Treemaps - based on voronoi diagram calculations. The algorithm is iterative and does not give any upper bound on the aspect ratio.

Jigsaw Treemaps - based on the geometry of space-filling curves. They assume that the weights are integers and that their sum is a square number. The regions of the map are rectilinear polygons and highly non-ortho-convex. Their aspect ratio is guaranteed to be at most 4.

GosperMaps - based on the geometry of Gosper curves. It is ordered and stable, but has a very high Aspect ratio.

History



source : www.cs.umd.edu

Area-based visualizations have existed for decades. For example, mosaic plots (also known as Marimekko diagrams) use rectangular tilings to show joint distributions (i.e., most commonly they are essentially stacked column plots where the columns are of different widths). The main distinguishing feature of a treemap, however, is the recursive construction that allows it to be extended to hierarchical data with any number of levels. This idea was invented by professor Ben Shneiderman at the University of Maryland Human â€" Computer Interaction Lab in the early 1990s. Shneiderman and his collaborators then deepened the idea by introducing a variety of interactive techniques for filtering and adjusting treemaps.

These early treemaps all used the simple "slice-and-dice" tiling algorithm. Despite many desirable properties (it is stable, preserves ordering, and is easy to implement), the slice-and-dice method often produces tilings with many long, skinny rectangles. In 1994 Hascoet & Beaudouin-Lafon invented a "squarifying" algorithm, later popularized by Jarke van Wijk, that created tilings whose rectangles were closer to square. In 1999 Martin Wattenberg used a variation of the "squarifying" algorithm that he called "pivot and slice" to create the first Web-based treemap, the SmartMoney Map of the Market, which displayed data on hundreds of companies in the U.S. stock market. Following its launch, treemaps enjoyed a surge of interest, especially in financial contexts.

A third wave of treemap innovation came around 2004, after Marcos Weskamp created the Newsmap, a treemap that displayed news headlines. This example of a non-analytical treemap inspired many imitators, and introduced treemaps to a new, broad audience. In recent years, treemaps have made their way into the mainstream media, including usage by the New York Times. The Treemap Art Project produced 12 framed images for the National Academies (United States), shown the Every AlgoRiThm has ART in It exhibit in Washington, DC and another set for the collection of Museum of Modern Art in New York.

See also



source : qlikdork.com

  • Disk space analyzer
  • Information visualization
  • List of countries by economic complexity, which includes a list of Products Exports Treemaps.
  • Marimekko Chart, a similar concept with one level of explicit hierarchy.

References



source : www.cs.umd.edu

External links



  • Treemap Art Project produced exhibit for the National Academies in Washington, DC
  • An article by Ben Shneiderman on the use of treemaps (as a guest on www.perceptualedge.com [1])
  • Comprehensive survey and bibliography of Tree Visualization techniques
  • Generalized treemaps
  • History of Treemaps by Ben Shneiderman.
  • Hypermedia exploration with interactive dynamic maps Paper by Zizi and Beaudouin-Lafon introducing the squarified treemap layout algorithm (named "improved treemap layout" at the time).
  • Indiana University description
  • Live interactive treemap based on crowd-sourced discounted deals from Flytail Group
  • Treemap sample in English from The Hive Group
  • Several treemap examples made with Macrofocus TreeMap
  • Visualizations using dynamic treemaps and treemapping software by drasticdata
  • Product Exports Treemaps developed by the Harvard-MIT Observartory of Economic Complexity
  • newsmap.jp is a treemap of Google news stories


 
Sponsored Links