Data Visualization (CIS 468)

Size: px
Start display at page:

Download "Data Visualization (CIS 468)"

Transcription

1 Data Visualization (CIS 468) D3 + Marks & Channels Dr. David Koop

2 Tasks 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 Identify Compare Summarize Paths Spatial Data Shape What? Why? How? [Munzner (ill. Maguire), 2014] 2

3 Analyze: Discovery 3

4 Analyze: Present [M. Stefaner, 2013] 4

5 Analyze: Enjoy [Wattenberg, 2005, 5

6 Annotate [S. Lu, 2017] 6

7 Record 7

8 Derive exports imports trade balance trade balance = exports imports Original Data Derived Data [Munzner (ill. Maguire), 2014] 8

9 Search Location known Location unknown Target known Lookup Locate Target unknown Browse Explore What does a user know? Lookup: check bearings Locate: find on a map Browse: what s nearby Explore: where to go (patterns) [Munzner (ill. Maguire), 2014] 9

10 Query Identify Compare Summarize Number of targets: One, Some (Often 2), or All Identify: characteristics or references Compare: similarities and differences Summarize: overview of everything [Munzner (ill. Maguire), 2014] 10

11 Quiz Tuesday, October 2 Only part of class Format: - Multiple Choice - Short Answer (multi-part) Material: - Ch. 1-3, 5 - HTML, CSS, SVG, JavaScript, D3 Examples: - Given dataset, which attributes are categorical, ordered, quantitative? - What does the following expression evaluate to? [[1,2],[5,2]].map(d => d.reduce((s,t) => s+t)) 11

12 d3.js Overview Examples Documentation Source Data-Driven Documents D3.js is a JavaScript library for manipulating documents based on data. D3 helps you bring data to life using HTML, SVG, and CSS. D3 s emphasis on web standards gives you the full capabilities of See more examples. modern browsers without tying yourself to a proprietary framework, combining powerful visualization components and a data-driven approach to DOM manipulation. 12

13 D3 Data Joins Two groups: data and visual elements Three parts of the join between them: enter, update, and exit enter: s.enter(), update: s, exit: s.exit() Enter Update Exit Data Visual Elements 13

14 More D3 Original Slide Format: - Observable Notebook:

15 D3 v4+ vs. v3 v4+ breaks a lot of v3 code v4+ is more modular, can build libraries that include only the parts you care about - Why worry about this? Result is that there is a flat namespace now - d3.scale.linear => d3.scalelinear More important change: selections are immutable now - Used to be that enter() modified the selection to include any appended items - Use merge to explicitly merge the enter and update selections - s.enter().append("rect").merge(s) 15

16 D3 v3 Selections var circlebinding = svg.selectall("circle").data(data); circlebinding.style("fill", "blue"); // UPDATE circlebinding.enter().append("circle") // ENTER; modifies UPDATE!.style("fill", "green"); circlebinding // ENTER + UPDATE.style("stroke", "black"); 16

17 D3 v4 Selections var circlebinding = svg.selectall("circle").data(data); circlebinding.style("fill", "blue"); // UPDATE circlebinding.enter().append("circle") // ENTER; modifies UPDATE!.style("fill", "green");.merge(circlebinding) // ENTER + UPDATE.style("stroke", "black"); 17

18 Merge Merge creates a new selection that includes the items from both selections If you want to update all elements (including those just added via enter), use merge! 18

19 Transitions Nested transitions (those that "hang off" of a parent transition) follow immediately after the parent transition In v3, they had to be delayed accordingly 19

20 Visual Encoding 20

21 Visual Encoding How should we visualize this data? Name Region Population Life Expectancy Income China East Asia & Pacific India South Asia United States America Indonesia East Asia & Pacific Brazil America Pakistan South Asia Bangladesh South Asia Nigeria Sub-Saharan Africa Japan East Asia & Pacific Mexico America Philippines East Asia & Pacific Vietnam East Asia & Pacific Germany Europe & Central Asia Ethiopia Sub-Saharan Africa Turkey Europe & Central Asia

22 Potential Solution Bubbles FACTS TEACH ABOUT HOW TO USE Share! " # $ English years Color World Regions Select Search... Afghanistan Life expectancy Albania Algeria Andorra Angola Antigua and Barbuda Size Population, total Zoom 100% OPTIONS EXPAND PRESENT [Gapminder, Wealth & Health of Nations] 22

23 Another Solution Bubbles FACTS TEACH ABOUT HOW TO USE Share! " # $ English Size: Population, total Color World Regions Select Search... Afghanistan Albania Algeria Andorra Angola Antigua and Barbuda Argentina Armenia Australia Size Population, total OPTIONS EXPAND PRESENT [Gapminder, Wealth & Health of Nations] 23

24 What about change over years? 24

25 Another Solution showing trends over time Bubbles FACTS TEACH ABOUT HOW TO USE Share! " # $ English Income per person (GDP/capita, PPP$ inflation-adjusted) DATA DO United S Color World Regions 32k Russia 16k China Nigeria Show Search... Hide all shapes except: United States Russia Nigeria China Afghanistan Albania Algeria Andorra RESET FIND OPTIONS EXPAND PRESENT [Gapminder, Wealth & Health of Nations] 25

26 Visual Encoding How do we encode data visually? - Marks are the basic graphical elements in a visualization - Channels are ways to control the appearance of the marks Marks classified by dimensionality: Points Lines Areas Also can have surfaces, volumes Think of marks as a mathematical definition, or if familiar with tools like Adobe Illustrator or Inkscape, the path & point definitions 26

27 Visual Channels Position Color Horizontal Vertical Both Shape Tilt Size Length Area Volume [Munzner (ill. Maguire), 2014] 27

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

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

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

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

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 602-02) Tabular Data Dr. David Koop Visual Encoding How should we visualize this data? Name Region Population Life Expectancy Income China East Asia & Pacific 1335029250

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

Global entertainment and media outlook Explore the content and tools

Global entertainment and media outlook Explore the content and tools www.pwc.com/outlook Global entertainment and media outlook Explore the content and tools A comprehensive online source of global analysis for consumer/ end-user and advertising spending 5-year forecasts

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

Safety. Introduction

Safety. Introduction KickStart Guide Safety Introduction Safety precautions Before using this product, see the safety precautions associated with your instrument. The instrumentation associated with this software is intended

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

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

Trends and Opportunities in the Global Printing Market. Thayer Long President Association for Print Technologies May 2018

Trends and Opportunities in the Global Printing Market. Thayer Long President Association for Print Technologies May 2018 Trends and Opportunities in the Global Printing Market Thayer Long President Association for Print Technologies May 2018 Geographic scope The 26 countries selected and analyzed span across all global regions,

More information

Digital EAGLEs. Outlook and perspectives

Digital EAGLEs. Outlook and perspectives 2016 Digital EAGLEs Outlook and perspectives Fixed and Mobile broadband adoption rates in the next decade Changes in Fixed-Broadband penetration 2014-25 Changes in Mobile-Broadband penetration 2014-25

More information

Global Smoothie Market Insights, Forecast to 2025

Global Smoothie Market Insights, Forecast to 2025 Report Information More information from: https://www.wiseguyreports.com/reports/3366612-global-smoothie-market-insights-forecast-to-2025 Global Smoothie Market Insights, Forecast to 2025 Report / Search

More information

Power Analyzer Firmware Update Utility Version Software Release Notes

Power Analyzer Firmware Update Utility Version Software Release Notes Power Analyzer Firmware Update Utility Version 3.1.0 Software Release Notes Contents General Information... 2... 2 Supported models... 2 Minimum system requirements... 2 Installation instructions... 2

More information

No Purchase needed

No Purchase needed www.dialntalk.co.uk No Purchase needed About DialnTalk DialnTalk is the instant dial service developed to offer you easy to use low cost international telephone calls. Our aim is to provide a hassle free

More information

Global Ultrabooks Market Insights, Forecast to 2025

Global Ultrabooks Market Insights, Forecast to 2025 Report Information More information from: https://www.wiseguyreports.com/reports/3379446-global-ultrabooks-market-insights-forecast-to-2025 Global Ultrabooks Market Insights, Forecast to 2025 Report /

More information

Liberalisation and User Driven

Liberalisation and User Driven Liberalisation and User Driven Innovation in Africa Sam Paltridge, OECD Liberalisation enabled access growth Fixed and Mobile Subscriptions per 100 inhabitants in Low income countries 30 25 20 15 Global

More information

USB On The Go AppNote October 5, 2014

USB On The Go AppNote October 5, 2014 USB On The Go AppNote 2456935.971748 October 5, 2014 INTRODUCTION USB On-The-Go (OTG) is a technology that allows a specially configured USB port to act as both a device port and a host port. A device

More information

Step 1: New Portal User User ID Created Using IdentityIQ (IIQ)

Step 1: New Portal User User ID Created Using IdentityIQ (IIQ) Rockwell Automation PartnerNetwork Portal Single Sign-on (SSO) Login to Rockwell Automation PartnerNewtork Portal for Commercial Programs Participants Scope: This job aid provides instructions on how to

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

BSRIA Air Conditioning Worldwide Market Intelligence

BSRIA Air Conditioning Worldwide Market Intelligence 2013 BSRIA Air Conditioning Worldwide Market Intelligence Over 25 years experience researching key markets worldwide market intelligence in 94 Countries integrated technical and market expertise management

More information

PLEASE NOTE: firms may submit one set of research questionnaires covering both China and Hong Kong or separate sets for each jurisdiction

PLEASE NOTE: firms may submit one set of research questionnaires covering both China and Hong Kong or separate sets for each jurisdiction Americas Argentina (Banking and finance; Capital markets; M&A; Project development) Bahamas (Financial and corporate) Barbados (Financial and corporate) Bermuda (Financial and corporate) Bolivia (Financial

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

Textile Industry Challenges

Textile Industry Challenges 6th Breakout Session: Textile Industry Challenges Dr. Christian Schindler Director General International Textile Manufacturers Federation (ITMF) ICAC Plenary Meeting 2013 October 3, 2013 14:00 to 15:30

More information

Excerpt Poland: LTE and Fiber Rollouts to Turn Telecom Market Around, M&A to Continue

Excerpt Poland: LTE and Fiber Rollouts to Turn Telecom Market Around, M&A to Continue Excerpt Poland: LTE and Fiber Rollouts to Turn Telecom Market Around, M&A to Continue This report is part of Pyramid Research s series of Europe Country Intelligence Reports February 2014 Edition Olena

More information

Insights for Clubs

Insights for Clubs Insights for Clubs - 2015 Enjoying success requires the ability to adapt. Only by being open to change will you have a true opportunity to get the most from your Market. Key consumer trends Diverse population

More information

Spoka Meet Audio Calls Rates Dial-In UK

Spoka Meet Audio Calls Rates Dial-In UK Spoka Meet Audio Calls Rates Dial-In UK Country Toll/Toll Free Landline/Mobile GBP Argentina Toll Landline 0 Australia Toll Landline 0 Austria Toll Landline 0 Bahrain Toll Landline 0 Belgium Toll Landline

More information

Dashboard. Feb 18, Feb 18, 2008 Comparing to: Site. 13,318 Visits 28,414 Pageviews 2.13 Pages/Visit

Dashboard. Feb 18, Feb 18, 2008 Comparing to: Site. 13,318 Visits 28,414 Pageviews 2.13 Pages/Visit Dashboard Site Usage 13,318 Visits 28,414 Pageviews 2.13 Pages/Visit 63.93% Bounce Rate 00:03:00 Avg. Time on Site 73.14% % New Visits Visitors Overview Map Overlay world Visitors 9,744 Traffic Sources

More information

October 2009 Table 1: International Fixed Voice calls (per minute charges when calling from a fixed line) SAARC All tariffs in USD

October 2009 Table 1: International Fixed Voice calls (per minute charges when calling from a fixed line) SAARC All tariffs in USD October 2009 Table 1: International Fixed Voice calls (per minute charges when calling from a fixed line) All tariffs in USD South East Asia East Asia From/To Afghanist Bangladesh Bhutan Nepal Skype an

More information

Note: All slides are under NDA

Note: All slides are under NDA 1 Note: All slides are under NDA The Inclusive Internet Index (3i) In-depth look at the global state of Internet connectivity and inclusiveness. This is the second year of the index, designed to build

More information

The Inclusive Internet Index (3i)

The Inclusive Internet Index (3i) 1 . The Inclusive Internet Index (3i) In-depth look at the global state of Internet connectivity and inclusiveness. This is the second year of the index, designed to build a time series of important data.

More information

More information from: https://www.wiseguyreports.com/reports/ dry-cleaning-and-laundry-services-global-marketreport-2018-including

More information from: https://www.wiseguyreports.com/reports/ dry-cleaning-and-laundry-services-global-marketreport-2018-including Report Information More information from: https://www.wiseguyreports.com/reports/2947663-dry-cleaning-and-laundry-services-global-marketreport-2018-including Dry-Cleaning And Laundry Services Global Market

More information

Background Information. Instructions. Problem Statement. HOMEWORK HELP PROJECT INSTRUCTIONS Homework #5 Help Travel and Tourism Industry Problem

Background Information. Instructions. Problem Statement. HOMEWORK HELP PROJECT INSTRUCTIONS Homework #5 Help Travel and Tourism Industry Problem Background Information Travel and tourism comprise one of the largest industries in the world. Across the globe, it supports 101 million jobs and contributes $2.1 trillion to the world economy. The travel

More information

Supplier Responding to New Products RFP Event

Supplier Responding to New Products RFP Event This presentation contains instructions focused on the required steps needed for suppliers to respond to a RFP request made from the New Products group. For more general information on how to respond to

More information

Link-OS Environment Bluetooth Low Energy AppNote October 4, 2014

Link-OS Environment Bluetooth Low Energy AppNote October 4, 2014 Link-OS Environment Bluetooth Low Energy AppNote 2456934.977326 October 4, 2014 INTRODUCTION Bluetooth Low Energy, also referred to as Bluetooth LE, BTLE or Bluetooth Smart, is a new communication protocol

More information

ENHANCED INTERIOR GATEWAY ROUTING PROTOCOL STUB ROUTER FUNCTIONALITY

ENHANCED INTERIOR GATEWAY ROUTING PROTOCOL STUB ROUTER FUNCTIONALITY APPLICATION NOTE ENHANCED INTERIOR GATEWAY ROUTING PROTOCOL STUB ROUTER FUNCTIONALITY OVERVIEW Enhanced Interior Gateway Routing Protocol (EIGRP).Stub Router functionality, which Cisco introduced in Cisco

More information

Out of Bundle Vodafone

Out of Bundle Vodafone Out of Bundle Vodafone Out of Bundle Charges - Vodafone The following charges apply once you have used your allowance, or if you call/text/browse outside of your allowance: Standard UK call charges Cost

More information

THE POWER OF WiNG SIMPLIFIED

THE POWER OF WiNG SIMPLIFIED THE POWER OF WiNG SIMPLIFIED If you have a small to mid-size business, you share many of the same wireless networking needs as a large business. Just like the large business, your workers need enterprise-class

More information

Patent Portfolio Overview May The data in this presentation is current as of this date.

Patent Portfolio Overview May The data in this presentation is current as of this date. Patent Portfolio Overview May 2018 1 1 The data in this presentation is current as of this date. Table of Contents Overview HEVC Standard Versions in Licensing Program Patent Evaluation Portfolio Growth

More information

Transforming networks and services for communications service providers

Transforming networks and services for communications service providers Transforming networks and services for communications service providers Do you need more agility to keep pace with new challengers in your market? The change is happening right now The growing number of

More information

Kernel Wt. 155,076, ,646, ,723, ,951, ,015, ,966, Crop Year

Kernel Wt. 155,076, ,646, ,723, ,951, ,015, ,966, Crop Year Almond Industry Position Report 2015-2016 Crop Year Salable Forecast Million Lbs. 2015-2016 Kernel Wt. 2014-2015 Kernel Wt. OCTOBER 2015 % Change 1. Carryin August 1, 2015 2. Crop Receipts to Date 3. [2%

More information

Consumer Insights. Evaluating mobile engagement. February GSMA Intelligence gsmaintelligence.com

Consumer Insights. Evaluating mobile engagement. February GSMA Intelligence gsmaintelligence.com GSMA Intelligence Consumer Insights Evaluating mobile engagement February 2018 GSMA Intelligence gsmaintelligence.com info@gsmaintelligence.com @GSMAi GSMA Intelligence The GSMA represents the interests

More information

Prior Knowledge Chart

Prior Knowledge Chart Prior Knowledge Chart Country Economic Status Physical Characteristics Cultural Characteristics Argentina Australia Bolivia Botswana Canada China Cote d' Ivoire Fiji Germany Guatemala Country Economic

More information

digital.vector Global Animation Industry Strategies, Trends & Opportunities digital.vector

digital.vector Global Animation Industry Strategies, Trends & Opportunities digital.vector Global Animation Industry Strategies, Trends & Opportunities digital.vector Global Animation Industry: Strategies, Trends and Opportunities 1 Contents Global Animation Industry History and Evolution Industry

More information

Software-defined Networking Development Model

Software-defined Networking Development Model Software-defined Networking Development Model Explore your roadmap to network programmability with a consulting engagement that assesses your readiness for software-defined networking Business demands

More information

Global Mobile Patient Lifts Market Research Report 2018

Global Mobile Patient Lifts Market Research Report 2018 Report Information More information from: https://www.wiseguyreports.com/reports/3254926-global-mobile-patient-lifts-market-research-report- 2018 Global Mobile Patient Lifts Market Research Report 2018

More information

Computer

Computer 2011-2014 Computer 2014.12. Contents 1. 2011-2013 China Computer Export Trend Analysis... 3 1.1. 2011-2013 China Computer Export Quantity Trend Analysis... 3 1.2. 2011-2013 China Computer Export Amount

More information

EE Pay Monthly Add-Ons & Commitment Packs. Version

EE Pay Monthly Add-Ons & Commitment Packs. Version EE Pay Monthly Add-Ons & Commitment Packs Version 1A Available from 28 October 2015 1 COMMITMENT PACKS In addition to the allowances included in our Standard and EE Extra plans for both Pay Monthly handset

More information

Merrill DataSite User Guide

Merrill DataSite User Guide Merrill DataSite User Guide 1 CONTENTS Logging On 2 Logging On 2 Forgot Password? 2 Merrill Technical Support 4 Preferences 5 Change Password 5 Email Alerts 6 My Profile 7 Index 8 Favorites 9 Fileroom

More information

Att.net yahoo mail login page accouint

Att.net yahoo mail login page accouint Att.net yahoo mail login page accouint The Borg System is 100 % Att.net yahoo mail login page accouint Get a free email account from Yahoo Mail. Your email comes with 1000 GB of free storage, powerful

More information

Emergency Communications and Disaster Management

Emergency Communications and Disaster Management Emergency Communications and Disaster Management Matthew Perkins Economic Affairs Officer UN-ESCAP What s the Problem? We need resilient telecommunications networks for socio-economic development and disaster

More information

Monenco Iran Consulting Engineers

Monenco Iran Consulting Engineers Monenco Iran Consulting Engineers ICT and Dispatching Deputy First Session of the Asia-Pacific Information Superhighway Steering Committee By: Siamak Hossein Khalaj November 2017 Global Trends: Broadband

More information

STA 218: Statistics for Management

STA 218: Statistics for Management Al Nosedal. University of Toronto. Fall 2017 My momma always said: Life was like a box of chocolates. You never know what you re gonna get. Forrest Gump. Summarizing Quantitative Data A common graphical

More information

THE STATE OF ICT IN SOUTH AND SOUTH-WEST ASIA

THE STATE OF ICT IN SOUTH AND SOUTH-WEST ASIA THE STATE OF ICT IN SOUTH AND SOUTH-WEST ASIA Thimphu, Bhutan, 7 December 216 Siope Vakataki Ofa Economic Affairs Officer ICT and Disaster Risk Reduction Division ESCAP Fixed broadband Fixed-broadband

More information

Improving digital infrastructure for a better connected Thailand

Improving digital infrastructure for a better connected Thailand Improving digital infrastructure for a better connected 1 Economies across the globe are going digital fast The Global GDP forecast 2017 Economies are setting policies to encourage ICT investment Global

More information

World Broadband Statistics: A Short Report from Global Broadband Statistics

World Broadband Statistics: A Short Report from Global Broadband Statistics World Broadband Statistics: A Short Report from Global Broadband Statistics Q1 2012 June 2012 Point Topic Ltd 73 Farringdon Road London EC1M 3JQ, UK Tel. +44 (0) 20 3301 3305 Email bbus@point-topic.com

More information

LinkedIn Economic Graph Project

LinkedIn Economic Graph Project LinkedIn Economic Graph Project Understanding Trade Through International Connections In Partnership with the Ontario Ministry of International Trade FEBRUARY 8 The Economic Graph as a Tool to Advance

More information

Alldatasheet INTRODUCTION. I N T E R B I R D Far beyond Your Expectation! Introduction of Alldatasheet March *

Alldatasheet INTRODUCTION. I N T E R B I R D Far beyond Your Expectation! Introduction of Alldatasheet March * INTRODUCTION I N T E R B I R D Far beyond Your Expectation! of March 2 0 18 * E-Mail : Kevin@alldatasheet.com 1 Contents is About interface information How get datasheets Visitor s Information - Top 20

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

Polyurethane Adhesives Market by Technology (Solventborne, Reactive, Dispersion, and Hot Melt), Type (Thermoset & Thermoplastic), Application

Polyurethane Adhesives Market by Technology (Solventborne, Reactive, Dispersion, and Hot Melt), Type (Thermoset & Thermoplastic), Application Polyurethane Adhesives Market by Technology (Solventborne, Reactive, Dispersion, and Hot Melt), Type (Thermoset & Thermoplastic), Application (Building & Construction, Packaging, Automotive, Footwear,

More information

GLOBAL MOBILE PAYMENT METHODS: FIRST HALF 2016

GLOBAL MOBILE PAYMENT METHODS: FIRST HALF 2016 PUBLICATION DATE: OCTOBER 2016 PAGE 2 GENERAL INFORMATION I PAGE 3 KEY FINDINGS I PAGE 4-8 TABLE OF CONTENTS I PAGE 9 REPORT-SPECIFIC SAMPLE CHARTS I PAGE 10 METHODOLOGY I PAGE 11 RELATED REPORTS I PAGE

More information

MONGODB. Terminology MODULE 9

MONGODB. Terminology MODULE 9 MODULE 9 MONGODB Terminology > A document is the basic unit of data for MongoDB and is roughly equivalent to a row in a relational database management system (but much more expressive). > A collection

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

Fast 3D EMC/EMI Scan with Detectus Scanning System and Tektronix Real Time Spectrum Analyzers CASE STUDY

Fast 3D EMC/EMI Scan with Detectus Scanning System and Tektronix Real Time Spectrum Analyzers CASE STUDY Fast 3D EMC/EMI Scan with Detectus Scanning System and Tektronix Real Time Spectrum Analyzers Fast 3D EMC/EMI Scan with Detectus Scanning System and Tektronix Real Time Spectrum Analyzers Customer Solution

More information

Managed Network Services. Managing your network to enable your digital business

Managed Network Services. Managing your network to enable your digital business Managed Network Services Managing your network to enable your digital business Your network more efficient today, more effective tomorrow How can you optimise cost and performance today, and help your

More information

Allianz SE Reinsurance Branch Asia Pacific Systems Requirements & Developments. Dr. Lutz Füllgraf

Allianz SE Reinsurance Branch Asia Pacific Systems Requirements & Developments. Dr. Lutz Füllgraf Allianz SE Reinsurance Branch Asia Pacific Systems Requirements & Developments Dr. Lutz Füllgraf Technology and Innovation for Insurance Conference 2007, Sydney 22 March 2007 Contents 1 Importance of a

More information

Technology Lifecycle Management Assessment. Know your network - achieve business agility

Technology Lifecycle Management Assessment. Know your network - achieve business agility Technology Lifecycle Management Assessment Know your network - achieve business agility Your network is the platform on which you build the success of your organisation. In addition to connecting your

More information

Partner Guidelines to sign Agreement. May, 2017

Partner Guidelines to sign Agreement. May, 2017 Partner Guidelines to sign Agreement May, 2017 Europe, Middle East and Africa Americas Asia Pacific United Kingdom Germany Other countries Canada United States Peru Chile Brazil Other countries Taiwan

More information

PLATINUM SERVICES TELECOMMUNICATION COMPANY S OVERVIEW

PLATINUM SERVICES TELECOMMUNICATION COMPANY S OVERVIEW PLATINUM SERVICES TELECOMMUNICATION COMPANY S OVERVIEW COMPANY S OVERVIEW Platinum Services Telecommunication is an international telecommunication company based and licensed in Malta (EU), focused on

More information

Cisco Extensible Provisioning and Operations Manager 4.5

Cisco Extensible Provisioning and Operations Manager 4.5 Data Sheet Cisco Extensible Provisioning and Operations Manager 4.5 Cisco Extensible Provisioning and Operations Manager (EPOM) is a Web-based application for real-time provisioning of the Cisco BTS 10200

More information

IATF Stakeholder Conference

IATF Stakeholder Conference IATF Stakeholder Conference 13 September 2017 Oberursel, Germany Rüdiger Funke (BMW Group) Number of certified sites against ISO/TS 16949 (and IATF 16949) 70,000 60,000 50,000 40,000 30,000 30,156 50,071

More information

Access Code and Phone Number

Access Code and Phone Number Algeria Dial International collect/reverse charge number: 1-212-559-5842 Argentina For phones using Telecom: Dial 0-800-555-4288; wait for prompt, then dial 866- For phones using Telefonica: Dial 0-800-222-1288;

More information

Data Visualization went Wrong.

Data Visualization went Wrong. Data Visualization Aik Choon Tan, Ph.D. Associate Professor of Bioinformatics Division of Medical Oncology Department of Medicine aikchoon.tan@ucdenver.edu 10/19/2018 http://tanlab.ucdenver.edu/labhomepage/teaching/bsbt6111/

More information

Created For The Emerging Markets

Created For The Emerging Markets Creating a Successful Business in Emerging Markets Antti Vanhanen ICT & Innovation Africa Seminar June 3, 2010 1 Created For The Emerging Markets Targeted at the non-urban consumers in emerging markets

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

For: Ministry of Education From Date: 19 November 18-2 December 18 Venue: M1 Shops

For: Ministry of Education From Date: 19 November 18-2 December 18 Venue: M1 Shops For: Ministry of Education From Date: 19 November 18-2 December 18 Venue: M1 Shops $200 OFF HANDSETS For new line / port-in / re-contract on mysim e 90 and above plan Reg+ and above plan $150 OFF HANDSETS

More information

Getting Started with Windows Mobile Development Windows Mobile SDK C#

Getting Started with Windows Mobile Development Windows Mobile SDK C# Getting Started with Windows Mobile Development Windows Mobile SDK C# Contents Overview... 2 Target Audience... 2 System Prerequisites... 2 Installations... 5 Creating Your First Zebra Mobile Application...

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

E-Seminar. Voice over IP. Internet Technical Solution Seminar

E-Seminar. Voice over IP. Internet Technical Solution Seminar E-Seminar Voice over IP Internet Technical Solution Seminar Voice over IP Internet Technical Solution Seminar 3 Welcome 4 Objectives 5 Telephony in Business 6 VoIP and IP Telephony 7 Traditional Telephony

More information

Opportunities and Challenges in a World of Global Information

Opportunities and Challenges in a World of Global Information Opportunities and Challenges in a World of Global Information Carlos A. P. Braga Senior Manager, Informatics Program/Director, Development Gateway Information Solutions Group The World Bank Globalization

More information

1 INTRODUCTION OBJECTIVES OF THE STUDY MARKET DEFINITION MARKET SCOPE... 15

1 INTRODUCTION OBJECTIVES OF THE STUDY MARKET DEFINITION MARKET SCOPE... 15 TABLE OF CONTENTS 1 INTRODUCTION... 14 1.1 OBJECTIVES OF THE STUDY... 14 1.2 MARKET DEFINITION... 14 1.3 MARKET SCOPE... 15 1.3.1 MARKETS COVERED... 15 1.4 YEARS CONSIDERED FOR THE STUDY... 17 1.5 CURRENCY...

More information

END-OF-SALE AND END-OF-LIFE ANNOUNCEMENT FOR THE CISCO MEDIA CONVERGENCE SERVER 7845H-2400

END-OF-SALE AND END-OF-LIFE ANNOUNCEMENT FOR THE CISCO MEDIA CONVERGENCE SERVER 7845H-2400 END-OF-LIFE NOTICE, NO. 2566 END-OF-SALE AND END-OF-LIFE ANNOUNCEMENT FOR THE CISCO MEDIA CONVERGENCE SERVER 7845H-2400 Cisco Systems announces the end of life of the Cisco Media Convergence Server 7845H-2400.

More information

Emerging Markets Payment Index: Q Report by Fortumo

Emerging Markets Payment Index: Q Report by Fortumo Emerging Markets Payment Index: Q2 2015 Report by Fortumo Introduction The Emerging Markets Payment Index is intended to be used by web, game and app developers for benchmarking their revenue in markets

More information

Cisco MDS 9000 Family and EMC ECC Integration

Cisco MDS 9000 Family and EMC ECC Integration White Paper Cisco MDS 9000 Family and EMC ECC Integration INTRODUCTION Customers today prefer to manage their storage area network (SAN) from a centralized management application. This approach offers

More information

addendum Uptime Cisco customer interactive solutions

addendum Uptime Cisco customer interactive solutions addendum Uptime Cisco customer interactive solutions What makes Uptime tick? Uptime is made up of a number of service elements, which all work together to minimise downtime and assure business continuity.

More information

Regional Focus: Asia Pacific - the world's largest mobile phone market

Regional Focus: Asia Pacific - the world's largest mobile phone market Regional Focus: Asia Pacific - the world's largest mobile phone market Euromonitor International 10 March 2010 Asia Pacific has the highest number of mobile phone subscriptions of all world regions, yet

More information

Overlapping Experiment Infrastructure: More, Better, Faster. Diane Tang, Ashish Agarwal, Mike Meyer, Deirdre O'Brien

Overlapping Experiment Infrastructure: More, Better, Faster. Diane Tang, Ashish Agarwal, Mike Meyer, Deirdre O'Brien Overlapping Experiment Infrastructure: More, Better, Faster Diane Tang, Ashish Agarwal, Mike Meyer, Deirdre O'Brien Why run experiments? Experiments: Live traffic = incoming search queries Experiments

More information

Kernel Wt. 104,577, ,563, ,141, ,212, ,145, ,357, Crop Year

Kernel Wt. 104,577, ,563, ,141, ,212, ,145, ,357, Crop Year Almond Industry Position Report 2015-2016 Crop Year Salable Forecast Million Lbs. 2015-2016 Kernel Wt. SEPTEMBER 2015 2014-2015 Kernel Wt. % Change 1. Carryin August 1, 2015 2. Crop Receipts to Date 3.

More information

CISCO NETWORK CONNECTIVITY CENTER BUSINESS DASHBOARD

CISCO NETWORK CONNECTIVITY CENTER BUSINESS DASHBOARD DATA SHEET CISCO NETWORK CONNECTIVITY CENTER BUSINESS DASHBOARD The Cisco Network Connectivity Center (NCC) Business Dashboard displays the results of powerful analysis in a flexible, Web-based user interface.

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

L-force Controller 3200 C. Control and visualisation compactly combined

L-force Controller 3200 C. Control and visualisation compactly combined L-force Controller 3200 C Control and visualisation compactly combined L-force Your future is our drive 2 Cost efficiency, saving time and improving quality are the challenges of the future. Lenze is tackling

More information

Hybrid Wide-Area Network Application-centric, agile and end-to-end

Hybrid Wide-Area Network Application-centric, agile and end-to-end Hybrid Wide-Area Network Application-centric, agile and end-to-end How do you close the gap between the demands on your network and your capabilities? Wide-area networks, by their nature, connect geographically

More information

EventBuilder.com. International Audio Conferencing Access Guide. This guide contains: :: International Toll-Free Access Dialing Instructions

EventBuilder.com. International Audio Conferencing Access Guide. This guide contains: :: International Toll-Free Access Dialing Instructions EventBuilder.com International Audio Conferencing Access Guide TM This guide contains: :: International Toll-Free Access Dialing Instructions :: ATFS (Access Toll-Free Service) Dialing Instructions ::

More information

addendum Uptime Tandberg converged communications solutions

addendum Uptime Tandberg converged communications solutions addendum Uptime Tandberg converged communications solutions What makes Uptime tick? Uptime is made up of a number of service elements, which all work together to minimise downtime and assure business continuity.

More information

FACTS AND OPPORTUNITIES IN BRAZIL. Gartner IT Security Summit Washington DC, June 2008

FACTS AND OPPORTUNITIES IN BRAZIL. Gartner IT Security Summit Washington DC, June 2008 FACTS AND OPPORTUNITIES IN BRAZIL Gartner IT Security Summit Washington DC, June 2008 OUR OBJECTIVE TODAY Raise your awareness that there are several Brazilian IT Services and Solutions Providers that

More information

Server Virtualisation Assessment. Service Overview

Server Virtualisation Assessment. Service Overview Server Virtualisation Assessment Service Overview Our Server Virtualisation Assessment helps organisations reduce server total cost of ownership and make informed decisions around capacity planning by

More information

The Role of SANAS in Support of South African Regulatory Objectives. Mr. Mpho Phaloane South African National Accreditation System

The Role of SANAS in Support of South African Regulatory Objectives. Mr. Mpho Phaloane South African National Accreditation System The Role of SANAS in Support of South African Regulatory Objectives Mr. Mpho Phaloane South African National Accreditation System Outline of Presentation INTRODUCTION STATUS OF SANAS TECHNICAL INFRASTRUCTURE

More information

Broadnet is an international leading Business Messaging Solution Provider. Broadnet joined the GSMA as an Associate Member also it has been awarded

Broadnet is an international leading Business Messaging Solution Provider. Broadnet joined the GSMA as an Associate Member also it has been awarded Broadnet is an international leading Business Messaging Solution Provider. Broadnet joined the GSMA as an Associate Member also it has been awarded the ISO 27001:2013 certification. Broadnet has been a

More information