Visualization Systems & Toolkits

Size: px
Start display at page:

Download "Visualization Systems & Toolkits"

Transcription

1 Visualization Systems & Toolkits 8803DV CS/MGT April 10, 2017

2 Systems/tools that help people create visualizations or use visualizations to help people explore and analyze data. Toolkits are components/libraries/packages that help developers/designers build these visualization systems.

3 Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

4 Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

5 Automated exploratory analysis tools Semi-automated visual analysis tools

6 Automated exploratory analysis tools Semi-automated visual analysis tools

7 Microsoft Power BI Video

8 Microsoft Power BI Naturalistic data analysis Support complex workflows Integrate multiple data sources Automatic dashboards

9 Video Voyager: Exploratory Analysis via Faceted Browsing of Visualization Recommendations. Kanit Wongsuphasawat, Dominik Moritz, Anushka Anand, Jock Mackinlay, Bill Howe, Jeffrey Heer IEEE Trans. Visualization & Comp. Graphics (Proc. InfoVis), 2016

10 Exploratory visualizations to start with Recommendations of attributes and charts Great for EDA

11 Ecoxight Video

12 Ecoxight Network visualizations Beyond node-link diagrams (time, geo, etc.)

13 Automated exploratory analysis tools Semi-automated visual analysis tools

14 Interactive Data Exploration and Analysis Tools

15 Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

16 Customization & Control? Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

17 Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

18 ivisdesigner Video Ren, Donghao, Tobias Hollerer, and Xiaoru Yuan ivisdesigner: Expressive Interactive Design of Information Visualizations. IEEE Transactions on Visualization and Computer Graphics PP (99): 1 1

19 ivisdesigner Programming free custom visualizations Drawing tool style interactions Supports tons of visualizations

20 Data-Driven Guides Video Data-Driven Guides: Supporting Expressive Design for Information Graphics Nam Wook Kim, Eston Schweickart, Zhicheng Liu, Mira Dontcheva, Wilmot Li, Jovan Popovic, Hanspeter Pfister IEEE Transactions on Visualization and Computer Graphics (Proceedings InfoVis '16) 2016

21 Data-Driven Guides Infographics (remember them?) Incorporating data into images enables new levels of customization Photoshop like interaction

22 Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

23 Data Exploration and Analysis Tools Interaction & Reproducibility? Visualization Authoring Tools Toolkits and Grammars

24 Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

25 Video Heer, Jeffrey, Stuart K. Card, and James A. Landay. "Prefuse: a toolkit for interactive information visualization." In Proceedings of the SIGCHI conference on Human factors in computing systems, pp ACM, 2005.

26 Fine-grained building blocks for constructing visualizations Includes layout algorithms, navigation and interaction techniques Java-based Laid the foundation for other toolkits (e.g., Flare) and several visualization systems (e.g., DOI Trees (AVI 04), Vizster (InfoVis 05))

27 Bostock, Michael, and Jeffrey Heer. "Protovis: A graphical toolkit for visualization." IEEE transactions on visualization and computer graphics 15, no. 6 (2009).

28 New toolkit following a declarative model - Focus on the what more than the how Simple grammar of graphical primitives called marks

29 Bostock, Michael, Vadim Ogievetsky, and Jeffrey Heer. "D³ data-driven documents." IEEE transactions on visualization and computer graphics 17, no. 12 (2011):

30 Uses explicitly of web standards such as Scalable Vector Graphics (SVG) rather than a proprietary marks graphics set Not just an InfoVis toolkit TONS of examples and very well documented!!

31

32 D3.js in action Type Count Sedan 50 SUV 20 Sports 30 Minivan 100

33 D3.js in action Type Sedan 50 SUV 20 Sports 30 Minivan 100 Count < 20 lines

34 Satyanarayan, Arvind, Ryan Russell, Jane Hoffswell, and Jeffrey Heer. "Reactive vega: A streaming dataflow architecture for declarative interactive visualization." IEEE transactions on visualization and computer graphics 22, no. 1 (2016):

35 ... { { "name": "y", "type": "linear", "range": "height", "domain": {"data": "table", "field": "y"}, "nice": true { "width": 400, "height": 200, "padding": {"top": 10, "left": 30, "bottom": 30, "right": 10}, "data": [ { "name": "table", "values": [ {"x": 1, "y": 28}, {"x": 2, "y": 55}, {"x": 3, "y": 43}, {"x": 4, "y": 91}, {"x": 5, "y": 81}, {"x": 6, "y": 53}, {"x": 7, "y": 19}, {"x": 8, "y": 87}, {"x": 9, "y": 52}, {"x": 10, "y": 48}, {"x": 11, "y": 24}, {"x": 12, "y": 49}, {"x": 13, "y": 87}, {"x": 14, "y": 66}, {"x": 15, "y": 17}, {"x": 16, "y": 27}, {"x": 17, "y": 68}, {"x": 18, "y": 16}, {"x": 19, "y": 49}, {"x": 20, "y": 15} ] } ], "scales": [ { "name": "x", "type": "ordinal", "range": "width", "domain": {"data": "table", "field": "x"} },... } ], "axes": [ {"type": "x", "scale": "x"}, {"type": "y", "scale": "y"} ], "marks": [ { "type": "rect", "from": {"data": "table"}, "properties": { "enter": { "x": {"scale": "x", "field": "x"}, "width": {"scale": "x", "band": true, "offset": -1}, "y": {"scale": "y", "field": "y"}, "y2": {"scale": "y", "value": 0} }, "update": { "fill": {"value": "steelblue"} }, "hover": { "fill": {"value": "red"} } } } ] }

36 ... { { "width": 400, "height": 200, "padding": {"top": 10, "left": 30, "bottom": 30, "right": 10}, "data": [ { Less programming "name": "table", "values": [ {"x": 1, "y": 28}, {"x": 2, "y": 55}, {"x": 3, "y": 43}, {"x": 4, "y": 91}, {"x": 5, "y": 81}, {"x": 6, "y": 53}, {"x": 7, "y": 19}, {"x": 8, "y": 87}, Very verbose {"x": 9, "y": 52}, {"x": 10, "y": 48}, {"x": 11, "y": 24}, {"x": 12, "y": 49}, {"x": 13, "y": 87}, {"x": 14, "y": 66}, {"x": 15, "y": 17}, {"x": 16, "y": 27}, {"x": 17, "y": 68}, {"x": 18, "y": 16}, {"x": 19, "y": 49}, {"x": 20, "y": 15} ] } ], "scales": [ { "name": "x", "type": "ordinal", "range": "width", "domain": {"data": "table", "field": "x"} },... { more "name": "y", "type": "linear", "range": "height", "domain": {"data": "table", "field": "y"}, specification "nice": true } ], "axes": [ {"type": "x", "scale": "x"}, {"type": "y", "scale": "y"} ], "marks": [ { "type": "rect", "from": {"data": "table"}, "properties": { "enter": { "x": {"scale": "x", "field": "x"}, "width": {"scale": "x", "band": true, "offset": -1}, "y": {"scale": "y", "field": "y"}, "y2": {"scale": "y", "value": 0} }, "update": { "fill": {"value": "steelblue"} }, "hover": {

37 Video Satyanarayan, Arvind, Dominik Moritz, Kanit Wongsuphasawat, and Jeffrey Heer. "Vega-lite: A grammar of interactive graphics." IEEE Transactions on Visualization and Computer Graphics 23, no. 1 (2017):

38 { "description": "A simple bar chart with embedded data.", "data": { "values": [ {"a": "A","b": 28}, {"a": "B","b": 55}, {"a": "C","b": 43}, {"a": "D","b": 91}, {"a": "E","b": 81}, {"a": "F","b": 53}, {"a": "G","b": 19}, {"a": "H","b": 87}, {"a": "I","b": 52} ] }, "mark": "bar", "encoding": { "x": {"field": "a", "type": "ordinal"}, "y": {"field": "b", "type": "quantitative"} } }

39 { "description": "A simple bar chart with embedded data.", "data": { "values": [ {"a": "A","b": 28}, {"a": "B","b": 55}, {"a": "C","b": 43}, {"a": "D","b": 91}, {"a": "E","b": 81}, {"a": "F","b": 53}, {"a": "G","b": 19}, {"a": "H","b": 87}, {"a": "I","b": 52} ] }, "mark": "bar", "encoding": { "x": {"field": "a", "type": "ordinal"}, "y": {"field": "b", "type": "quantitative"} } } Online Editor

40 Toolkits targeting specific components

41 Toolkits targeting specific components - Visualization Recommendation engines Demo

42 Toolkits targeting specific components - Re-ordering layouts Demo Fekete, Jean-Daniel. "Reorder. js: A javascript library to reorder tables and networks." In IEEE VIS

43 Toolkits targeting specific components - Natural language interaction (Shameless plug) Video Srinivasan, Arjun, and John Stasko. "NL4DV: Toolkit for Natural Language Driven Data Visualization."

44 Toolkits targeting specific components - Visualization Recommendation engines - Re-ordering layouts - Natural language interaction... and much more

45 Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

46 Data Exploration and Analysis Tools Visualization Authoring Tools Need programming Toolkits and Grammars

47 ?? Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

48 Customization Data Exploration and Analysis Tools Visualization Authoring Tools Toolkits and Grammars

49 Data Exploration and Analysis Tools Visualization Systems & Toolkits Visualization Authoring Tools Toolkits and Grammars

Reactive Building Blocks

Reactive Building Blocks Reactive Building Blocks Interactive Visualizations with Vega Arvind Satyanarayan @arvindsatya1 Stanford University Jane Hoffswell Dominik Moritz @domoritz Kanit "Ham" Wongsuphasawat @kanitw Jeffrey Heer

More information

Potential issues: * Difficulty in coding and/or finding the. * Should I provide more source code? * Others

Potential issues: * Difficulty in coding and/or finding the. * Should I provide more source code? * Others Assignment III Potential issues: * Division of the work within the team? * Difficulty in coding and/or finding the network data? * Should I provide more source code? * Others 1 InfoVis Software Toolkit

More information

Data Driven Guides: Supporting expressive design for Information graphics

Data Driven Guides: Supporting expressive design for Information graphics Data Driven Guides: Supporting expressive design for Information graphics Nam Wook Kim Eston Schweickart Zhicheng Leo Liu Harvard Cornell Adobe Mira Dontcheva Wilmot Li Jovan Popović Hanspeter Pfister

More information

InfoVis Systems & Toolkits

InfoVis Systems & Toolkits InfoVis Systems & Toolkits CS 7450 - Information Visualization September 21, 2016 John Stasko Learning Objectives Gain familiarity with history of visualization toolkits Describe what each's new contribution

More information

InfoVis Systems & Toolkits

InfoVis Systems & Toolkits Topic Notes InfoVis Systems & Toolkits CS 7450 - Information Visualization February 15, 2011 John Stasko Background In previous classes, we have examined different techniques for presenting multivariate

More information

InfoVis Systems & Toolkits

InfoVis Systems & Toolkits Topic Notes InfoVis Systems & Toolkits CS 7450 - Information Visualization September 24, 2012 John Stasko Background In previous classes, we have examined different techniques for presenting multivariate

More information

InfoVis Systems & Toolkits. Outline. CS 795/895 Information Visualization Fall Dr. Michele C. Weigle.

InfoVis Systems & Toolkits. Outline. CS 795/895 Information Visualization Fall Dr. Michele C. Weigle. CS 795/895 Information Visualization Fall 2012 InfoVis Systems & Toolkits Dr. Michele C. Weigle http://www.cs.odu.edu/~mweigle/cs795-f12/ Outline! Graphing tools! Visualization systems! built-in visualizations!

More information

Interactive Visualization of the Stock Market Graph

Interactive Visualization of the Stock Market Graph Interactive Visualization of the Stock Market Graph Presented by Camilo Rostoker rostokec@cs.ubc.ca Department of Computer Science University of British Columbia Overview 1. Introduction 2. The Market

More information

CSE512 :: 28 Jan Visualization Tools. Jeffrey Heer University of Washington

CSE512 :: 28 Jan Visualization Tools. Jeffrey Heer University of Washington CSE512 :: 28 Jan 2014 Visualization Tools Jeffrey Heer University of Washington 1 How do people create visualizations? Chart Typology Pick from a stock of templates Easy-to-use but limited expressiveness

More information

Blitz: Automating Interaction in Visualization

Blitz: Automating Interaction in Visualization Blitz: Automating Interaction in Visualization Catherine Mullings Stanford University cmulling@stanford.edu Ben-han Sung Stanford University bsung93@stanford.edu Andrei Terentiev Stanford University andreit1@stanford.edu

More information

Resonant Laboratory and Candela: Spreading Your Visualization Ideas to the Masses

Resonant Laboratory and Candela: Spreading Your Visualization Ideas to the Masses Resonant Laboratory and Candela: Spreading Your Visualization Ideas to the Masses Alex Bigelow University of Utah Roni Choudhury Kitware, Inc. Jeffrey Baumes Kitware, Inc. 1 INTRODUCTION Visualization

More information

Kyrix: Interactive Visual Data Exploration at Scale

Kyrix: Interactive Visual Data Exploration at Scale Kyrix: Interactive Visual Data Exploration at Scale Wenbo Tao MIT CSAIL wenbo@mit.edu Remco Chang Tufts University remco@cs.tufts.edu Xiaoyu Liu Purdue University liu1962@purdue.edu Çağatay Demiralp MIT

More information

Kyrix: Interactive Visual Data Exploration at Scale

Kyrix: Interactive Visual Data Exploration at Scale Kyrix: Interactive Visual Data Exploration at Scale Wenbo Tao MIT CSAIL wenbo@mit.edu Remco Chang Tufts University remco@cs.tufts.edu Xiaoyu Liu Purdue University liu1962@purdue.edu Çağatay Demiralp MIT

More information

Usability Analysis of Custom Visualization Tools

Usability Analysis of Custom Visualization Tools SIGRAD 2012 A. Kerren and S. Seipel (Editors) Usability Analysis of Custom Visualization Tools Mohammad A. Kuhail, Soren Lauesen, Kostas Pantazos, and Xu Shangjin IT University of Copenhagen, Denmark Abstract

More information

Valletto: A Multimodal Interface for Ubiquitous Visual Analytics

Valletto: A Multimodal Interface for Ubiquitous Visual Analytics Valletto: A Multimodal Interface for Ubiquitous Visual Analytics Jan-Frederik Kassel Volkswagen Group Data:Lab Munich Munich, Germany jan-frederik.kassel@volkswagen.de Michael Rohs University of Hannover

More information

Interactive Data Analysis

Interactive Data Analysis domain specific languages for Interactive Data Analysis Jeffrey Heer Stanford University 1 HTML / CSS Table SELECT customer_id, customer_name, COUNT(order_id) as total FROM customers INNER JOIN orders

More information

STOOG: STYLE-SHEETS-BASED TOOLKIT FOR GRAPH VISUALIZATION. Guillaume Artignan. Mountaz Hascoët

STOOG: STYLE-SHEETS-BASED TOOLKIT FOR GRAPH VISUALIZATION. Guillaume Artignan. Mountaz Hascoët RESEARCH REPORT STOOG: STYLE-SHEETS-BASED TOOLKIT FOR GRAPH VISUALIZATION Guillaume Artignan Mountaz Hascoët STOOG: STYLE-SHEETS-BASED TOOLKIT FOR GRAPH VISUALIZATION Guillaume Artignan, Mountaz Hascoët

More information

Content Visualization Issues

Content Visualization Issues Name Sanobar Nishat (113052001) MTP : Implementation Issues of Visualization on Small screen devices Report: Summary Report 4 (week 4) Date: 4 Feb 13 Summary: Graphical data visualization is used to display

More information

Interactive Visualization for Computational Linguistics

Interactive Visualization for Computational Linguistics Interactive Visualization for Computational Linguistics ESSLII 2009 2 Interaction and animation References 3 Slides in this section are based on: Yi et al., Toward a Deeper Understanding of the Role of

More information

D3js Guide. D3js Guide

D3js Guide. D3js Guide We have made it easy for you to find a PDF Ebooks without any digging. And by having access to our ebooks online or by storing it on your computer, you have convenient answers with d3js guide. To get started

More information

Visualization of EU Funding Programmes

Visualization of EU Funding Programmes Visualization of EU Funding Programmes 186.834 Praktikum aus Visual Computing WS 2016/17 Daniel Steinböck January 28, 2017 Abstract To fund research and technological development, not only in Europe but

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 Pipeline Model [J. Heer, Prefuse]

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

Advanced Layouts in a Content-Driven Template-Based Layout System

Advanced Layouts in a Content-Driven Template-Based Layout System Advanced Layouts in a Content-Driven Template-Based Layout System ISTVÁN ALBERT, HASSAN CHARAF, LÁSZLÓ LENGYEL Department of Automation and Applied Informatics Budapest University of Technology and Economics

More information

Oracle BI Publisher 11g R1: Fundamentals

Oracle BI Publisher 11g R1: Fundamentals Oracle BI Publisher 11g R1: Fundamentals Volume I Student Guide D68420GC10 Edition 1.0 June 2011 D73304 Authors Lea Shaw Sindhu Rao Technical Contributors and Reviewers Timothy McGlue Nikos Psomas Pradeep

More information

Scalable Pixel-based Visual Interfaces: Challenges and Solutions

Scalable Pixel-based Visual Interfaces: Challenges and Solutions Scalable Pixel-based Visual Interfaces: Challenges and Solutions Mike Sips, Jörn Schneidewind, Daniel A. Keim 1, Heidrun Schumann 2 1 {sips,schneide,keim}@dbvis.inf.uni-konstanz.de, University of Konstanz

More information

The Semiology of Graphics Pat Hanrahan Stanford University Representations

The Semiology of Graphics Pat Hanrahan Stanford University Representations The Semiology of Graphics 2 Pat Hanrahan Stanford University Representations Page 1 Number Scrabble [Simon] Given: The numbers 1 through 9 Goal: Pick three numbers that sum to 15 Number Scrabble [Simon]

More information

Feed Your Inner Data Scientist JAVASCRIPT TOOLS FOR DATA VISUALIZATION AND ANALYSIS

Feed Your Inner Data Scientist JAVASCRIPT TOOLS FOR DATA VISUALIZATION AND ANALYSIS Feed Your Inner Data Scientist JAVASCRIPT TOOLS FOR DATA VISUALIZATION AND ANALYSIS GOAL For Today Big Data Health Gov t Financial Dev Ops IOT Sensors Stats Bio Doug Mair Doug.Mair@gmail.com @doug_mair

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

Data Visualization 101: trends, skillset and tools

Data Visualization 101: trends, skillset and tools Partha Padmanabhan Solutions Architect, Cisco Data Visualization 101: trends, skillset and tools A good Data Visualization is something that provides capability of envisioning the Information and Visual

More information

INTERACTION IN VISUALIZATION. Petra Isenberg

INTERACTION IN VISUALIZATION. Petra Isenberg INTERACTION IN VISUALIZATION Petra Isenberg RECAP Interaction is fundamental to the definition of visual exploration You have already seen examples for graphs for time series for multi-dimensional data

More information

A Search Set Model of Path Tracing in Graphs: Supplementary Materials

A Search Set Model of Path Tracing in Graphs: Supplementary Materials A Search Set Model of Path Tracing in Graphs: Supplementary Materials Jessica Q. Dawson, Tamara Munzner and Joanna McGrenere This supplementary material contains two sections. In the first section, we

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

Etanova Enterprise Solutions

Etanova Enterprise Solutions Etanova Enterprise Solutions Front End Development» 2018-09-23 http://www.etanova.com/technologies/front-end-development Contents HTML 5... 6 Rich Internet Applications... 6 Web Browser Hardware Acceleration...

More information

A JavaScript Framework for Presentations and Animations on Computer Science

A JavaScript Framework for Presentations and Animations on Computer Science A JavaScript Framework for Presentations and Animations on Computer Science Laszlo Korte Bachelor Thesis Technical Aspects of Multimodal Systems Department of Informatics University of Hamburg 1 / 76 Outline

More information

Server-Side Graphics

Server-Side Graphics Server-Side Graphics SET09103 Advanced Web Technologies School of Computing Napier University, Edinburgh, UK Module Leader: Uta Priss 2008 Copyright Napier University Graphics Slide 1/16 Outline Graphics

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 602-01) Data Dr. David Koop HTML and CSS HTML: Tags define the boundaries of the structures of the content this is cool. What about this?

More information

CameramanVis: where the camera should look? CPSC 547 Project proposal

CameramanVis: where the camera should look? CPSC 547 Project proposal CameramanVis: where the camera should look? CPSC 547 Project proposal Jianhui Chen Computer Science Department University of British Columbia jhchen14@cs.ubc.ca 1. Domain, task and dataset reconstruction

More information

grammar statistical graphics Building a in Clojure Kevin Lynagh 2012 November 9 Øredev Keming Labs Malmö, Sweden

grammar statistical graphics Building a in Clojure Kevin Lynagh 2012 November 9 Øredev Keming Labs Malmö, Sweden Building a grammar for statistical graphics in Clojure 2012 November 9 Kevin Lynagh Øredev Keming Labs @lynaghk Malmö, Sweden Agenda Agenda Data Visualization 2 A Agenda Grammar of Graphics Agenda Data

More information

A DeVIL-ish Approach to Inconsistency in Interactive Visualizations

A DeVIL-ish Approach to Inconsistency in Interactive Visualizations A DeVIL-ish Approach to Inconsistency in Interactive Visualizations Yifan Wu UC Berkeley yifanwu@berkeley.edu Joseph M. Hellerstein UC Berkeley hellerstein@berkeley.edu Eugene Wu Columbia University ewu@cs.columbia.edu

More information

September Development of favorite collections & visualizing user search queries in CERN Document Server (CDS)

September Development of favorite collections & visualizing user search queries in CERN Document Server (CDS) Development of favorite collections & visualizing user search queries in CERN Document Server (CDS) September 2013 Author: Archit Sharma archit.py@gmail.com Supervisor: Nikolaos Kasioumis CERN Openlab

More information

Data2Vis: Automatic Generation of Data Visualizations Using Sequence to Sequence Recurrent Neural Networks

Data2Vis: Automatic Generation of Data Visualizations Using Sequence to Sequence Recurrent Neural Networks Data2Vis: Automatic Generation of Data Visualizations Using Sequence to Sequence Recurrent Neural Networks Victor Dibia IBM Research Çağatay Demiralp IBM Research In this work, we formulate visualization

More information

OrgPublisher Photos, Logos, and Legends

OrgPublisher Photos, Logos, and Legends OrgPublisher Photos, Logos, and Legends Table of Contents Table of Contents Photos... 3 Inserting Photos... 3 Photo Wait Time... 5 Logos... 7 Adding a Logo... 7 Adding a Background Image... 8 Legends...

More information

Nobody uploads till yesterday, difficult?

Nobody uploads till yesterday, difficult? Survey Result 1 Assignment II! Nobody uploads till yesterday, difficult? 2 Last Week: Text Visualization 3 Interaction IV Course Spring 14 Graduate Course of UCAS April 4th, 2014 4 InfoVis Pipeline Visualization

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

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 on the Web with D3

Data Visualization on the Web with D3 Data Visualization on the Web with D3 Bowen Yu April 11, 16 Big Data Analysis Interactive Analysis After dataprocessingwith BD techniques, itis necessary to visualize the data so that human analyst can

More information

CSE Data Visualization. Design Critiques. Jeffrey Heer University of Washington

CSE Data Visualization. Design Critiques. Jeffrey Heer University of Washington CSE 512 - Data Visualization Design Critiques Jeffrey Heer University of Washington Final Project Final Project Design a new visualization system or technique. Many options New system for a chosen domain

More information

Task Taxonomy for Graph Visualization

Task Taxonomy for Graph Visualization Task Taxonomy for Graph Visualization Bongshin Lee, Catherine Plaisant, Cynthia Sims Parr Human-Computer Interaction Lab University of Maryland, College Park, MD 20742, USA +1-301-405-7445 {bongshin, plaisant,

More information

Graphs and Networks 2

Graphs and Networks 2 Topic Notes Graphs and Networks 2 CS 7450 - Information Visualization October 23, 2013 John Stasko Review Last time we looked at graph layout aesthetics and algorithms, as well as some example applications

More information

Visual Tools & Methods for Data Cleaning

Visual Tools & Methods for Data Cleaning Visual Tools & Methods for Data Cleaning DaQuaTa International Workshop 2017, Lyon, FR http://romain.vuillemot.net/ @romsson Reality * Time series * Geo-spatial data Select, filter, sort, zoom,.. Need

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

DualNet: A Coordinated View Approach to Network Visualization

DualNet: A Coordinated View Approach to Network Visualization DualNet: A Coordinated View Approach to Network Visualization Galileo Namata, Brian Staats, Ben Shneiderman Department of Computer Science, University of Maryland College Park, Maryland 20770, U.S staatsb@mail.umd.edu,

More information

A Methodology and Framework to Simplify Usability Analysis of Mobile Applications

A Methodology and Framework to Simplify Usability Analysis of Mobile Applications 2009 IEEE/ACM International Conference on Automated Software Engineering A Methodology and Framework to Simplify Usability Analysis of Mobile Applications Florence Balagtas-Fernandez Media Informatics

More information

Statistical Graphics, ClojureScript, &c.

Statistical Graphics, ClojureScript, &c. Statistical Graphics, ClojureScript, &c. Kevin Lynagh Keming Labs March 2012 Clojure/West Agenda Agenda I. Info. design We are terrible. Agenda I. II. Info. design We are terrible. In practice On the Internets,

More information

Visualization Tools. Interaction. How do people create visualizations? Jeffrey Heer Stanford University

Visualization Tools. Interaction. How do people create visualizations? Jeffrey Heer Stanford University CS448B :: 20 Oct 2011 Interaction Visualization Tools Jeffrey Heer Stanford University How do people create visualizations? Today's first task is not to invent wholly new [graphical] techniques, though

More information

Interaction. What is Interaction? From Google: Reciprocal action between a human and a computer One of the two main components in infovis

Interaction. What is Interaction? From Google: Reciprocal action between a human and a computer One of the two main components in infovis Interaction 1 What is Interaction? From Google: Reciprocal action between a human and a computer One of the two main components in infovis Representation Interaction Interaction is what distinguishes infovis

More information

Hierarchies and Trees 1 (Node-link) CS Information Visualization November 12, 2012 John Stasko

Hierarchies and Trees 1 (Node-link) CS Information Visualization November 12, 2012 John Stasko Topic Notes Hierarchies and Trees 1 (Node-link) CS 7450 - Information Visualization November 12, 2012 John Stasko Hierarchies Definition Data repository in which cases are related to subcases Can be thought

More information

EXPLORE MODERN RESPONSIVE WEB DESIGN TECHNIQUES

EXPLORE MODERN RESPONSIVE WEB DESIGN TECHNIQUES 20-21 September 2018, BULGARIA 1 Proceedings of the International Conference on Information Technologies (InfoTech-2018) 20-21 September 2018, Bulgaria EXPLORE MODERN RESPONSIVE WEB DESIGN TECHNIQUES Elena

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

Visualization Tools. Interaction. How do people create visualizations? Jeffrey Heer Stanford University

Visualization Tools. Interaction. How do people create visualizations? Jeffrey Heer Stanford University CS448B :: 23 Oct 2012 Interaction Visualization Tools Jeffrey Heer Stanford University How do people create visualizations? Today's first task is not to invent wholly new [graphical] techniques, though

More information

POWER BI BOOTCAMP. COURSE INCLUDES: 4-days of instructor led discussion, Hands-on Office labs and ebook.

POWER BI BOOTCAMP. COURSE INCLUDES: 4-days of instructor led discussion, Hands-on Office labs and ebook. Course Code : AUDIENCE : FORMAT: LENGTH: POWER BI BOOTCAMP O365-412-PBID (CP PBD365) Professional Developers Instructor-led training with hands-on labs 4 Days COURSE INCLUDES: 4-days of instructor led

More information

DiscoverySpace: Crowdsourced Suggestions Onboard Novices in Complex Software

DiscoverySpace: Crowdsourced Suggestions Onboard Novices in Complex Software DiscoverySpace: Crowdsourced Suggestions Onboard Novices in Complex Software C. Ailie Fraser Scott Klemmer Abstract The Design Lab The Design Lab UC San Diego UC San Diego La Jolla, CA 92092, USA La Jolla,

More information

CIS-331 Fall 2013 Exam 1 Name: Total of 120 Points Version 1

CIS-331 Fall 2013 Exam 1 Name: Total of 120 Points Version 1 Version 1 1. (24 Points) Show the routing tables for routers A, B, C, and D. Make sure you account for traffic to the Internet. NOTE: Router E should only be used for Internet traffic. Router A Router

More information

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

SDAT a Visual Source Code Comparison Tool Prepared by Rolf Biehn

SDAT a Visual Source Code Comparison Tool Prepared by Rolf Biehn SDAT a Visual Source Code Comparison Tool Prepared by Rolf Biehn (rolfbiehn@yahoo.ca) Introduction Software developers are often faced with the task of addressing regression in code and maintenance of

More information

Visualization as Part of the Linguistic Processing Pipeline

Visualization as Part of the Linguistic Processing Pipeline Visualization as Part of the Linguistic Processing Pipeline Chris Culy and Verena Lyding European Academy Bozen-Bolzano {christopher.culy, verena.lyding}@eurac.edu Visualization of linguistic information

More information

Hierarchies and Trees 1 (Node-link) CS 4460/ Information Visualization March 10, 2009 John Stasko

Hierarchies and Trees 1 (Node-link) CS 4460/ Information Visualization March 10, 2009 John Stasko Hierarchies and Trees 1 (Node-link) CS 4460/7450 - Information Visualization March 10, 2009 John Stasko Hierarchies Definition Data repository in which cases are related to subcases Can be thought of as

More information

Evaluating Visualization Sets: Trade-offs Between Local Effectiveness and Global Consistency

Evaluating Visualization Sets: Trade-offs Between Local Effectiveness and Global Consistency Evaluating Visualization Sets: Trade-offs Between Local Effectiveness and Global Consistency Zening Qu University of Washington HCDE zqu@uw.edu Jessica Hullman University of Washington ischool jhullman@uw.edu

More information

Lecture Topic Projects

Lecture Topic Projects Lecture Topic Projects 1 Intro, schedule, and logistics 2 Applications of visual analytics, basic tasks, data types 3 Introduction to D3, basic vis techniques for non-spatial data Project #1 out 4 Visual

More information

Power BI Developer Bootcamp

Power BI Developer Bootcamp Power BI Developer Bootcamp Mastering the Power BI Development Platform Course Code Audience Format Length Course Description Student Prerequisites PBD365 Professional Developers In-person and Remote 4

More information

CS Information Visualization Sep. 2, 2015 John Stasko

CS Information Visualization Sep. 2, 2015 John Stasko Multivariate Visual Representations 2 CS 7450 - Information Visualization Sep. 2, 2015 John Stasko Recap We examined a number of techniques for projecting >2 variables (modest number of dimensions) down

More information

Business Intelligence and Reporting Tools

Business Intelligence and Reporting Tools Business Intelligence and Reporting Tools Release 1.0 Requirements Document Version 1.0 November 8, 2004 Contents Eclipse Business Intelligence and Reporting Tools Project Requirements...2 Project Overview...2

More information

Matrix Representation of Graphs

Matrix Representation of Graphs Matrix Representation of Graphs Eva Rott Michael Glatzhofer Dominik Mocher Julian Wolf Institute of Interactive Systems and Data Science (ISDS), Graz University of Technology A-8010 Graz, Austria 18 May

More information

Napkin Sketch Visualizations Sketch-Based Authoring of Improvisational Visualizations

Napkin Sketch Visualizations Sketch-Based Authoring of Improvisational Visualizations Napkin Sketch Visualizations Sketch-Based Authoring of Improvisational Visualizations William O. Chao wochao@gmail.com Description of Domain Can you think of a time when you wished you could quickly sketch

More information

Software Visualization. Presented by Sam Davis

Software Visualization. Presented by Sam Davis Software Visualization Presented by Sam Davis 2 3 More than Just UML! UML is about static structure of software In terms of abstractions like Procedures Objects Files Packages But 4 Software is Dynamic!

More information

Lecture 6: Statistical Graphics

Lecture 6: Statistical Graphics Lecture 6: Statistical Graphics Information Visualization CPSC 533C, Fall 2009 Tamara Munzner UBC Computer Science Mon, 28 September 2009 1 / 34 Readings Covered Multi-Scale Banking to 45 Degrees. Jeffrey

More information

Advanced Dreamweaver CS6

Advanced Dreamweaver CS6 Advanced Dreamweaver CS6 Overview This advanced Dreamweaver CS6 training class teaches you to become more efficient with Dreamweaver by taking advantage of Dreamweaver's more advanced features. After this

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

An incremental approach for real-time Big Data visual analytics

An incremental approach for real-time Big Data visual analytics An incremental approach for real-time Big Data visual analytics Ignacio García, Rubén Casado Department of Research and Innovation Treelogic Asturias, Spain Abdelhamid Bouchachia Machine Intelligence Group

More information

CSE Data Visualization. Multidimensional Vis. Jeffrey Heer University of Washington

CSE Data Visualization. Multidimensional Vis. Jeffrey Heer University of Washington CSE 512 - Data Visualization Multidimensional Vis Jeffrey Heer University of Washington Last Time: Exploratory Data Analysis Exposure, the effective laying open of the data to display the unanticipated,

More information

GLO-STIX! Graph-Level Operations for Specifying Techniques and Interactive exploration

GLO-STIX! Graph-Level Operations for Specifying Techniques and Interactive exploration GLO-STIX! Graph-Level Operations for Specifying Techniques and Interactive exploration Chad Stolper Minsuk Kahng Zhiyuan Jerry Lin Florian Foerster Aakash Goel John Stasko Polo Chau http://thetrendguys.com/wp-content/uploads/2014/02/lego-bricks.jpg

More information

Multi-Ani: A Interface for Animating Multiple Graph Drawing Algorithms

Multi-Ani: A Interface for Animating Multiple Graph Drawing Algorithms C/SST '{)//nlemalioflal Conference 581 Multi-Ani: A Interface for Animating Multiple Graph Drawing Algorithms Mao Lin Huang Department of Computer Systems Faculty of Information Technology The University

More information

CS474 MULTIMEDIA TECHNOLOGY

CS474 MULTIMEDIA TECHNOLOGY CS474 MULTIMEDIA TECHNOLOGY Pr. G. Tziritas, Spring 2018 SVG Animation Tutorial G. Simantiris (TA) OVERVIEW Introduction Definitions SVG Creating SVGs SVG basics Examples Animation using software Examples

More information

Orko: Facilitating Multimodal Interaction for Visual Exploration and Analysis of Networks

Orko: Facilitating Multimodal Interaction for Visual Exploration and Analysis of Networks Orko: Facilitating Multimodal Interaction for Visual Exploration and Analysis of Networks Arjun Srinivasan John Stasko https://ecoxight.com/ What is multimodal interaction? How can we support multimodal

More information

POWER BI DEVELOPER BOOTCAMP

POWER BI DEVELOPER BOOTCAMP POWER BI DEVELOPER BOOTCAMP Course Duration: 4 Days Overview The Power BI Developer Bootcamp is an intensive 4-day training course with hands-on labs designed to get professional software developers up

More information

BEFORE CLASS. If you haven t already installed the Firebug extension for Firefox, download it now from

BEFORE CLASS. If you haven t already installed the Firebug extension for Firefox, download it now from BEFORE CLASS If you haven t already installed the Firebug extension for Firefox, download it now from http://getfirebug.com. If you don t already have the Firebug extension for Firefox, Safari, or Google

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

What is Interaction?

What is Interaction? Interaction What is Interaction? From Google: Reciprocal action between a human and a computer One of the two main components in infovis Representation Interaction Interaction is what distinguishes infovis

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

Compromises and Added Value in Visual Analytics

Compromises and Added Value in Visual Analytics Compromises and Added Value in Visual Analytics Helwig Hauser (Univ. of Bergen) Plan So what is Visual Analytics? OK, OK,..., not this question, again,... Instead: Five selected characteristics (C1 C5)

More information

Capturing Design Expertise in Customized Software Architecture Design Environments

Capturing Design Expertise in Customized Software Architecture Design Environments Capturing Design Expertise in Customized Software Architecture Design Environments Robert T. Monroe School of Computer Science, Carnegie Mellon University, Pittsburgh, PA 15213 Abstract: Software architecture

More information

When learning coding, be brave

When learning coding, be brave Who am I? Web Technology Overview with a focus on JavaScript-based technologies Lawrence Yao l.yao@unsw.edu.au Lawrence Yao UNSW casual staff Developer Analyst at YTML Consulting Email me if you need technical

More information

Rich Media Advertising Mocean Mobile Advertising Network

Rich Media Advertising Mocean Mobile Advertising Network Rich Media Advertising Mocean Mobile Advertising Network Version 1.4 02/23/2011 Page 1 Proprietary Notice This material is proprietary to Mocean Mobile. It contains trade secrets and confidential information

More information

Oracle Forms and Oracle APEX The Odd Couple

Oracle Forms and Oracle APEX The Odd Couple Oracle Forms and Oracle APEX The Odd Couple About me 2 Francis Mignault CTO and Co-founder, Insum Solutions 30+ years with Oracle DB, 14+ years with APEX. (Forms 2.3 / Oracle 5) Books: Expert Oracle Application

More information

infogr.am -- getting started

infogr.am -- getting started Infogr.am Basics What is infogr.am? It s a great resource for when you need to visualize data - make simple infographics or make individual charts (bar graphs, pie charts, tables, pictoral charts, etc.).

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

Welcome! GRAND FINALE. Authorizing. Audio Finalizer

Welcome! GRAND FINALE. Authorizing. Audio Finalizer GRAND FINALE Audio Finalizer Welcome! Grand Finale is a multi effect plug-in designed for finalizing complete mixes, stems, buses and/or individual audio tracks. It comes as an Audio Unit, VST & AAX for

More information

Frontend guide. Everything you need to know about HTML, CSS, JavaScript and DOM. Dejan V Čančarević

Frontend guide. Everything you need to know about HTML, CSS, JavaScript and DOM. Dejan V Čančarević Frontend guide Everything you need to know about HTML, CSS, JavaScript and DOM Dejan V Čančarević Today frontend is treated as a separate part of Web development and therefore frontend developer jobs are

More information

How to export and save files

How to export and save files How to export and save files Illustrator is popular with designers because they can create graphics that can be used in a wide variety of applications. You can easily save your work for print, video, or

More information