Lecture 9 Flashcards

1
Q

Relationships Among Data

A

Sometimes, while working on data we find that a relationship exists between different data elements.

These relationships can be hierarchy, network etc.
To represent these kinds of relationships, we use tree maps, heatmaps, dendrograms, network diagrams etc.

These relationships can be simple or complex, unidirectional or bi-directional, weighted or non-weighted, certain or uncertain

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Displaying Hierarchical Structure

A

Trees or hierarchies are one of the most common structures to hold relational information.

For this reason, many visualization techniques have been developed for display of such information.

These visualization techniques can be broadly divided into two categories:

Space-Filling Methods
Non-Space-Filing Methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Space Filling Method

A

As the name implies, it makes maximal use of the display space.

This is accomplished by using juxta-positioning to imply relations, as opposed to conveying relations with edges joining data objects.

The two most common approaches to generate space-filling hierarchies are :

Rectangular Layout
Radial Layout

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Rectangular Layout

A

The most popular space-filling rectangular layout is the treemap.
These are the alternative representation of the Venn diagrams.

In the basic treemap, a rectangle is recursively divided into slices, alternating horizontal and vertical slicing, based on the populations of the subtrees at a given level.
Many variants of treemaps are available today like:

Squarified treemaps – to reduce the occurrence of long, thin rectangles
Nested treemaps – to emphasize the hierarchical structure

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Radial Layout

A

Radial space-filling hierarchy visualization have the root of the hierarchy in the center of the display and use nested rings to convey the layers of the hierarchy.

Each ring is divided based on the number of nodes at that level.

The number of terminal node in the subtree determine the amount of screen space that will be allocated to it.

However, unlike treemaps, which assign most screen space to convey terminal nodes ,radial techniques also show intermediate node.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Non Space Filling Methods

A

Most common way to represent tree is a node-link diagram.
Have two factors:
Fan-out degree – Number of siblings a parent node can have.
Depth – the furthest node from the root

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Network Diagram

A

Network diagrams are made up of two components: Node and Line.

Node is also known as vertex, site or actor of the diagram.

Link is known as edge, bond or tie of the network diagram.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Network Diagram Properties

A

The number of immediate connections of a node provides the degree property of that node.
In the case of directed networks, degrees are designated as
“in degree”—the number of links destinedtothe node, and
“out degree”—the number of connections originated at the node, orfromit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Path and Connectivity

A

In order to understand distances in a network, scientists developed the concept of a path that is any sequence of nodes given that each consecutive pair of nodes is connected by a link.

The path length provides the number of links in the route between a pair of nodes.

When there are no paths between a pair of nodes, it means that a network is not connected and it is divided into subgroups, called “components” in network science.

Other metrics were devised for questions related to distances; the shortest path between two nodes and the network diameter are two examples.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Network Layouts

A
The common types of network layouts are:
Linear
Force Directed
Circular
Linear
Matrix
Radial Community Structure
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Linear

A

Nodes are organized linearly and the links are usually arcs connecting nodes.
Con:It’s hard to identify clusters and is only feasible for small datasets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Force Directed

A

There are many algorithms that use an iterative process to locate nodes according to physical forces.
They are centred on a single node.
Con:There are too many node occlusions and link crossings in dense areas.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Circular

A

Nodes are organized around the circumference and usually grouped by categories. Links cross the circle and are usually bundled so as to simplify the crossings.
Con:It’s hard to identify clusters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Polar or Radial

A

Nodes are organized around a central node, with their position related to the number of hops it takes to reach it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly