Data Visualisation Outline

Total Page:16

File Type:pdf, Size:1020Kb

Data Visualisation Outline Data Visualisation Outline • What is data visualisation • Different types of visualisation • Types of data and ways to encode it • Technologies for visualisation • An intro to D3 Learning Objectives • By the end of this presentation, you will be able to – Describe • What data visualisations can be used for • The difference between exploratory and explanatory visualisations • How different types of data can be encoded visually • Understand the difference between a visualisation library such as D3 and visualisation tools available on the Web • Understand some important concepts about D3 WHAT IS A DATA VISUALISATION? A Basic Definition (1) • “The Visual Display of Quantitative Information” Edward Tufte • The title of the book offers a good definition • The book itself is a classic on the subject • http://www.edwardtufte.com/tufte/books_vdqi A Basic Definition (2) • Or: – “to communicate information clearly and efficiently via statistical graphics, plots and information graphics” – https://en.wikipedia.org/wiki/Data _visualization Detroit - Data • Consider the difference between the display of the same data in the following two slides • Which of these best conveys the story behind the data? • Why is this? Detroit - Data • Available from: http://portal.datadrivendetroit.org/datasets/5efe44008cad4ea98377e7129c98c69c_0 Detroit: Visualising Occupancy https://www.motorcitymapping.org/#t=parcels&s=detroit&f=all&x=preset2 Data Visualisation in the 19th Century • John Snow investigated cases of Cholera in London in 1854 • He observed clusters of cases around Broad Street • Having investigated further, he ascertained that all Cholera cases were from people who drank water from the Broad Street pump • He had the handle removed, and the incidences subsequently reduced • The Visualisation of the Cholera cases is on the next slide. Instances of Cholera in London, 1854 Types of Data Visualisation • Generally split into two categories – Exploratory – Explanatory Exploratory Data Visualisation • Main purpose is to ‘explore’ the data • Allow you to look at data from different angles • Result: – Get a sense of what the data is telling you – Find the interesting nuggets of the data Explanatory Data Visualisation • Main purpose is to ‘explain’ your findings • Focus on communicating the key nuggets to others • A focus on – Context – Story – Elimination of clutter Explanatory Data Visualisation (1) http://wheredoesmymoneygo.org/bubbletree-map.html#/~/total Exploratory Data Visualisation – Visualisations such as these allow you to change the filters to ‘explore’ the data from an angle that is interesting to you http://www.oecdbetterlifeindex.org/ Data for Visualisation • The first step to making a good visualisation is understanding what type of data you have. • Context – what are you trying to display? • Depending on the data, different styles of visualisation may be suitable. Data Types • Continuous – Data for which there is no exact value – E.g., Amount of rain in the UK this summer • Discrete – Typically an integer, a finite, identifiable number – E.g., number of cars owned • Nominal – Categories of data with no order. – E.g., favourite football team Data Encodings • Encoding is mapping data to a visual object • Different data require different encodings • Think about these three types of data, before looking at the next slide. Discrete Continuous Nominal Data with a finite, identifiable Values which cannot be exactly Categories of data with no order number determined E.g., number of cars owned E.g., amount of rain in the UK this E.g., favourite football team summer Retinal Variables (1) SIZE ORIENTATION / ROTATION COLOUR • These are useful for displaying ordered data – Both discrete and continuous data types would work here – E.g. larger objects to represent owning more cars – E.g. darker blue to identify areas on a map where there has been more rainfall Retinal Variables (2) COLOUR (Hue) • These are useful for displaying nominal data – E.g. red to represent Manchester United supporters, blue to represent Chelsea Video • Hans Rosling – 200 Countries, 200 Years, 4 Minutes - The Joy of Stats - BBC Four – https://youtu.be/jbkSRLYSojo • Note down any data encodings you see – For each variable • List what type of data it is • And what visual encoding is used (e.g. size, position, colour…) How Did You Do? Variable Type Encoding Life Expectancy Quantitative (discrete) Position (y) Income Quantitative (continuous) Position (x) Total Population Quantitative (discrete) Size Geographical Region Nominal Colour Time Ordinal Animation Visual Encodings • In 1985, Cleveland and McGill published in the Journal of the American Statistical Association • ‘Graphical Perception and Graphical Methods for Analyzing Scientific Data’ • They proposed basic guidelines for choosing an appropriate graphic form • The paper lists and ranks 10 ‘elementary perceptual tasks’ Cleveland and McGill • Rank of graphic properties based on human ability to understand information • These are particularly relevant for detecting differences and making comparisons – Position along a common scale – Position on identical but nonaligned scales – Length – Angle, slope – Area – Volume, density, colour saturation – Colour hue • For accurate comparisons, graphical forms from the top of this list should be used. Cleveland and McGill - Example It is easier for humans to perceive the differences the values for 3.5 X=0.2 and X=0.4 using position along a common scale (on the scatter plot), than by using area (in the bubble chart). 3 2.5 2 1.5 1 0.5 0 0 0.2 0.4 0.6 0.8 0 0.2 0.4 0.6 0.8 Chartjunk • If something can be removed from a chart without changing its meaning, it’s ‘chartjunk’. • Why would one want to combat chartjunk? – Obscures true meaning and story. – Imagery is not information. – Imagery draws attention away from the data • Short-term memory resources are used to identify the images rather than understand the chart. • Term coined by Edward Tufte in the 1980s Chartjunk Example Number of customers 6000 5000 4000 Necessary? 3000 Number of customers 2000 Necessary? 1000 0 Year 1 Year 2 Year 3 Year 4 Year 5 Necessary? The Beauty Paradox • How complex should a graphic be? – How much should you show? • Tufte emphasises minimalism – Communicate as much information from as few pixels as possible • Depending on the audience, this may or may not be the best approach • When creating a visualisation, you must balance the need to focus on the story of the data, with art and design decisions to help your audience engage with and remember the visual. TECHNOLOGIES BEHIND VISUALISATIONS ON THE WEB Web Technologies JavaScript Behaviour CSS Presentation HTML Structure Hypertext • Text that contains links to other texts. • E.g. HTML – Hypertext Markup Language – Defines basic structure and content of a Web page using markup ‘tags’. – Each tag describes a type of content • <body></body> For the body of an html page • <p></p>A paragraph – Read by a Web browser, which decides how to display the content. CSS • Cascading Style Sheets define the design and presentation of an HTML document. • When the Web browser is deciding how to display the content, CSS provides information about the look and feel of each element p { font-family: “Times New Roman”; font-size: 12px; color: blue; } “Make all paragraphs use Times New Roman font, size 12, and colour the text blue.” Javascript • The third essential technology behind the World Wide Web – The ‘programming language of the Web’ – Programs the behaviour of a Web page • Runs on the user’s machine, rather than the Web server (client-side language) • Defines how the page should respond (behave) when there is a user interaction or event – E.g. what should happen when the user clicks on something? Technologies for Visualisation Low Level High Level WebGL D3.js NVD3 (reusable D3 charts) RAW (Web app, paste data) Canvas Dimple.js (D3 for business analytics) Chartio (paid) SVG Rickshaw (D3 for time series) Plotly CartoDB Tableau More Complex, Less Complex, Programmable so Mostly automated so more more confined to templates, customisable, Less Powerful. More Powerful. D3.js (1) • Data-Driven Documents • JavaScript Library • Uses HTML, SVG and CSS to create visualisations from data – Drives the connection between data (provided by user) and documents (rendered by the Web browser) • Aimed at creating explanatory visualisations, rather than exploratory • https://d3js.org/ D3.js (2) • Four general steps: – Loading the data into browser’s memory – Binding the data to elements within the document – Transforming elements by setting visual properties based on the bound data – Transitioning elements between states • Response to user input • Read more in Interactive Data Visualization for the Web by Scott Murray (O’Reilly, 2013) D3.js (3) • Dynamically access the DOM behind a web page to apply styles – DOM: • Document Object Model • Hierarchical Structure of HTML elements • Allows things like – d3.select(“body”).append(“p”).text(“New Paragraph”); D3: Chain Syntax (1) • Using “.”s to chain methods together • Perform several actions in a single line of code • Fast and easy, but can cause debugging problems later • JavaScript doesn’t care about whitespace or linebreaks – d3.select(“body”) .append(“p”) .text(“New Paragraph”); D3: Chain Syntax (2) • d3.select(“body”).append(“p”).text(“New Paragraph”); – First passes ‘select’ a CSS selector – “body”, returning the first element in DOM that matches. – Then creates a new DOM element “p” and appends it to the end of the previously selected element.
Recommended publications
  • Blueprints Free
    FREE BLUEPRINTS PDF Barbara Delinsky | 512 pages | 25 Feb 2016 | Little, Brown Book Group | 9780349405049 | English | London, United Kingdom Blueprints | Changing Lives and Shaping Futures in Southwest Pennsylvania and West Virginia How does Blueprints complicated structure with so many parts, materials and workers come together? The answer is in the history of blueprints. These documents are truly the Blueprints of any construction project but they have been around for some time now. So, where did blueprints originate from and where are they evolving today? Before blueprints evolved into their modern form, look and purpose, drawings from the medieval times appear to be their earliest formations. The Plan of St. Gall, is one of the oldest known surviving architectural plans. Some historians consider Blueprints 9th century drawing as the very beginning of the history of Blueprints. Mysteriously, the monastery depicted in the drawing was never actually built. So, a group in Germany is using this drawing, along with period tools and techniques, to learn Blueprints about architectural history. You can view a detailed Blueprints and models based on the plan here. The documents that emerged from the Blueprints era look more like modern blueprints than Blueprints ones from the Blueprints Period. In fact, Blueprints and engineer Filippo Brunelleschi Blueprints the camera obscura to copy architectural details from the classical ruins that inspired his work. Today, Brunelleschi is considered to be the father the modern history of blueprints. The architects of the Blueprints period brought architectural drawing Blueprints we know it into existence, precisely and accurately reproducing the detail Blueprints a structure via the tools of scale and perspective.
    [Show full text]
  • Defining Visual Rhetorics §
    DEFINING VISUAL RHETORICS § DEFINING VISUAL RHETORICS § Edited by Charles A. Hill Marguerite Helmers University of Wisconsin Oshkosh LAWRENCE ERLBAUM ASSOCIATES, PUBLISHERS 2004 Mahwah, New Jersey London This edition published in the Taylor & Francis e-Library, 2008. “To purchase your own copy of this or any of Taylor & Francis or Routledge’s collection of thousands of eBooks please go to www.eBookstore.tandf.co.uk.” Copyright © 2004 by Lawrence Erlbaum Associates, Inc. All rights reserved. No part of this book may be reproduced in any form, by photostat, microform, retrieval system, or any other means, without prior written permission of the publisher. Lawrence Erlbaum Associates, Inc., Publishers 10 Industrial Avenue Mahwah, New Jersey 07430 Cover photograph by Richard LeFande; design by Anna Hill Library of Congress Cataloging-in-Publication Data Definingvisual rhetorics / edited by Charles A. Hill, Marguerite Helmers. p. cm. Includes bibliographical references and index. ISBN 0-8058-4402-3 (cloth : alk. paper) ISBN 0-8058-4403-1 (pbk. : alk. paper) 1. Visual communication. 2. Rhetoric. I. Hill, Charles A. II. Helmers, Marguerite H., 1961– . P93.5.D44 2003 302.23—dc21 2003049448 CIP ISBN 1-4106-0997-9 Master e-book ISBN To Anna, who inspires me every day. —C. A. H. To Emily and Caitlin, whose artistic perspective inspires and instructs. —M. H. H. Contents Preface ix Introduction 1 Marguerite Helmers and Charles A. Hill 1 The Psychology of Rhetorical Images 25 Charles A. Hill 2 The Rhetoric of Visual Arguments 41 J. Anthony Blair 3 Framing the Fine Arts Through Rhetoric 63 Marguerite Helmers 4 Visual Rhetoric in Pens of Steel and Inks of Silk: 87 Challenging the Great Visual/Verbal Divide Maureen Daly Goggin 5 Defining Film Rhetoric: The Case of Hitchcock’s Vertigo 111 David Blakesley 6 Political Candidates’ Convention Films:Finding the Perfect 135 Image—An Overview of Political Image Making J.
    [Show full text]
  • Survey of Information Visualization Books
    A Survey of Information Visualization Books D. Rees and R. S. Laramee Swansea University, UK Abstract Information visualization is a rapidly evolving field with a growing volume of scientific literature and texts continually published. To keep abreast of the latest developments in the domain, survey papers and state-of-the-art reviews provide valuable tools for managing the large quantity of scientific literature. Recently a survey of survey papers (SoS) was published to keep track of the quantity of refereed survey papers in information visualization conferences and journals. However no such resources exist to inform readers of the large volume of books being published on the subject, leaving the possibility of valuable knowledge being overlooked. We present the first literature survey of information visualization books that addresses this challenge by surveying the large volume of books on the topic of information visualization and visual analytics. This unique survey addresses some special challenges associated with collections of books (as opposed to research papers) including searching, browsing and cost. This paper features a novel two-level classification based on both books and chapter topics examined in each book, enabling the reader to quickly identify to what depth a topic of interest is covered within a particular book. Readers can use this survey to identify the most relevant book for their needs amongst a quickly expanding collection. In indexing the landscape of information visualization books, this survey provides a valuable resource to both experienced researchers and newcomers in the data visualization discipline. CCS Concepts •General and reference ! Surveys and overviews; General literature; •Human-centered computing ! Information visual- ization; "The book you don’t read won’t help." − Jim Rohn - entrepreneur, Visualization books published each year author, motivational speaker.
    [Show full text]
  • VAN-WINKLE-DISSERTATION-2016.Pdf (2.773Mb)
    Advancing a Critical Framework for the Identification and Analysis of Visual Euphemism in Technical Communication Visuals by Kevin W. Van Winkle, B.A., M.A. A Dissertation In TECHNICAL COMMUNICATION AND RHETORIC Submitted to the Graduate Faculty of Texas Tech University in Partial Fulfillment of the Requirements for the Degree of DOCTOR OF PHILOSOPHY Approved Dr. Sean Zdenek Chair of Committee Dr. Craig Baehr Dr. Joyce Carter Dr. Mark Sheridan Dean of the Graduate School May, 2016 Copyright 2016, Kevin W. Van Winkle Texas Tech University, Kevin Van Winkle, May 2016 ACKNOWLEDGMENTS To the chair of this dissertation, Dr. Sean Zdenek, thank you for your early interest in this project and continued support throughout it. Your feedback, questions, and critiques were invaluable, ultimately helping me to achieve a deeper understanding of the topics and issues discussed herein. To Dr. Craig Baehr, thank you, as well, for the insight you were able to provide me during this dissertation process. Also, thank you for helping me to ensure that this dissertation was a “tech comm” dissertation. It was very important to me that it be such, and having you as a committee member guaranteed that it would be. To Dr. Joyce Carter, thank you for sitting on my committee and your willingness to help me complete this dissertation. More than this, though, I want to thank you for your leadership over the TCR program. Upon listening to the “You-Are- Texas-Tech” speech on the first day of my first May seminar, I felt both fortunate and proud. Because of you and the entire TCR faculty and students I have had the opportunity to study and work with, I still feel the same way today.
    [Show full text]
  • Master Thesis SC Final
    The Potential Role for Infographics in Science Communication By: Laura Mol (2123177) Biomedical Sciences Master Thesis Communication specialization (9 ECTS) Vrije Universiteit Amsterdam Under supervision of dr. Frank Kupper, Athena Institute, Vrije Universiteit Amsterdam November 2011 Cover art: ‘Nonsensical Infograhics’ by Chad Hagen (www.chadhagen.com) "Tell me and I'll forget; show me and I may remember; involve me and I'll understand" - Chinese proverb - 2 Index !"#$%&'$()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(*! "#!$%&'()*+&,(%())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(+! ,),! !(#-.%$(-/#$.%0(.1(#'/23'2('.4453/'&$/.3())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(6! ,)7! 8#/39(/4&92#(/3(#'/23'2('.4453/'&$/.3()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(:! -#!$%.(/'012,+3()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,;! 7),! <3$%.=5'$/.3())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,;! 7)7! >/#$.%0()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,,! 7)?! @/112%23$(AB2423$#())))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,:! 7)*! C5%D.#2()))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))(,:!
    [Show full text]
  • Motion Charts: Telling Stories with Statistics October 2011
    Motion Charts: Telling Stories with Statistics October 2011 Victoria Battista, Edmond Cheng U.S. Bureau of Labor Statistics, 2 Massachusetts Avenue, NE Washington, DC 20212 Abstract In the field of statistical and computational graphics, dynamic charts bring rich data visualization to multidimensional information and make it possible to tell a story with statistics. As statistical and computational graphics have advanced, motion charts have made it possible to display multivariate data using two-dimensional bubble charts, scatter plots, and series relationships over temporal periods. This visualization of data enriches its exploration and analysis and more effectively conveys information to users. Incorporating examples from actual business and economic data series, our paper illustrates how motion charts can tell dynamic stories with data. Key Words: Visualization, motion chart, bubble graph, exploratory data analysis, statistical graphics, multidimensional data 1. Introduction A motion chart is a dynamic and interactive visualization tool for displaying complex quantitative data. Motion charts show multidimensional data on a single two dimensional plane. Dynamics refers to the animation of multiple data series over time. Interactive refers to the user-controlled features and actions when working with the visualization. Innovations in statistical and graphics computing made it possible for motion charts to become available to individuals. Motion charts gained popularity due to their use by visualization professionals, statisticians, web graphics developers, and media in presenting time-related statistical information in an interesting way. Motion charts help us to tell stories with statistics. 2. Data Visualization Advancements in technology are filling up our world with information. The number of data sets and elements within these datasets are growing larger, the frequency of data collection is increasing, and the size of databases is expanding exponentially.
    [Show full text]
  • Interpreting and Explaining Data Representations: a Comparison Across Grades 1-7
    CHAPTER 11. INTERPRETING AND EXPLAINING DATA REPRESENTATIONS: A COMPARISON ACROSS GRADES 1-7 Diana J. Arya Anthony Clairmont Sarah Hirsch University of California, Santa Barbara “Writing as a knowledge-making activity isn’t limited to understanding writing as a single mode of communication but as a multimodal, performative activity” (Ball & Charlton, 2016, p. 43). One of these modes is graphical data represen- tation. Situated in the visual, data representations are a critical part of visual cul- ture. That is, “the relationship between what we see and what we know is always shifting and is a product of changing cultural contexts, public understanding, and modes of human communication” (Propen, 2012, p. xiv). What is little un- derstood is how such knowledge develops across the lifespan. The developmental path to fluency in interpreting and analyzing various visual representations is largely unknown, yet such textual forms are increasing in presence across various disciplinary and social media outlets (Aparicio & Costa, 2015). Therefore, the development of competence in understanding and working with data represen- tations is a critical part of the lifespan development of writing. When we look at writing as a knowledge-making activity, the word and the image contribute to one another in an activity of meaning-making. As art his- torian John Berger attests in his seminal work, Ways of Seeing, (1972), writing and seeing aren’t mutually exclusive, in that what we see “establishes our place in the surrounding world; [and we] explain that world with words” (p. 7). The interplay between the word and the image “asks students . to explore their as- sumption about images” (Propen, 2012, p.
    [Show full text]
  • Graphics and Web Design Based on Edward Tufte's
    Graphics and Web Design Based on Edward Tufte's Principles (from http://staff.washington.edu/larryg/Classes/R560/zz-tufte.html ) This is an outline of Edward Tufte's pioneering work on the use of graphics to display quantitative information. In mainly consists of text and ideas taken from his three books on the subject along with some additional material of my own. This page is in text only format: in order to understand the concepts you need to read the books because the concepts cannot really be grasped without the illustrations, and current video monitor technology is too low in resolution to do them justice. His work (see last page here) has been described as "a visual Strunk and White". Throughout this outline I have included references to the illustrations in his books that are labeled with the abbreviations VD-pp, VE-pp, and EI-pp, where "pp" is a page number and: • VD is "the Visual Display of Quantitative Information" • VE is "Visual Explanations" • EI is "Envisioning Information" Outline 1. #Introduction 2. #History of Plots 3. #The Explanatory Power of Graphics 4. #Basic Philosophy of Approach 5. #Graphical Integrity 6. #Data Densities 7. #Data Compression 8. #Multifunctioning Graphical Elements 9. #Maximize data-ink; minimize non-data ink 10. #Small Multiples 11. #Chartjunk 12. #Colors 13. #General Philosophy for Increasing Data Comprehension 14. #Techniques for Increasing Data Comprehension 15. #When NOT to Use Graphics 16. #Aesthetics Introduction Tufte's works address the following issues: • The Problem: The problem is that of presenting large amounts of information in a way that is compact, accurate, adequate for the purpose, and easy to understand.
    [Show full text]
  • The Visual Display of Quantitative Information, 2E
    2 Lecture 34 of 41 Lecture Outline Visualization, Part 1 of 3: Reading for Last Class: Chapter 15, Eberly 2e; Ray Tracing Handout Data (Quantities & Evidence) Reading for Today: Tufte Handout Reading for Next Class: Ray Tracing Handout Last Time: Ray Tracing 2 of 2 William H. Hsu Stochastic & distributed RT Department of Computing and Information Sciences, KSU Stochastic (local) vs. distributed (nonlocal) randomization “Softening” shadows, reflection, transparency KSOL course pages: http://bit.ly/hGvXlH / http://bit.ly/eVizrE Public mirror web site: http://www.kddresearch.org/Courses/CIS636 Hybrid global illumination: RT with progressive refinement radiosity Instructor home page: http://www.cis.ksu.edu/~bhsu Today: Visualization Part 1 of 3 – Scientific, Data, Information Vis What is visualization? Readings: Tufte 1: The Visual Display of Quantitative Information, 2 e Last class: Chapter 15, Eberly 2e – see http://bit.ly/ieUq45; Ray Tracing Handout Basic statistical & scientific visualization techniques Today: Tufte Handout 1 Next class: Ray Tracing Handout Graphical integrity vs. lie factor (“How to lie with statisticsvis”) Wikipedia, Visualization: http://bit.ly/gVxRFp Graphical excellence vs. chartjunk Wikipedia, Data Visualization: http://bit.ly/9icAZk Data-ink, data-ink ratio (& “data-pixels”) CIS 536/636 Computing & Information Sciences CIS 536/636 Computing & Information Sciences Lecture 34 of 41 Lecture 34 of 41 Introduction to Computer Graphics Kansas State University Introduction to Computer Graphics Kansas State
    [Show full text]
  • Environmental Data Visualisation for Non-Scientific Contexts
    Environmental Modelling & Software 85 (2016) 299e318 Contents lists available at ScienceDirect Environmental Modelling & Software journal homepage: www.elsevier.com/locate/envsoft Environmental data visualisation for non-scientific contexts: Literature review and design framework * Sam Grainger a, b, , Feng Mao c, Wouter Buytaert a, b a Department of Civil and Environmental Engineering, Imperial College London, London SW7 2AZ, United Kingdom b Grantham Institute - Climate Change and the Environment, Imperial College London, London SW7 2AZ, United Kingdom c School of Geography, Earth and Environmental Sciences, University of Birmingham, Edgbaston, Birmingham B15 2TT, United Kingdom article info abstract Article history: Environmental science is an applied discipline, which therefore requires interacting with actors outside Received 22 December 2015 of the scientific community. Visualisations are increasingly seen as powerful tools to engage users with Received in revised form unfamiliar and complex subject matter. Despite recent research advances, scientists are yet to fully 29 August 2016 harness the potential of visualisation when interacting with non-scientists. To address this issue, we Accepted 5 September 2016 review the main principles of visualisation, discuss specific graphical challenges for environmental sci- ence and highlight some best practice from non-professional contexts. We provide a design framework to enhance the communication and application of scientific information within professional contexts. Keywords: Science dissemination
    [Show full text]
  • Infographics As Images: Meaningfulness Beyond Information †
    Proceedings Infographics as Images: Meaningfulness beyond Information † Valeria Burgio *and Matteo Moretti Faculty of Design and Art. Libera Università di Bolzano; Piazza Università, 39100 Bolzano Bozen, Italy; [email protected] * Correspondence: [email protected] † Presented at the International and Interdisciplinary Conference IMMAGINI? Image and Imagination between Representation, Communication, Education and Psychology, Brixen, Italy, 27–28 November 2017. Published: 10 November 2017 Abstract: What kind of images are data visualizations? Are they mere abstract transformations of numerical data? Should they reduce the phenomenal world into a set of pre-codified shapes? Or can they represent natural phenomena through figurative strategies? What is the boundary between useless decoration, narrative illustration and helpful visual metaphors? Through post-design reflections on a visual journalism project, the paper focuses on the context-dependent role of images in data visualization. Keywords: data visualization; visual journalism; illustration and decoration; abstraction and pictographic communication 1. Introduction What kind of images are data visualizations? Are they mere abstract transformations of numerical data? Should they reduce the phenomenal world into a set of pre-codified shapes? Or can they represent natural phenomena through figurative strategies? Where does the boundary lie between useless decoration, narrative illustration and helpful visual metaphors? Since the theoretical work and practical implementation of Otto Neurath [1,2], much has been argued about the necessary balance between scientific accuracy and communicational efficiency in data visualization. Since then, how to translate quantitative information into readable graphs has been the terrain for debate between the advocates of dryness and objectivity [3–5] and the defenders of a more playful and inventive approach [6,7].
    [Show full text]
  • Data Science Steven Skiena Stony Brook University
    CSE 591: Data Science Steven Skiena Stony Brook University Lecture 11: Principles of Visualizing Data Exploratory Data Analysis Looking carefully at your data is important: ● to identify mistakes in collection/processing ● to find violations of statistical assumptions ● to observe patterns in the data ● to make hypothesis. Feeding unvisualized data to a machine learning algorithm is asking for trouble. Why Data Visualization? ● Exploratory data analysis: what does your data really look like? ● Error detection: did you do something stupid? ● Presenting what you have learned to others. A large fraction of the graphs and charts I see are terrible: visualization is harder than it looks. Ascombe’s Quartet All four data sets have exactly the same mean, variance, correlation, and regression line: Plotting Ascombe’s Quartet Appreciating Art: Which is Better? Sensible appreciation of art requires developing a particular visual aesthetic. Tufte’s Visualization Aesthetic Distinguishing good/bad visualizations requires a design aesthetic, and a vocabulary to talk about data representations: ● Maximize data ink-ratio ● Minimize lie factor ● Minimize chartjunk ● Use proper scales and clear labeling Maximize Data-Ink Ratio The Lie Factor: Dimensionality (size of effect in graphic) / (size of effect in data) The fixing a two- or three-dimensional representation by a single parameter yields a lie, because area or volume increase non-proportionally to length. Graphical Integrity: Scale Distortion Always start bar graphs at zero. Always properly label your axes. Use continuous scales: linear or labelled! Aspect Ratios and Lie Factors The steepness of apparent cliffs is a function of aspect ratio. Aim for 45° lines or Golden ratio as most interpretable.
    [Show full text]