VIII. Dimensionality Reduction

image.png

Filter

A straightforward way to reduce the number of elements shown.

<aside> ⚠️

Problems:

Solution: A dynamic querying system can be implemented where the visual encoding and interaction are tightly coupled

</aside>

Statistical Aggregation

A group of elements is represented by a new derived element that stands in for the entire group. A very simple attributes is computing an average, the four other basic aggreration are minimum, maximum, count and sum.

<aside> ⚠️

Problems:

Solution: Interactive aggregation allows users to adjust the level of aggregation dynamically, helping to visualize data at different granularities while avoiding loss of signal.

</aside>

Idiom: Histograms - static item aggregation

image.png

Idiom Histograms
What Data: Table
Derived table = New Table: Keys are bins, value are counts
Why: Task Find distributions

Idiom: Box Plots - static item aggregation

image.png

Idiom Histograms
What Data: Table
Derived table: 5 quantitative attributes mapped

Idiom: Violin Plots

image.png

Combine the features of box plots and probability density functions, showing both the summary statistics and the shape of the distribution.

Idiom: Density plots

Idiom: Continuous scatterplots

image.png

2D density can be represented with the continuous scatterplot idiom, that is a density map represented with color coding derived from a scatterplot.

Clustering