CS-GY 6313: Information Visualization
1.0.0
1.0.0
  • Introduction
  • Defining Information Visualization
  • Why Use Visualization?
  • Popular Visualization Sources and Tools
  • Why Use a Graphical Representation?
  • The Problem with Statistics
  • Why Use a Computer to Visualize Data?
  • Why Use Interaction?
  • Assessing the Quality of a Visualization
  • Data Abstraction
    • Types of Datasets
    • Types of Attributes
    • Attribute Semantics
    • Data Abstraction to Visualization
    • Data Profiling
  • Fundamental Graphs
    • Alternate Representations
    • Visualizing More Than 2 Attributes
    • Faceting
  • Data Transformation
  • Graphical Components and Mapping Strategies
    • Marks
    • Channels
    • Graphical Decoding
    • Evaluating the Quality of a Visual Encoding
    • Contextual Components
  • Color
    • Color Perception
    • Color Specification
    • Color Use
      • Quantitative Color Scales
      • Categorical Color Scales
      • Diverging Color Scales
      • Highlighting
    • Perceptual Issues with Color
  • Geo Visualization
    • When to Use Maps
    • Geo Visualization Techniques
      • Dot Maps
      • Heat Maps
      • Hexbin Maps
      • Choropleth Maps
      • Graduated Symbol Maps
      • Summary of Map Types
    • Issues with Maps
    • Visualizing Geo Data with Time
  • Visualizing Temporal Data
    • Time Structures
    • Visualization Methods
    • Increasing Visual Scalability
    • Beyond Using Position
  • Networks and Trees
    • Visualizing Network Data
      • Node-Link Diagrams
        • Clutter Reduction
      • Matrices
    • Visualizing Trees
      • Node-Link Diagrams
      • Special Kinds of Trees
      • Space-Partitioning and Containment
        • Sunburst and Icicle Plots
  • Interaction and Multiple Views
    • Single and Multiple View Methods
      • Single View Methods
      • Multiple (Linked) Views Methods
    • Common Scenarios
  • Exploring Data
  • Animation, Pacing and Exposition
Powered by GitBook
On this page

Was this helpful?

  1. Data Abstraction

Types of Attributes

Knowledge about the types of the attributes can provide guidance in selecting graphical encoding strategies.

For any type of dataset, there are 3 types of attributes:

  • Categorical: two or more categories but no intrinsic ordering, ex. hair color: blonde, brunette, black

  • Ordinal: two or more categories with intrinsic ordering, but distance between values is unknown (therefore, no arithmetic operations can be performed on the values), ex. economic status: low, medium, high

  • Quantitative: the values represent a measured quantity, and the distance between them is known/can be computed (therefore, arithmetic operations can be performed on the values), ex. height, weight

Note: Just because the values are numeric, it doesn't mean that the attribute is quantitative. For example, 'order id' will have numeric values, but it is ordinal (or even categorical, if the ordering is unknown), but not quantitative, because the values do not represent a measured quantity.

PreviousTypes of DatasetsNextAttribute Semantics

Last updated 5 years ago

Was this helpful?