Data Visualization (DSC 530/CIS )

Size: px
Start display at page:

Download "Data Visualization (DSC 530/CIS )"

Transcription

1 Data Visualization (DSC 530/CIS ) Data Dr. David Koop

2 HTML and CSS HTML: Tags define the boundaries of the structures of the content <em>this is <strong>cool</strong>. What about <u><strong>this?</strong></u></em> HTML id and class attributes identify specific elements CSS: Specifies the style of the content according to selectors em { color: green; } #main-header { color: red; }.important { color: blue; } 2

3 Scalable Vector Graphics (SVG) Vector graphics vs. Raster graphics Raster Vector Drawing primitives: - Lines, Circles, Rects, Ellipses, Text, Polylines, Paths - Work by specifying information about how to draw the shape - Lots more: see MDN Documentation Ordering/Stacking: - SVG Elements are drawn in the order they are specified 3

4 SVG Example <svg id="mysvg" width="300" height="600"> <circle cx="50" cy="50" r="50"/> <rect class="lego" x="150" y="150" width="50" height="20"/> <path id="triangle" d="m L L Z"/> </svg> circle { fill: green; stroke: black; stroke-width: 4px; }.lego { fill: red; stroke: blue; stroke-width: 2px; } #triangle { fill: none; stroke: orange; stroke-width:3px; } 4

5 JavaScript in one slide Interpreted and Dynamically-typed Programming Language Statements end with semi-colons, normal blocking with brackets Variables: var a = 0; Operators: +, -, *, /, [ ] Control Statements: if (<expr>){ } else { }, switch Loops: for, while, do-while Arrays: var a = [1,2,3]; a[99] = 100; console.log(a.length); Functions: function myfunction(a,b) { return a + b; } Objects: var obj; obj.x = 3; obj.y = 5; - Prototypes for instance functions Comments are /* Comment */ or // Single-line Comment 5

6 Important JavaScript Concepts Functional Programming: you can pass functions to functions - Array map/filter/reduce/foreach - ctemps=ftemps.map(function(d){return (d-32)*5.0/9.0;}); Closures: functions keep track of their environments - function makeadder(x) { return function(y) { return x + y; }; } Objects and Properties: - var student = {name: "John Smith", id: " ", class: "Senior", hometown: "Fall River, MA, USA"}; - Properties can be accessed via dot or bracket notation - Objects can also function as associative arrays Function chaining: succinct, avoids intermediate variables in code 6

7 Manipulating the DOM with JavaScript Key global variables: window: Global namespace document: Current document document.getelementbyid( ): Get an element via its id HTML is parsed into an in-memory document (DOM) Can access and modify information stored in the DOM Can add information to the DOM with JavaScript - document.body.appendchild(document.createtextnode("i added text to your webpage.")); 7

8 Example: JavaScript and the DOM MKqbjm Start with no real content, just divs: <div id="firstsection"></div> <div id="secondsection"></div> <div id="finalsection"></div> Programmatically add content: - document.createelement - document.getelementbyid - document.createtextnode - Element.appendChild Introduction Once upon a time... Patriots 8

9 Creating SVG figures via JavaScript SVG elements can be accessed and modified just like HTML elements Create a new SVG programmatically and add it into a page: - var divelt = document.getelementbyid("chart"); var svg = document.createelementns( " "svg"); divelt.appendchild(svg); You can assign attributes: - svg.setattribute("height", 400); svg.setattribute("width", 600); svgcircle.setattribute("r", 50); 9

10 Example: UK Driving Fatalities Start: makeelt function creates an SVG element and can additionally add it to the the DOM 30k 0 Possible Solution: Improvements? 10

11 Interactive Data Visualization by S. Murray Free version available on the Web books/ Representing and drawing with data Chapter 3 has a nice overview of Web technologies with examples Great resource for D3 as well 11

12 Assignment 1 Part 3: New Bedford Average Temperature by Month (2015) ~dkoop/dsc530/assignment1.html HTML, CSS, SVG, and JavaScript Part 3 will likely take significantly more time than the other parts! Start now Turn in a1.html (and a1.css, a1.js) via mycourses Due Friday, February 11:59pm Late Policy 12

13 Computer-based visualization systems provide visual representations of datasets designed to help people carry out tasks more effectively. T. Munzner 13

14 Data What is this data? Semantics: real-world meaning of the data Type: structural or mathematical interpretation Both often require metadata - Sometimes we can infer some of this information - Line between data and metadata isn t always clear 14

15 Data 15

16 Data Types Items - An item is an individual discrete entity - e.g. row in a table, node in a network Attributes - An attribute is some specific property that can be measured, observed, or logged - a.k.a. variable, (data) dimension 16

17 Items & Attributes attribute Field item 22 17

18 Data Types Nodes - Synonym for item but in the context of networks (graphs) Links - A link is a relation between two items - e.g. social network friends, computer network links 18

19 Items & Links Item Links [Bostock, 2011] 19

20 Data Types Positions: - A position is a location in space (usually 2D or 3D) - May be subject to projections - e.g. cities on a map, a sampled region in an CT scan Grids: - A grid specifies how data is sampled both geometrically and topologically - e.g. how CT scan data is stored 20

21 Positions and Grids Position Grid 21

22 Dataset Types Dataset Types Tables Networks Fields (Continuous) Geometry (Spatial) Attributes (columns) Grid of positions Items (rows) Cell containing value Link Node (item) Cell Attributes (columns) Position Multidimensional Table Trees Value in cell Value in cell [Munzner (ill. Maguire), 2014] 22

23 Tables attribute Field item cell 23

24 Table Visualizations economy (mpg) cylinders displacement (cc) power (hp) power (hp) weight (lb) weight (lb) 5,000 5,000 4,500 4,500 4,000 4, mph (s) 0-60 mph (s) year 82 year ,500 3,500 3,000 3,000 2,500 2, ,000 2, [M. Bostock, 2011] 24

25 Networks Why networks instead of graphs? Tables can represent networks - Many-many relationships - Also can be stored as specific graph databases or files 25

26 Networks Danny Holten & Jarke J. van Wijk / Force-Directed [Holten & van Wijk, 2009] 26

27 Networks not bundled and bundled using (b) FDEB with inverse-linear model, [Holten & van Wijk, 2009] 27

28 Fields Scalar Fields Vector Fields Tensor Fields Each point in space has an associated... 28

29 Fields Scalar Fields Vector Fields Tensor Fields (Order-0 Tensor Fields) (Order-1 Tensor Fields) (Order-2+) Each point in space has an associated s 0 4 v v 1 v Scalar Vector Tensor

30 Fields Difference between continuous and discrete values Examples: temperature, pressure, density Grids necessary to sample continuous data: uniform rectilinear structured unstructured [Weiskopf, Machiraju, Möller] Interpolation: how to show values between the sampled points in ways that do not mislead 29

31 Spatial Data Example: MRI [slide via Levine, 2014] 30

32 Scivis and Infovis Two subfields of visualization Scivis deals with data where the spatial position is given with data - Usually continuous data - Often displaying physical phenonema - Techniques like isosurfacing, volume rendering, vector field vis In Infovis, the data has no set spatial representation, designer chooses how to visually represent data 31

33 Sets & Lists [Daniels, 32

34 Attribute Types Attribute Types Categorical Ordered Ordinal Quantitative Ordering Direction Sequential Diverging Cyclic [Munzner (ill. Maguire), 2014] 33

35 Categorial, Ordinal, and Quantitative 1 = Quantitative 23 2 ordinal = Nominal 3 = Ordinal quantitative categorical 34

36 Categorial, Ordinal, and Quantitative 1 = Quantitative 24 2 ordinal = Nominal 3 = Ordinal quantitative categorical 35

37 Sequential and Diverging Data Sequential: homogenous range from a minimum to a maximum - Examples: Land elevations, ocean depths Diverging: can be deconstructed into two sequences pointing in opposite directions - Has a zero point (not necessary 0) - Example: Map of both land elevation and ocean depth [Rogowitz & Treinish, 1998] 36

38 Cyclic Data [Sunlight intensity, Weber et al., 2001] 37

39 Semantics The type of data does not tell us what the data means or how it should be interpreted Tables have keys/values, fields have independent/dependent vars Flat Tables Multidimensional Fields [Munzner (ill. Maguire), 2014] 38

40 Data Model vs. Conceptual Model Data Model: raw data that has a specific data type (e.g. floats): - Temperature Example: [32.5, 54.0, -17.3] (floats) Conceptual Model: how we think about the data - Includes semantics, reasoning - Temperature Example: Quantitative: [32.50, 54.00, ] [via A. Lex, 2015] 39

41 Data Model vs. Conceptual Model Data Model: raw data that has a specific data type (e.g. floats): - Temperature Example: [32.5, 54.0, -17.3] (floats) Conceptual Model: how we think about the data - Includes semantics, reasoning - Temperature Example: Quantitative: [32.50, 54.00, ] Ordered: [warm, hot, cold] [via A. Lex, 2015] 39

42 Data Model vs. Conceptual Model Data Model: raw data that has a specific data type (e.g. floats): - Temperature Example: [32.5, 54.0, -17.3] (floats) Conceptual Model: how we think about the data - Includes semantics, reasoning - Temperature Example: Quantitative: [32.50, 54.00, ] Ordered: [warm, hot, cold] Categorical: [not burned, burned, not burned] [via A. Lex, 2015] 39

43 Assignment 1 Part 3: New Bedford Average Temperature by Month (2015) ~dkoop/dsc530/assignment1.html HTML, CSS, SVG, and JavaScript Part 3 will likely take significantly more time than the other parts! Start now Turn in a1.html (and possibly a1.css, a1.js) via mycourses Due Friday, February 11:59pm Late Policy 40

44 Tasks Why? Actions Targets Analyze All Data Consume Trends Outliers Features Discover Present Enjoy Produce Annotate Record Derive tag Attributes One Many Distribution Dependency Correlation Similarity Search Extremes Target known Target unknown Location known Location unknown Lookup Locate Browse Explore Network Data Topology Query [Munzner (ill. Maguire), 2014] Identify Compare Summarize Paths Spatial Data Shape What? Why? How? 41

45 Actions: Analyze Consume Exploration Explanation Analyze Consume Discover Present Enjoy Enjoyment Produce Annotation Record Derivation Leads to new directions/ideas Produce Annotate Record Derive tag [Munzner (ill. Maguire), 2014] 42

46 Actions: Search and Query Search based on what a user knows Search - Target Target known Target unknown - Location Location known Lookup Browse Query depends on what data matters - One - Some (Often Two) - All Location unknown Query Locate Explore Identify Compare Summarize [Munzner (ill. Maguire), 2014] 43

47 Targets ALL DATA NETWORK DATA Trends Outliers Features Topology Paths ATTRIBUTES One Many Distribution Dependency Correlation Similarity SPATIAL DATA Shape Extremes [Munzner (ill. Maguire), 2014] 44

48 How do we do visualization? Encode How? Encode Manipulate Facet Manipulate Facet Reduce Arrange Express Separate Map from categorical and ordered attributes Change Juxtapose Filter Order Align Color Hue Saturation Luminance Select Partition Aggregate Size, Angle, Curvature,... Use Navigate Superimpose Embed Shape Motion Direction, Rate, Frequency,... [Munzner (ill. Maguire), 2014] 45

49 Analysis Example SpaceTree TreeJuxtaposer [SpaceTree: Supporting Exploration in Large Node Link Tree, Design Evolution and Empirical Evaluation. Grosjean, Plaisant, and Bederson. Proc. InfoVis 2002, p ] [TreeJuxtaposer: Scalable Tree Comparison Using Focus +Context With Guaranteed Visibility. ACM Trans. on Graphics (Proc. SIGGRAPH) 22: , 2003.] What? Tree Why? Actions Present Locate Identify How? SpaceTree Encode Navigate Select Filter Aggregate Targets Path between two nodes TreeJuxtaposer Encode Navigate Select Arrange [Munzner (ill. Maguire), 2014] 46

50 Analysis Example SpaceTree TreeJuxtaposer [SpaceTree: Supporting Exploration in Large Node Link Tree, Design Evolution and Empirical Evaluation. Grosjean, Plaisant, and Bederson. Proc. InfoVis 2002, p ] [TreeJuxtaposer: Scalable Tree Comparison Using Focus +Context With Guaranteed Visibility. ACM Trans. on Graphics (Proc. SIGGRAPH) 22: , 2003.] What? Tree Why? Actions Present Locate Identify How? SpaceTree Encode Navigate Select Filter Aggregate Targets Path between two nodes TreeJuxtaposer Encode Navigate Select Arrange [Munzner (ill. Maguire), 2014] 46

51 Analysis Example: Derivation Strahler number centrality metric for trees/networks derived quantitative attribute draw top 5K of 500K for good skeleton [Using Strahler numbers for real time visual exploration of huge graphs. Auber. Proc. Intl. Conf. Computer Vision and Graphics, pp , 2002.] Task 1 Task 2 In Tree Out Quantitative attribute on nodes In Tree In Quantitative attribute on nodes Out Filtered Tree Removed unimportant parts What? In Tree Out Quantitative attribute on nodes Why? Derive What? In Tree In Quantitative attribute on nodes Out Filtered Tree Why? How? Summarize Reduce Topology Filter [Munzner (ill. Maguire), 2014] 47

Data Visualization (CIS/DSC 468)

Data Visualization (CIS/DSC 468) Data Visualization (CIS/DSC 468) Data & Tasks Dr. David Koop Programmatic SVG Example Draw a horizontal bar chart - var a = [6, 2, 6, 10, 7, 18, 0, 17, 20, 6]; Steps: - Programmatically create SVG - Create

More information

Data Visualization (CIS/DSC 468)

Data Visualization (CIS/DSC 468) Data Visualization (CIS/DSC 468) Data Dr. David Koop SVG Example http://codepen.io/dakoop/pen/ yexvxb

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 602-01) JavaScript Dr. David Koop Quiz Given the following HTML, what is the selector for the first div? the super Bowl

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 602-02) Web Programming Dr. David Koop 2 What languages do we use on the Web? 3 Languages of the Web HTML CSS SVG JavaScript - Versions of Javascript: ES6, ES2015, ES2017

More information

Data Visualization (CIS 468)

Data Visualization (CIS 468) Data Visualization (CIS 468) Web Programming Dr. David Koop Languages of the Web HTML CSS SVG JavaScript - Versions of Javascript: ES6/ES2015, ES2017 - Specific frameworks: react, jquery, bootstrap, D3

More information

Scalable Data Analysis (CIS )

Scalable Data Analysis (CIS ) Scalable Data Analysis (CIS 602-01) Introduction Dr. David Koop NYC Taxi Data [Analyzing 1.1 Billion NYC Taxi and Uber Trips, with a Vengeance, T. W. Schneider] 2 What are your questions about this data?

More information

Visualization Analysis & Design Full-Day Tutorial Session 1

Visualization Analysis & Design Full-Day Tutorial Session 1 Visualization Analysis & Design Full-Day Tutorial Session 1 Tamara Munzner Department of Computer Science University of British Columbia Sanger Institute / European Bioinformatics Institute June 2014,

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 602-01) HTML, CSS, & SVG Dr. David Koop Data Visualization What is it? How does it differ from computer graphics? What types of data can we visualize? What tasks can we

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 60201) CSS, SVG, and JavaScript Dr. David Koop Definition of Visualization Computerbased visualization systems provide visual representations of datasets designed to help

More information

Visualization Analysis & Design

Visualization Analysis & Design Visualization Analysis & Design Tamara Munzner Department of Computer Science University of British Columbia UBC STAT 545A Guest Lecture October 20 2016, Vancouver BC http://www.cs.ubc.ca/~tmm/talks.html#vad16bryan

More information

Data Visualization (CIS 468)

Data Visualization (CIS 468) Data Visualization (CIS 468) D3 + Marks & Channels Dr. David Koop Tasks Actions Targets Analyze All Data Consume Trends Outliers Features Discover Present Enjoy Produce Annotate Record Derive tag Attributes

More information

3.Data Abstraction. Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai 1 / 26

3.Data Abstraction. Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai   1 / 26 3.Data Abstraction Prof. Tulasi Prasad Sariki SCSE, VIT, Chennai www.learnersdesk.weebly.com 1 / 26 Outline What can be visualized? Why Do Data Semantics and Types Matter? Data Types Items, Attributes,

More information

DSC 201: Data Analysis & Visualization

DSC 201: Data Analysis & Visualization DSC 201: Data Analysis & Visualization Visualization Design Dr. David Koop Definition Computer-based visualization systems provide visual representations of datasets designed to help people carry out tasks

More information

DSC 201: Data Analysis & Visualization

DSC 201: Data Analysis & Visualization DSC 201: Data Analysis & Visualization Exploratory Data Analysis Dr. David Koop What is Exploratory Data Analysis? "Detective work" to summarize and explore datasets Includes: - Data acquisition and input

More information

Lecture 3: Data Principles

Lecture 3: Data Principles Lecture 3: Data Principles Information Visualization CPSC 533C, Fall 2011 Tamara Munzner UBC Computer Science Mon, 19 September 2011 1 / 33 Papers Covered Chapter 2: Data Principles Polaris: A System for

More information

DATA ABSTRACTION & INTRO TO TABLEAU

DATA ABSTRACTION & INTRO TO TABLEAU cs6630 September 4 2014 DATA ABSTRACTION & INTRO TO TABLEAU Miriah Meyer University of Utah 1 administrivia... 2 - design critiques due tonight - first assignment out today - there *might* be 3 seats available

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 60-01) Scalar Visualization Dr. David Koop Online JavaScript Resources http://learnjsdata.com/ Good coverage of data wrangling using JavaScript Fields in Visualization Scalar

More information

Data+Dataset Types/Semantics Tasks

Data+Dataset Types/Semantics Tasks Data+Dataset Types/Semantics Tasks Visualization Michael Sedlmair Reading Munzner, Visualization Analysis and Design : Chapter 2+3 (Why+What+How) Shneiderman, The Eyes Have It: A Task by Data Type Taxonomy

More information

CP SC 8810 Data Visualization. Joshua Levine

CP SC 8810 Data Visualization. Joshua Levine CP SC 8810 Data Visualization Joshua Levine levinej@clemson.edu Lecture 05 Visual Encoding Sept. 9, 2014 Agenda Programming Lab 01 Questions? Continuing from Lec04 Attribute Types no implicit ordering

More information

Week 6: Networks, Stories, Vis in the Newsroom

Week 6: Networks, Stories, Vis in the Newsroom Week 6: Networks, Stories, Vis in the Newsroom Tamara Munzner Department of Computer Science University of British Columbia JRNL 520H, Special Topics in Contemporary Journalism: Data Visualization Week

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 60-0) Isosurfaces & Volume Rendering Dr. David Koop Fields & Grids Fields: - Values come from a continuous domain, infinitely many values - Sampled at certain positions

More information

Data Visualization Pitfalls to Avoid

Data Visualization Pitfalls to Avoid Data Visualization Pitfalls to Avoid Tamara Munzner Department of Computer Science University of British Columbia CBR Arts Meets Science, UBC Centre for Blood Research Mar 23 2017, Vancouver BC http://www.cs.ubc.ca/~tmm/talks.html#cbr17

More information

Data Representation in Visualisation

Data Representation in Visualisation Data Representation in Visualisation Visualisation Lecture 4 Taku Komura Institute for Perception, Action & Behaviour School of Informatics Taku Komura Data Representation 1 Data Representation We have

More information

CIS 467/602-01: Data Visualization

CIS 467/602-01: Data Visualization CIS 467/60-01: Data Visualization Isosurfacing and Volume Rendering Dr. David Koop Fields and Grids Fields: values come from a continuous domain, infinitely many values - Sampled at certain positions to

More information

DSC 201: Data Analysis & Visualization

DSC 201: Data Analysis & Visualization DSC 201: Data Analysis & Visualization Python and Notebooks Dr. David Koop Computer-based visualization systems provide visual representations of datasets designed to help people carry out tasks more effectively.

More information

Lecture 13: Graphs and Trees

Lecture 13: Graphs and Trees Lecture 13: Graphs and Trees Information Visualization CPSC 533C, Fall 2006 Tamara Munzner UBC Computer Science 24 October 2006 Readings Covered Graph Visualisation in Information Visualisation: a Survey.

More information

DSC 201: Data Analysis & Visualization

DSC 201: Data Analysis & Visualization DSC 201: Data Analysis & Visualization Visualization Tools Dr. David Koop Visualization for Exploration 2 MTA Fare Data Exploration 3 MTA Fare Data Exploration 4 MTA Fare Data Exploration 5 MTA Fare Data

More information

Week 4: Facet. Tamara Munzner Department of Computer Science University of British Columbia

Week 4: Facet. Tamara Munzner Department of Computer Science University of British Columbia Week 4: Facet Tamara Munzner Department of Computer Science University of British Columbia JRNL 520M, Special Topics in Contemporary Journalism: Visualization for Journalists Week 4: 6 October 2015 http://www.cs.ubc.ca/~tmm/courses/journ15

More information

Visualization Analysis & Design

Visualization Analysis & Design Visualization Analysis & Design Tamara Munzner Department of Computer Science University of British Columbia InformationPlus 2016 Keynote June 16 2016, Vancouver BC http://www.cs.ubc.ca/~tmm/talks.html#vad16infoplus

More information

Data Visualization (CIS/DSC 468)

Data Visualization (CIS/DSC 468) Data Visualization (CIS/DSC 468) Web Programming Dr. David Koop Definition of Visualization Computer-based visualization systems provide visual representations of datasets designed to help people carry

More information

Visualization Process

Visualization Process Visualization Process Visualization Torsten Möller Agenda Overview of visualization pipelines Detail on d3 s implementation 2 Visualization Process Visualization pipeline Visualization Pipeline simulation

More information

Understanding Geospatial Data Models

Understanding Geospatial Data Models Understanding Geospatial Data Models 1 A geospatial data model is a formal means of representing spatially referenced information. It is a simplified view of physical entities and a conceptualization of

More information

Lecture overview. Visualisatie BMT. Fundamental algorithms. Visualization pipeline. Structural classification - 1. Structural classification - 2

Lecture overview. Visualisatie BMT. Fundamental algorithms. Visualization pipeline. Structural classification - 1. Structural classification - 2 Visualisatie BMT Fundamental algorithms Arjan Kok a.j.f.kok@tue.nl Lecture overview Classification of algorithms Scalar algorithms Vector algorithms Tensor algorithms Modeling algorithms 1 2 Visualization

More information

Scalar Visualization

Scalar Visualization Scalar Visualization 5-1 Motivation Visualizing scalar data is frequently encountered in science, engineering, and medicine, but also in daily life. Recalling from earlier, scalar datasets, or scalar fields,

More information

CIS 467/602-01: Data Visualization

CIS 467/602-01: Data Visualization CIS 467/602-01: Data Visualization Tables Dr. David Koop Assignment 2 http://www.cis.umassd.edu/ ~dkoop/cis467/assignment2.html Plagiarism on Assignment 1 Any questions? 2 Recap (Interaction) Important

More information

What are we working with? Data Abstractions. Week 4 Lecture A IAT 814 Lyn Bartram

What are we working with? Data Abstractions. Week 4 Lecture A IAT 814 Lyn Bartram What are we working with? Data Abstractions Week 4 Lecture A IAT 814 Lyn Bartram Munzner s What-Why-How What are we working with? DATA abstractions, statistical methods Why are we doing it? Task abstractions

More information

Data Visualization (CIS/DSC 468)

Data Visualization (CIS/DSC 468) Data Visualization (CIS/DSC 468) Marks & Channels Dr. David Koop D3 Pattern Select visual elements (d3.select, d3.selectall) Join them with data items (.data(mydata, key_function)) Using enter, update,

More information

Ch 13: Reduce Items and Attributes Ch 14: Embed: Focus+Context

Ch 13: Reduce Items and Attributes Ch 14: Embed: Focus+Context Ch 13: Reduce Items and Attributes Ch 14: Embed: Focus+Context Tamara Munzner Department of Computer Science University of British Columbia CPSC 547, Information Visualization Day 15: 28 February 2017

More information

Scientific Visualization Example exam questions with commented answers

Scientific Visualization Example exam questions with commented answers Scientific Visualization Example exam questions with commented answers The theoretical part of this course is evaluated by means of a multiple- choice exam. The questions cover the material mentioned during

More information

CIS 467/602-01: Data Visualization

CIS 467/602-01: Data Visualization CIS 467/602-01: Data Visualization Vector Field Visualization Dr. David Koop Fields Tables Networks & Trees Fields Geometry Clusters, Sets, Lists Items Items (nodes) Grids Items Items Attributes Links

More information

CIS 467/602-01: Data Visualization

CIS 467/602-01: Data Visualization CIS 467/602-01: Data Visualization Interaction Dr. David Koop Interaction Recap The view changes over time Changes can affect almost any aspect of the visualization - encoding - arrangement - ordering

More information

Spatial Data Models. Raster uses individual cells in a matrix, or grid, format to represent real world entities

Spatial Data Models. Raster uses individual cells in a matrix, or grid, format to represent real world entities Spatial Data Models Raster uses individual cells in a matrix, or grid, format to represent real world entities Vector uses coordinates to store the shape of spatial data objects David Tenenbaum GEOG 7

More information

Visual Computing. Lecture 2 Visualization, Data, and Process

Visual Computing. Lecture 2 Visualization, Data, and Process Visual Computing Lecture 2 Visualization, Data, and Process Pipeline 1 High Level Visualization Process 1. 2. 3. 4. 5. Data Modeling Data Selection Data to Visual Mappings Scene Parameter Settings (View

More information

AMCS / CS 247 Scientific Visualization Lecture 4: Data Representation, Pt. 1. Markus Hadwiger, KAUST

AMCS / CS 247 Scientific Visualization Lecture 4: Data Representation, Pt. 1. Markus Hadwiger, KAUST AMCS / CS 247 Scientific Visualization Lecture 4: Data Representation, Pt. 1 Markus Hadwiger, KAUST Reading Assignment #2 (until Sep 1) Read (required): Data Visualization book, finish Chapter 2 Data Visualization

More information

Data Visualization (CIS 468)

Data Visualization (CIS 468) Data Visualization (CIS 468) Web Programming Dr. David Koop What is Data Visualization? 2 Exploration Communication Spectrum Consecutive Starts by a Quarterback for a Single Team Exploration Confirmation

More information

CS 4460 Intro. to Information Visualization Sep. 18, 2017 John Stasko

CS 4460 Intro. to Information Visualization Sep. 18, 2017 John Stasko Multivariate Visual Representations 1 CS 4460 Intro. to Information Visualization Sep. 18, 2017 John Stasko Learning Objectives For the following visualization techniques/systems, be able to describe each

More information

Scalable Vector Graphics (SVG) vector image World Wide Web Consortium (W3C) defined with XML searched indexed scripted compressed Mozilla Firefox

Scalable Vector Graphics (SVG) vector image World Wide Web Consortium (W3C) defined with XML searched indexed scripted compressed Mozilla Firefox SVG SVG Scalable Vector Graphics (SVG) is an XML-based vector image format for twodimensional graphics with support for interactivity and animation. The SVG specification is an open standard developed

More information

InfoVis: a semiotic perspective

InfoVis: a semiotic perspective InfoVis: a semiotic perspective p based on Semiology of Graphics by J. Bertin Infovis is composed of Representation a mapping from raw data to a visible representation Presentation organizing this visible

More information

D3 Introduction. Gracie Young and Vera Lin. Slides adapted from

D3 Introduction. Gracie Young and Vera Lin. Slides adapted from D3 Introduction Gracie Young and Vera Lin Slides adapted from Maneesh Agrawala Jessica Hullman Ludwig Schubert Peter Washington Alec Glassford and Zach Maurer CS 448B: Visualization Fall 2018 Topics 1)

More information

Glyphs. Presentation Overview. What is a Glyph!? Cont. What is a Glyph!? Glyph Fundamentals. Goal of Paper. Presented by Bertrand Low

Glyphs. Presentation Overview. What is a Glyph!? Cont. What is a Glyph!? Glyph Fundamentals. Goal of Paper. Presented by Bertrand Low Presentation Overview Glyphs Presented by Bertrand Low A Taxonomy of Glyph Placement Strategies for Multidimensional Data Visualization Matthew O. Ward, Information Visualization Journal, Palmgrave,, Volume

More information

Scalable Vector Graphics commonly known as SVG is a XML based format to draw vector images. It is used to draw twodimentional vector images.

Scalable Vector Graphics commonly known as SVG is a XML based format to draw vector images. It is used to draw twodimentional vector images. About the Tutorial Scalable Vector Graphics commonly known as SVG is a XML based format to draw vector images. It is used to draw twodimentional vector images. This tutorial will teach you basics of SVG.

More information

CS-5630 / CS-6630 Visualization for Data Science The Visualization Alphabet: Marks and Channels

CS-5630 / CS-6630 Visualization for Data Science The Visualization Alphabet: Marks and Channels CS-5630 / CS-6630 Visualization for Data Science The Visualization Alphabet: Marks and Channels Alexander Lex alex@sci.utah.edu [xkcd] How can I visually represent two numbers, e.g., 4 and 8 Marks & Channels

More information

IAT 355 : Lab 01. Web Basics

IAT 355 : Lab 01. Web Basics IAT 355 : Lab 01 Web Basics Overview HTML CSS Javascript HTML & Graphics HTML - the language for the content of a webpage a Web Page put css rules here

More information

Visualization Stages, Sensory vs. Arbitrary symbols, Data Characteristics, Visualization Goals. Trajectory Reminder

Visualization Stages, Sensory vs. Arbitrary symbols, Data Characteristics, Visualization Goals. Trajectory Reminder Visualization Stages, Sensory vs. Arbitrary symbols, Data Characteristics, Visualization Goals Russell M. Taylor II Slide 1 Trajectory Reminder Where we ve been recently Seen nm system that displays 2D-in-3D

More information

CP SC 8810 Data Visualization. Joshua Levine

CP SC 8810 Data Visualization. Joshua Levine CP SC 8810 Data Visualization Joshua Levine levinej@clemson.edu Lecture 15 Text and Sets Oct. 14, 2014 Agenda Lab 02 Grades! Lab 03 due in 1 week Lab 2 Summary Preferences on x-axis label separation 10

More information

Few s Design Guidance

Few s Design Guidance Few s Design Guidance CS 4460 Intro. to Information Visualization September 9, 2014 John Stasko Today s Agenda Stephen Few & Perceptual Edge Fall 2014 CS 4460 2 1 Stephen Few s Guidance Excellent advice

More information

Responsive Web Design (RWD)

Responsive Web Design (RWD) Responsive Web Design (RWD) Responsive Web Design: design Web pages, so that it is easy to see on a wide range of of devices phone, tablet, desktop,... Fixed vs Fluid layout Fixed: elements have fixed

More information

[Slides Extracted From] Visualization Analysis & Design Full-Day Tutorial Session 4

[Slides Extracted From] Visualization Analysis & Design Full-Day Tutorial Session 4 [Slides Extracted From] Visualization Analysis & Design Full-Day Tutorial Session 4 Tamara Munzner Department of Computer Science University of British Columbia Sanger Institute / European Bioinformatics

More information

Advanced Visualization

Advanced Visualization 320581 Advanced Visualization Prof. Lars Linsen Fall 2011 0 Introduction 0.1 Syllabus and Organization Course Website Link in CampusNet: http://www.faculty.jacobsuniversity.de/llinsen/teaching/320581.htm

More information

Scientific Visualization

Scientific Visualization Scientific Visualization Topics Motivation Color InfoVis vs. SciVis VisTrails Core Techniques Advanced Techniques 1 Check Assumptions: Why Visualize? Problem: How do you apprehend 100k tuples? when your

More information

Graphs and Networks 1

Graphs and Networks 1 Graphs and Networks 1 CS 4460 Intro. to Information Visualization November 6, 2017 John Stasko Learning Objectives Define network concepts vertex, edge, cycle, degree, direction Describe different node-link

More information

Indirect Volume Rendering

Indirect Volume Rendering Indirect Volume Rendering Visualization Torsten Möller Weiskopf/Machiraju/Möller Overview Contour tracing Marching cubes Marching tetrahedra Optimization octree-based range query Weiskopf/Machiraju/Möller

More information

Scientific Visualization

Scientific Visualization Scientific Visualization Dr. Ronald Peikert Summer 2007 Ronald Peikert SciVis 2007 - Introduction 1-1 Introduction to Scientific Visualization Ronald Peikert SciVis 2007 - Introduction 1-2 What is Scientific

More information

Geographic Information Systems. using QGIS

Geographic Information Systems. using QGIS Geographic Information Systems using QGIS 1 - INTRODUCTION Generalities A GIS (Geographic Information System) consists of: -Computer hardware -Computer software - Digital Data Generalities GIS softwares

More information

Introduction to Geospatial Analysis

Introduction to Geospatial Analysis Introduction to Geospatial Analysis Introduction to Geospatial Analysis 1 Descriptive Statistics Descriptive statistics. 2 What and Why? Descriptive Statistics Quantitative description of data Why? Allow

More information

Visual Encoding Design

Visual Encoding Design CSE 442 - Data Visualization Visual Encoding Design Jeffrey Heer University of Washington Last Time: Data & Image Models The Big Picture task questions, goals assumptions data physical data type conceptual

More information

Visualization Analysis & Design

Visualization Analysis & Design Visualization Analysis & Design Tamara Munzner Department of Computer Science University of British Columbia Data Visualization Masterclass: Principles, Tools, and Storytelling June 13 2017, VIZBI/VIVID,

More information

Lecturer 2: Spatial Concepts and Data Models

Lecturer 2: Spatial Concepts and Data Models Lecturer 2: Spatial Concepts and Data Models 2.1 Introduction 2.2 Models of Spatial Information 2.3 Three-Step Database Design 2.4 Extending ER with Spatial Concepts 2.5 Summary Learning Objectives Learning

More information

DSC 201: Data Analysis & Visualization

DSC 201: Data Analysis & Visualization DSC 201: Data Analysis & Visualization Exploratory Data Analysis Dr. David Koop Python Support for Time The datetime package - Has date, time, and datetime classes -.now() method: the current datetime

More information

8. Tensor Field Visualization

8. Tensor Field Visualization 8. Tensor Field Visualization Tensor: extension of concept of scalar and vector Tensor data for a tensor of level k is given by t i1,i2,,ik (x 1,,x n ) Second-order tensor often represented by matrix Examples:

More information

Lecture 12: Graphs/Trees

Lecture 12: Graphs/Trees Lecture 12: Graphs/Trees Information Visualization CPSC 533C, Fall 2009 Tamara Munzner UBC Computer Science Mon, 26 October 2009 1 / 37 Proposal Writeup Expectations project title (not just 533 Proposal

More information

TUTORIAL: D3 (1) Basics. Christoph Kralj Manfred Klaffenböck

TUTORIAL: D3 (1) Basics. Christoph Kralj Manfred Klaffenböck TUTORIAL: D3 (1) Basics Christoph Kralj christoph.kralj@univie.ac.at Manfred Klaffenböck manfred.klaffenboeck@univie.ac.at Overview Our goal is to create interactive visualizations viewable in your, or

More information

Visual Representation from Semiology of Graphics by J. Bertin

Visual Representation from Semiology of Graphics by J. Bertin Visual Representation from Semiology of Graphics by J. Bertin From a communication perspective Communication is too often taken for granted when it should be taken to pieces. (Fiske 91) Two basic schools

More information

D3js Tutorial. Tom Torsney-Weir Michael Trosin

D3js Tutorial. Tom Torsney-Weir Michael Trosin D3js Tutorial Tom Torsney-Weir Michael Trosin http://www.washingtonpost.com/wp-srv/special/politics Contents Some important aspects of JavaScript Introduction to SVG CSS D3js Browser-Demo / Development-Tools

More information

Scalar Visualization

Scalar Visualization Scalar Visualization Visualizing scalar data Popular scalar visualization techniques Color mapping Contouring Height plots outline Recap of Chap 4: Visualization Pipeline 1. Data Importing 2. Data Filtering

More information

Scalar Field Visualization I

Scalar Field Visualization I Scalar Field Visualization I What is a Scalar Field? The approximation of certain scalar function in space f(x,y,z). Image source: blimpyb.com f What is a Scalar Field? The approximation of certain scalar

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

S. Rinzivillo DATA VISUALIZATION AND VISUAL ANALYTICS

S. Rinzivillo DATA VISUALIZATION AND VISUAL ANALYTICS S. Rinzivillo rinzivillo@isti.cnr.it DATA VISUALIZATION AND VISUAL ANALYTICS Perception and Cognition vs Game #4 How many 3s? 1258965168765132168943213 5463479654321320354968413 2068798417184529529287149

More information

Visualization Toolkit(VTK) Atul Kumar MD MMST PhD IRCAD-Taiwan

Visualization Toolkit(VTK) Atul Kumar MD MMST PhD IRCAD-Taiwan Visualization Toolkit(VTK) Atul Kumar MD MMST PhD IRCAD-Taiwan Visualization What is visualization?: Informally, it is the transformation of data or information into pictures.(scientific, Data, Information)

More information

This is the vector graphics "drawing" technology with its technical and creative beauty. SVG Inkscape vectors

This is the vector graphics drawing technology with its technical and creative beauty. SVG Inkscape vectors 1 SVG This is the vector graphics "drawing" technology with its technical and creative beauty SVG Inkscape vectors SVG 2 SVG = Scalable Vector Graphics is an integrated standard for drawing Along with

More information

Lecture 7: Depth/Occlusion

Lecture 7: Depth/Occlusion Lecture 7: Depth/Occlusion Information Visualization CPSC 533C, Fall 2006 Tamara Munzner UBC Computer Science 3 October 2006 Readings Covered Ware, Chapter 8: Space Perception and the Display of Data in

More information

Point based Rendering

Point based Rendering Point based Rendering CS535 Daniel Aliaga Current Standards Traditionally, graphics has worked with triangles as the rendering primitive Triangles are really just the lowest common denominator for surfaces

More information

CS451Real-time Rendering Pipeline

CS451Real-time Rendering Pipeline 1 CS451Real-time Rendering Pipeline JYH-MING LIEN DEPARTMENT OF COMPUTER SCIENCE GEORGE MASON UNIVERSITY Based on Tomas Akenine-Möller s lecture note You say that you render a 3D 2 scene, but what does

More information

Data Preprocessing. Slides by: Shree Jaswal

Data Preprocessing. Slides by: Shree Jaswal Data Preprocessing Slides by: Shree Jaswal Topics to be covered Why Preprocessing? Data Cleaning; Data Integration; Data Reduction: Attribute subset selection, Histograms, Clustering and Sampling; Data

More information

Data Visualization. Fall 2016

Data Visualization. Fall 2016 Data Visualization Fall 2016 Information Visualization Upon now, we dealt with scientific visualization (scivis) Scivisincludes visualization of physical simulations, engineering, medical imaging, Earth

More information

TNM093 Tillämpad visualisering och virtuell verklighet. Jimmy Johansson C-Research, Linköping University

TNM093 Tillämpad visualisering och virtuell verklighet. Jimmy Johansson C-Research, Linköping University TNM093 Tillämpad visualisering och virtuell verklighet Jimmy Johansson C-Research, Linköping University Introduction to Visualization New Oxford Dictionary of English, 1999 visualize - verb [with obj.]

More information

We will start at 2:05 pm! Thanks for coming early!

We will start at 2:05 pm! Thanks for coming early! We will start at 2:05 pm! Thanks for coming early! Yesterday Fundamental 1. Value of visualization 2. Design principles 3. Graphical perception Record Information Support Analytical Reasoning Communicate

More information

Introduction to WEB PROGRAMMING

Introduction to WEB PROGRAMMING Introduction to WEB PROGRAMMING Web Languages: Overview HTML CSS JavaScript content structure look & feel transitions/animation s (CSS3) interaction animation server communication Full-Stack Web Frameworks

More information

CS7026 CSS3. CSS3 Graphics Effects

CS7026 CSS3. CSS3 Graphics Effects CS7026 CSS3 CSS3 Graphics Effects What You ll Learn We ll create the appearance of speech bubbles without using any images, just these pieces of pure CSS: The word-wrap property to contain overflowing

More information

4. Basic Mapping Techniques

4. Basic Mapping Techniques 4. Basic Mapping Techniques Mapping from (filtered) data to renderable representation Most important part of visualization Possible visual representations: Position Size Orientation Shape Brightness Color

More information

DATA MODELS IN GIS. Prachi Misra Sahoo I.A.S.R.I., New Delhi

DATA MODELS IN GIS. Prachi Misra Sahoo I.A.S.R.I., New Delhi DATA MODELS IN GIS Prachi Misra Sahoo I.A.S.R.I., New Delhi -110012 1. Introduction GIS depicts the real world through models involving geometry, attributes, relations, and data quality. Here the realization

More information

Paint by Numbers and Comprehensible Rendering of 3D Shapes

Paint by Numbers and Comprehensible Rendering of 3D Shapes Paint by Numbers and Comprehensible Rendering of 3D Shapes Prof. Allison Klein Announcements Sign up for 1 st presentation at end of class today Undergrads: Thinking about grad school? Still here over

More information

Lecture 13: Graphs/Trees

Lecture 13: Graphs/Trees Lecture 13: Graphs/Trees Information Visualization CPSC 533C, Fall 2009 Tamara Munzner UBC Computer Science Mon, 31 October 2011 1 / 41 Readings Covered Graph Visualisation in Information Visualisation:

More information

Data Visualization (CIS/DSC 468)

Data Visualization (CIS/DSC 468) Data Visualization (CIS/DSC 468) Isosurfaces Dr. David Koop Data Wrangling Problem 1: Visualizations need data Solution: The Web: github, gists, cloud services Problem 2: Data has extra information I don't

More information

ACGV 2008, Lecture 1 Tuesday January 22, 2008

ACGV 2008, Lecture 1 Tuesday January 22, 2008 Advanced Computer Graphics and Visualization Spring 2008 Ch 1: Introduction Ch 4: The Visualization Pipeline Ch 5: Basic Data Representation Organization, Spring 2008 Stefan Seipel Filip Malmberg Mats

More information

Data Visualization (CIS/DSC 468)

Data Visualization (CIS/DSC 468) Data Visualization (CIS/DSC 468) Tabular Data Dr. David Koop Channel Considerations Discriminability Separability Visual Popout Weber's Law Luminance Perception 2 Separability Cannot treat all channels

More information

OpenGL shaders and programming models that provide object persistence

OpenGL shaders and programming models that provide object persistence OpenGL shaders and programming models that provide object persistence COSC342 Lecture 22 19 May 2016 OpenGL shaders We discussed forms of local illumination in the ray tracing lectures. We also saw that

More information

What is visualization? Why is it important?

What is visualization? Why is it important? What is visualization? Why is it important? What does visualization do? What is the difference between scientific data and information data Cycle of Visualization Storage De noising/filtering Down sampling

More information

CSE 544 Data Models. Lecture #3. CSE544 - Spring,

CSE 544 Data Models. Lecture #3. CSE544 - Spring, CSE 544 Data Models Lecture #3 1 Announcements Project Form groups by Friday Start thinking about a topic (see new additions to the topic list) Next paper review: due on Monday Homework 1: due the following

More information

Learning to Code with SVG

Learning to Code with SVG Learning to Code with SVG Lesson Plan: Objective: Lab Time: Age range: Requirements: Resources: Lecture: Coding a Frog in SVG on a 600 by 600 grid Hands-on learning of SVG by drawing a frog with basic

More information