Computer Science 474 Spring 2010 Data Visualization

Size: px
Start display at page:

Download "Computer Science 474 Spring 2010 Data Visualization"

Transcription

1 DATA VISUALIZATION The modeling and rendering processes described thus far have been focused on representing and displaying objects and scenes in the world, whether real or imaginary. However, many of the principles and techniques for displaying images can be applied to data other than modeled physical objects. Data collected from satellites can be used for displaying weather maps; fluid dynamic computations can be used to show airflow over a surface; daily stock market activity can drive visual representations of market behavior; etc. Many of the principles of visual perception apply to how to effectively display data for human understanding. Some people distinguish between scientific visualization and information visualization. These will be briefly described, but the focus of the reading is on the more general topic of effective data visualization. Scientific visualization is the representation of scientific data, typically physically based, for purposes of better understanding structure, processes, and scientific principles. Data used in representations and animations may be measured directly using scientific measurement tools such as sensors, probes, or scanning devices. Medical imagery from MRI s and CAT scans is an example of measured physical data used in displays. Alternatively, data may be computer generated based on simulations or computations. For example, animating a bridge collapsing based on finite element analysis or showing how a tornado is formed based on simulating the interaction of air particles. Figure 1 shows an example. Figure 1. Visualizing magnetic field interactions from calculations. Since the early days of computer graphics, researchers saw the potential for using visualization as part of the analysis portion of their scientific investigations to better analyze, understand, and communicate results. As computers have increased in power and capacities, both the amount of data being generated, and the ability to visually display it increased tremendously. In 1987, NSF sponsored a special report on Visualization in Scientific Computing that recognized the potential impact of scientific visualization in a number of disciplines and, as a result, earmarked large sums of money to support and promote the development of visualization techniques at the national laboratories. Today, visualization 1

2 permeates all scientific disciplines and research publications often contain computer generated imagery as part of their scientific process. In contrast to scientific visualization, information visualization typically deals with non physical abstract data. Information such as stock market prices, census data, network traffic, voice messages, textual content, web pages, and multi media data (the so called digital universe ) is expanding at unfathomable rates. By one estimate, the amount of data generated and stored in 2010 is predicted to be 1 ZB (a Zettabyte equals bytes, or a billion terabytes). The challenge is not only how to store and access that much data, but, more importantly, how to make use of it. In other words, how do we change vast amounts of data into useful information? Techniques such as data mining, or automatically extracting patterns from data, are becoming important tools for dealing with the data explosion. Visualization tries to take advantage of the high bandwidth of the human visual system to discover patterns in raw data. As a simple example, assume you are interested in purchasing a new automobile and are concerned with costs. You do some research on cars that interest you, and come up with the following table: While it is easy to pick out certain piece of information, such as the highest city MPG, by scanning the appropriate column, it is virtually impossible to do much correlation between cost and efficiency. However, by doing a simple scatter plot, that graphs the two variables together, much more information can be gleaned as shown in Figure 2. For example, you discover the Honda Insight stands out from the group as significantly better fuel economy at a cheap price. More subtly, you may notice there is a correlation that more expensive cars tend to have worse gas mileage. Every car over 25 MPG is under $30,000, while conversely, the four most expensive cars are all under 20 MPG. From this, you may conclude that people who are willing to pay more for a car are less concerned about gas mileage. 2

3 Additional plotting features such as color coding by manufacture could add insights about efficiency groupings. Data Visualization Figure 2. Scatterplot of MPG versus Cost for selected car models. For purposes of this reading, we will not distinguish between scientific and information visualization, but rather the more general topics of principles and techniques in data visualization. Data visualization can be defined as the application of computer technology to create and interact with a visual representation of data for the purpose of increasing understanding about the data. Some people limit visualization to simply generating pictures from data. However, the most stunning image based on data, if it does not enhance understanding, is simply a picture. As Ben Shneiderman, well known visualization researcher and educator, states The purpose of visualization is insight, not pictures. People use data visualization for a variety of purposes. Searching for a specific value or pattern, such as a local minima or maxima may benefit from a geometric representation of data as a surface. A more general application may be to explore data looking for interesting patterns, without a preconceived idea about what those patterns are. For example, Figure 3 is a simple chart called a sparkline that shows the 2009 season wins and losses for the Colorado Rockies. There is one dot per game. A win raises the Y value for the dot, a loss lowers. When the line crosses the horizontal axis, the team has an equal number of wins as losses. Several patterns can be seen in this simple visualization such as the lengths of winning streaks versus losing streaks, the fact that winning streaks are most often followed by multiple losses, and the general pattern for each month. 3

4 Types of Data and Graphs Figure 3. Colorado Rockies 2009 season sparkline. There are different ways of categorizing types of data. At a basic level, we can classify data as nominal, ordinal, or quantitative. Nominal data are categories of data in which there is no order to the categories. Sex, race, and color are examples. Ordinal data implies there is an ordering to the data such as letter grades, education level, and t shirt sizes. Quantitative data are values that you can perform mathematical operations on such as age, weight, and grade points. In addition to these categories, data is often characterized by dimensionality. That is, the number of values associated with each data point. For example, univariate data, or single value, might simply be a list of ages. Bivariate data might be age and weight. Trivariate and hypervariate (three or more) variables could include factors such as ethnicity, height, hometown, and name. Multivariate data is often put into tabular form for access and manipulation. The most common method for visualizing multivariate data is the graph. Several types of graphs have been developed for viewing different features of data. In general graphs consist of some well defined structure such as axes, scale, and shape; the data as points, lines, areas, or symbols; and some labeling. The earlier examples of sparklines and scatterplots are types of graphs. Bar graphs, line graphs, and area graphs are all common examples people are used to seeing from spreadsheet applications. Graphing one and two dimensional data using such techniques is straightforward. Working with higher order dimensions becomes more challenging. The following presents a couple of possible approaches. As a sample data set for illustration purposes, the batting statistics for the 2009 Rockies starting lineup are used: Comparison bar charts can be used to show multiple values per data point, but can quickly become overwhelming. An alternative is to show stacked bar charts with each variable having it own chart. Figure 4 is an example from the sample data set showing base hits. The axis legend only has to be shown once for the stacked charts, and because the individual vertical scales are different, it is easier to perform relative comparison across the player positions. At the same time, viewing the relative performance of each player can be determined by looking along a single column of all charts. 4

5 Figure 4. Comparison bar chart versus stacked bar charts. Figure 5 shows an alternative representation of multivariate data in which data from each player is shown in a separate star, or radar, chart. Separate variables are shown on different axes arranged in a circular fashion. Different types of patterns can be quickly identified (depending on the data) that can provide general comparisons between players. Figure 5. Star charts of selected statistics by player position. Following the theme of multiple charts, multiple scatterplots allow all pairs of selected variables to be checked for correlations. The scatterplot matrix shown in Figure 6 quickly shows from the pattern of dots that there is a much stronger correlation in the data between At Bats and Hits versus At Bats and Strikeouts. 5

6 Figure 6. Scatterplot matrix for selected data. Another visualization that can be effective for multivariate data are parallel coordinates as shown in Figure 6. Each variable is normalized based on the maximum value for that variable, and datasets are plotted on separate axes parallel to each other. Each line represents a single player. By highlighting a single player, or small number of players, their statistics can be easily compared to the other values in the data. Figure 6. Parallel axes plot of sample data with single player highlighted. Many other graph types have been developed for displaying data. Some of the techniques are specific to certain sub categories of data such as time series data, 3D spatial data, and geo based information. 6

7 Pie Charts Just Say No One of the advantages of popular spreadsheet software, such as Microsoft s Excel, is that it has several pre defined chart types that allow quick generation of graphs from data. One of the drawbacks, however, is that it promulgates the myth that pie charts are a viable visualization method. Quite simply, they are not. This bias is not without basis. Perceptually, humans are not very adept at comparing relative areas. In Figure 7, for example, without the labels, it is virtually impossible (at least for the author) to tell which area is larger, B or D. Even with the labels, relative comparisons between areas are difficult. I, personally, cannot tell that A is half of B. It appears smaller than half. The exact same data is plotted as a bar chart in the middle graph of Figure 7. Rather than comparing areas, the comparison is to relative heights of the bars, which is much easier to perceive. Now, looking at B and D, even without the labels, the viewer can tell that D is slightly larger. Similarly, B appears twice as high as A. An even more austere representation of the data is the dot plot shown in the rightmost image of Figure 7. Here, a minimum amount of ink is used to present the data, yet the base information can be gleaned along with additional insight into the distribution of values. Many examples of the poor nature of pie charts to effectively display data abound in literature. However, according to famed data visualization expert, Edward Tufte, the only thing worse than pie charts are multiple pie charts on the same page. Now, you are increasing the level of perceptual difficulty by forcing the user to compare relative areas separated on the page in different charts. Figure 8 is a humorous look at one reasonable use of a pie chart. Figure 7. Random data in pie chart, vertical bar chart, and dot plot. Figure 8. Humorous take on pie charts. 7

8 Some General Principles Many guidelines have been proposed for how to design and create effective visualizations. Some of these come from the visual perception world, others from graphic design, still others from various scientific communities, and some from a growing community of information visualization researchers. Many of the techniques developed to date are a result of trial and error or variations on historical approaches. However, more and more research is being reported on attempts to identify, quantify, and verify general principles for visualization design. A few examples are given. Edward Tufte, previously mentioned, lists several guidelines in his classic book, The Visual Display of Quantitative Information. A summary of some of his principles are: Avoid chartjunk, the decorative elements of a chart that do not provide data; especially apparent in media graphics such as USA Today graphs Maximize data ink ratio, the amount of ink used to represent data versus total ink on the page; some ways to accomplish: avoid heavy grid lines, use small data markers, and only show as much scale information as necessary Maximize data density, the number of data elements per chart area Maintain graphical integrity; do not exaggerate scale or only show part of the data Utilize multi functioning graphical elements, elements that both convey data information and serve a design function Do not use pie charts Another well known visualization expert, Ben Shneiderman, is credited with the mantra overview first, zoom and filter, then details on demand. The idea is to provide a high level view of the entire dataset to allow the user to select the area of interest, quickly zoom in to the relevant data, and be presented with the necessary details when desired. Interactivity If one of the primary purposes of visualization is exploration, then the ability to interact with the data is critical. Static graphs and displays may be adequate for communicating information, but the ability to manipulate the viewing parameters, whether it is the part of the dataset being viewed, or the means by which it is being displayed, is necessary to recognize and understand patterns in data. Fortunately, with advances in processing power, storage capacities, and display capabilities, real time interaction is feasible even with very large datasets. A good example of a highly interactive, and fun, online dataset is the Baby Name Wizard by Laura Wattenberg ( A screen shot is shown in Figure 9. A database of thousands of historical baby names drives the interactive display. The user can select specific names, periods of times, or enter name filters to interactively search and explore the data. 8

9 Figure 9. Screen shot of Baby Name Wizard visualization tool. Several interactive techniques have been created to explore data through data selection, filtering, zooming, viewing in context, and displaying details. As in any user interaction, key features are rapid response, intuitive interface, judicious use of color, and meaningful interactions. Toolkits Many open source and commercial systems are available to create and interact with visualizations of data. Some of them are targeted at specific types of data or visualization approaches. One trend in the open source area is to create toolkits that allow users to build their own visualization applications from a set of pre defined software components and supporting architecture. Current toolkits (from wiki.net) include: BirdEye is a community project to advance the design and development of a comprehensive open source information visualization and visual analytics library Macrofocus InfoScope is an interactive visualization environment to explore large or complex datasets Prefuse is a user interface toolkit for building highly interactive visualizations of structured and unstructured data The flare visualization toolkit is a set of libraries for interactive visualizations on the web (based on prefuse) 9

10 The InfoVis Cyber Infrastructure web site provides access to a comprehensive set of software packages easing the exploration, modification, comparison, and extension of data mining and information visualization algorithms The InfoVis Toolkit is an interactive graphics toolkit written in Java to ease the development of Information Visualization applications and components VisAD is a Java component library for interactive and collaborative visualization and analysis of numerical data. The name VisAD is an acronym for "Visualization for Algorithm Development" Improvise is an information visualization system in which users build and browse multiview visualizations interactively using a simple shared object coordination mechanism coupled with a flexible, expression based visual abstraction language VisIt is a free interactive parallel visualization and graphical analysis tool for viewing scientific data on Unix and PC platforms (Lawrence Livermore National Laboratory, University of California) As an example of the types of capabilities provided, InfoVis is a Java based system that currently supports nine different views of data, many with available variations. Some features of the tool include: Common database format for all types of data Small memory footprint to support large datasets Unified set of interactive components that allow dynamic queries and data interaction Ability to take advantage of hardware accelerated graphics Extendable architectures that allows new visualization techniques to be easily added Figure 10 shows some of the visualizations generated using the InfoVis Toolkit. Figure 10. Visualizations from the InfoVis Toolkit. 10

11 LAGNIAPPE Historical Visualization One of the best known early examples of using visualization was by Dr. John Snow, a British physician in the 1800 s. Dr. Snow is considered a father of epidemiology because of his work in tracing the source of a cholera outbreak in Soho, England, in In August 1854, a major outbreak of cholera struck Soho which was later termed "the most terrible outbreak of cholera which ever occurred in the United Kingdom." Over the course of three days, 127 people died; within a month, 500 people had died with the mortality rate as high as 12.8 percent in some parts of the city. By the end of the outbreak, 616 people had died. The prevalent theory at the time for the disease was miasma, or bad air. Although knowledge about germs and how they spread disease were not well known at the time, Snow was skeptic of the miasma theory and set about to determine the root cause. By working with the townspeople and studying the patterns of deaths, he was able to conclude that the public water pump on Broad Street was the most likely source of the disease. Snow used a spot map to illustrate how cases of cholera were centered around the pump, and used statistics to make the connection between the quality of the water source and the cholera cases. It was discovered later that this public well had been dug only three feet from an old cesspool pit that had begun to leak fecal bacteria. Although Snow's chemical and microscope examination of a sample of the Broad Street pump water was not able to conclusively prove its danger, his studies of the pattern of the disease were convincing enough to persuade the local council to disable the well pump by removing its handle. John Snow died of a stroke at the age of

Purpose. Charts and graphs. create a visual representation of the data. make the spreadsheet information easier to understand.

Purpose. Charts and graphs. create a visual representation of the data. make the spreadsheet information easier to understand. Purpose Charts and graphs are used in business to communicate and clarify spreadsheet information. convert spreadsheet information into a format that can be quickly and easily analyzed. make the spreadsheet

More information

Introduction to Information Visualization

Introduction to Information Visualization Introduction to Information Visualization 1 Source: Jean-Daniel Fekete, Jarke J. van Wijk, John T. Stasko, and Chris North. The Value of Information Visualization (2008) 2 I II III IV x y x y x y x y 10.0

More information

SS Understand charts and graphs used in business.

SS Understand charts and graphs used in business. SS2 2.02 Understand charts and graphs used in business. Purpose of Charts and Graphs 1. Charts and graphs are used in business to communicate and clarify spreadsheet information. 2. Charts and graphs emphasize

More information

First hit on Google Image:

First hit on Google Image: First hit on Google Image: Improve your life, attract money and create success using visualization. Creative visualization is a mental technique that uses the imagination to make dreams and goals come

More information

Important Considerations For Graphical Representations Of Data

Important Considerations For Graphical Representations Of Data This document will help you identify important considerations when using graphs (also called charts) to represent your data. First, it is crucial to understand how to create good graphs. Then, an overview

More information

Using Charts and Graphs to Display Data

Using Charts and Graphs to Display Data Page 1 of 7 Using Charts and Graphs to Display Data Introduction A Chart is defined as a sheet of information in the form of a table, graph, or diagram. A Graph is defined as a diagram that represents

More information

Chapter 10. Definition: Categorical Variables. Graphs, Good and Bad. Distribution

Chapter 10. Definition: Categorical Variables. Graphs, Good and Bad. Distribution Chapter 10 Graphs, Good and Bad Chapter 10 3 Distribution Definition: Tells what values a variable takes and how often it takes these values Can be a table, graph, or function Categorical Variables Places

More information

Why Should We Care? More importantly, it is easy to lie or deceive people with bad plots

Why Should We Care? More importantly, it is easy to lie or deceive people with bad plots Elementary Plots Why Should We Care? Everyone uses plotting But most people ignore or are unaware of simple principles Default plotting tools (or default settings) are not always the best More importantly,

More information

Using Figures - The Basics

Using Figures - The Basics Using Figures - The Basics by David Caprette, Rice University OVERVIEW To be useful, the results of a scientific investigation or technical project must be communicated to others in the form of an oral

More information

Infographics at CDC for a nonscientific audience

Infographics at CDC for a nonscientific audience Infographics at CDC for a nonscientific audience A Standards Guide for creating successful infographics Centers for Disease Control and Prevention Office of the Associate Director for Communication 03/14/2012;

More information

Monte Carlo based battleship agent

Monte Carlo based battleship agent Monte Carlo based battleship agent Written by: Omer Haber, 313302010; Dror Sharf, 315357319 Introduction The game of battleship is a guessing game for two players which has been around for almost a century.

More information

Scientific Communication and visual reasoning. presentation for Institute for Leadership in Technology and Management July 5, 1999 Dan Little

Scientific Communication and visual reasoning. presentation for Institute for Leadership in Technology and Management July 5, 1999 Dan Little Scientific Communication and visual reasoning presentation for Institute for Leadership in Technology and Management July 5, 1999 Dan Little Edward Tufte, theorist of scientific graphics A political scientist

More information

GRAPHS & CHARTS. Prof. Rahul C. Basole CS/MGT 8803-DV > January 23, 2017 INFOVIS 8803DV > SPRING 17

GRAPHS & CHARTS. Prof. Rahul C. Basole CS/MGT 8803-DV > January 23, 2017 INFOVIS 8803DV > SPRING 17 GRAPHS & CHARTS Prof. Rahul C. Basole CS/MGT 8803-DV > January 23, 2017 HW2: DataVis Examples Tumblr 47 students = 47 VIS of the Day submissions Random Order We will start next week Stay tuned Tufte Seminar

More information

Creating Run Charts (Time Series Plots, Line Charts) Excel 2010 Tutorial

Creating Run Charts (Time Series Plots, Line Charts) Excel 2010 Tutorial Creating Run Charts (Time Series Plots, Line Charts) Excel 2010 Tutorial Excel file for use with this tutorial GraphTutorData.xlsx File Location http://faculty.ung.edu/kmelton/data/graphtutordata.xlsx

More information

Office 2016 Excel Basics 24 Video/Class Project #36 Excel Basics 24: Visualize Quantitative Data with Excel Charts. No Chart Junk!!!

Office 2016 Excel Basics 24 Video/Class Project #36 Excel Basics 24: Visualize Quantitative Data with Excel Charts. No Chart Junk!!! Office 2016 Excel Basics 24 Video/Class Project #36 Excel Basics 24: Visualize Quantitative Data with Excel Charts. No Chart Junk!!! Goal in video # 24: Learn about how to Visualize Quantitative Data with

More information

Business Statistics:

Business Statistics: Department of Quantitative Methods & Information Systems Business Statistics: Chapter 2 Graphs, Charts, and Tables Describing Your Data QMIS 120 Dr. Mohammad Zainal Chapter Goals After completing this

More information

HIGHWAY SAFETY RESEARCH GROUP

HIGHWAY SAFETY RESEARCH GROUP 1. Why use data visualization? 2. Why we perceive data visualizations better than tabular data? 3. How do we choose the proper visualization to display our data? 4. What are the Dos and Don ts of creating

More information

Notes 5C: Statistical Tables and Graphs

Notes 5C: Statistical Tables and Graphs Notes 5C: Statistical Tables and Graphs Frequency Tables A frequency table is an easy way to display raw data. A frequency table typically has between two to four columns: The first column lists all the

More information

Why Should We Care? Everyone uses plotting But most people ignore or are unaware of simple principles Default plotting tools are not always the best

Why Should We Care? Everyone uses plotting But most people ignore or are unaware of simple principles Default plotting tools are not always the best Elementary Plots Why Should We Care? Everyone uses plotting But most people ignore or are unaware of simple principles Default plotting tools are not always the best More importantly, it is easy to lie

More information

Describing Data Visually. Describing Data Visually. Describing Data Visually 9/28/12. Applied Statistics in Business & Economics, 4 th edition

Describing Data Visually. Describing Data Visually. Describing Data Visually 9/28/12. Applied Statistics in Business & Economics, 4 th edition A PowerPoint Presentation Package to Accompany Applied Statistics in Business & Economics, 4 th edition David P. Doane and Lori E. Seward Prepared by Lloyd R. Jaisingh Describing Data Visually Chapter

More information

CS 147: Computer Systems Performance Analysis

CS 147: Computer Systems Performance Analysis CS 147: Computer Systems Performance Analysis Mistakes in Graphical Presentation CS 147: Computer Systems Performance Analysis Mistakes in Graphical Presentation 1 / 45 Overview Excess Information Multiple

More information

Microsoft Excel: Data Analysis & Graphing. College of Engineering Engineering Education Innovation Center

Microsoft Excel: Data Analysis & Graphing. College of Engineering Engineering Education Innovation Center Microsoft Excel: Data Analysis & Graphing College of Engineering Engineering Education Innovation Center Objectives Use relative, absolute, and mixed cell referencing Identify the types of graphs and their

More information

Chapter 2 Descriptive Statistics: Tabular and Graphical Methods

Chapter 2 Descriptive Statistics: Tabular and Graphical Methods Chapter Descriptive Statistics http://nscc-webctdev.northweststate.edu/script/sta_sp/scripts/student/serve_page... Page of 7 /7/9 Chapter Descriptive Statistics: Tabular and Graphical Methods Data can

More information

DESCRIBING DATA. Frequency Tables, Frequency Distributions, and Graphic Presentation

DESCRIBING DATA. Frequency Tables, Frequency Distributions, and Graphic Presentation DESCRIBING DATA Frequency Tables, Frequency Distributions, and Graphic Presentation Raw Data A raw data is the data obtained before it is being processed or arranged. 2 Example: Raw Score A raw score is

More information

IED Detailed Outline. Unit 1 Design Process Time Days: 16 days. An engineering design process involves a characteristic set of practices and steps.

IED Detailed Outline. Unit 1 Design Process Time Days: 16 days. An engineering design process involves a characteristic set of practices and steps. IED Detailed Outline Unit 1 Design Process Time Days: 16 days Understandings An engineering design process involves a characteristic set of practices and steps. Research derived from a variety of sources

More information

Univariate Descriptive Statistics

Univariate Descriptive Statistics Univariate Descriptive Statistics Displays: pie charts, bar graphs, box plots, histograms, density estimates, dot plots, stemleaf plots, tables, lists. Example: sea urchin sizes Boxplot Histogram Urchin

More information

ESSENTIAL MATHEMATICS 1 WEEK 17 NOTES AND EXERCISES. Types of Graphs. Bar Graphs

ESSENTIAL MATHEMATICS 1 WEEK 17 NOTES AND EXERCISES. Types of Graphs. Bar Graphs ESSENTIAL MATHEMATICS 1 WEEK 17 NOTES AND EXERCISES Types of Graphs Bar Graphs Bar graphs are used to present and compare data. There are two main types of bar graphs: horizontal and vertical. They are

More information

Effective Iconography....convey ideas without words; attract attention...

Effective Iconography....convey ideas without words; attract attention... Effective Iconography...convey ideas without words; attract attention... Visual Thinking and Icons An icon is an image, picture, or symbol representing a concept Icon-specific guidelines Represent the

More information

15-388/688 - Practical Data Science: Visualization and Data Exploration. J. Zico Kolter Carnegie Mellon University Spring 2018

15-388/688 - Practical Data Science: Visualization and Data Exploration. J. Zico Kolter Carnegie Mellon University Spring 2018 15-388/688 - Practical Data Science: Visualization and Data Exploration J. Zico Kolter Carnegie Mellon University Spring 2018 1 Outline Basics of visualization Data types and visualization types Software

More information

Module 1: Introduction to Experimental Techniques Lecture 2: Sources of error. The Lecture Contains: Sources of Error in Measurement

Module 1: Introduction to Experimental Techniques Lecture 2: Sources of error. The Lecture Contains: Sources of Error in Measurement The Lecture Contains: Sources of Error in Measurement Signal-To-Noise Ratio Analog-to-Digital Conversion of Measurement Data A/D Conversion Digitalization Errors due to A/D Conversion file:///g /optical_measurement/lecture2/2_1.htm[5/7/2012

More information

Assessing Measurement System Variation

Assessing Measurement System Variation Example 1 Fuel Injector Nozzle Diameters Problem A manufacturer of fuel injector nozzles has installed a new digital measuring system. Investigators want to determine how well the new system measures the

More information

Data Analysis and Probability

Data Analysis and Probability Data Analysis and Probability Vocabulary List Mean- the sum of a group of numbers divided by the number of addends Median- the middle value in a group of numbers arranged in order Mode- the number or item

More information

Laboratory 2: Graphing

Laboratory 2: Graphing Purpose It is often said that a picture is worth 1,000 words, or for scientists we might rephrase it to say that a graph is worth 1,000 words. Graphs are most often used to express data in a clear, concise

More information

Use sparklines to show data trends

Use sparklines to show data trends Use sparklines to show data trends New in Microsoft Excel 2010, a sparkline is a tiny chart in a worksheet cell that provides a visual representation of data. Use sparklines to show trends in a series

More information

TO PLOT OR NOT TO PLOT?

TO PLOT OR NOT TO PLOT? Graphic Examples This document provides examples of a number of graphs that might be used in understanding or presenting data. Comments with each example are intended to help you understand why the data

More information

High Precision Positioning Unit 1: Accuracy, Precision, and Error Student Exercise

High Precision Positioning Unit 1: Accuracy, Precision, and Error Student Exercise High Precision Positioning Unit 1: Accuracy, Precision, and Error Student Exercise Ian Lauer and Ben Crosby (Idaho State University) This assignment follows the Unit 1 introductory presentation and lecture.

More information

Exploring 3D in Flash

Exploring 3D in Flash 1 Exploring 3D in Flash We live in a three-dimensional world. Objects and spaces have width, height, and depth. Various specialized immersive technologies such as special helmets, gloves, and 3D monitors

More information

General tips for all graphs Choosing the right kind of graph scatter graph bar graph

General tips for all graphs Choosing the right kind of graph scatter graph bar graph Excerpted and adapted from: McDonald, J.H. 2014. Handbook of Biological Statistics (3rd ed.). Sparky House Publishing, Baltimore, MD. (http://www.biostathandbook.com/graph.html) Guide to fairly good graphs

More information

Excel Manual X Axis Scales 2010 Graph Two X-

Excel Manual X Axis Scales 2010 Graph Two X- Excel Manual X Axis Scales 2010 Graph Two X-axis same for both X, and Y axes, and I can see the X and Y data maximum almost the same, but the graphy on Thanks a lot for any help in advance. Peter T, Jan

More information

Automated Terrestrial EMI Emitter Detection, Classification, and Localization 1

Automated Terrestrial EMI Emitter Detection, Classification, and Localization 1 Automated Terrestrial EMI Emitter Detection, Classification, and Localization 1 Richard Stottler James Ong Chris Gioia Stottler Henke Associates, Inc., San Mateo, CA 94402 Chris Bowman, PhD Data Fusion

More information

The study of human populations involves working not PART 2. Cemetery Investigation: An Exercise in Simple Statistics POPULATIONS

The study of human populations involves working not PART 2. Cemetery Investigation: An Exercise in Simple Statistics POPULATIONS PART 2 POPULATIONS Cemetery Investigation: An Exercise in Simple Statistics 4 When you have completed this exercise, you will be able to: 1. Work effectively with data that must be organized in a useful

More information

Organizing Data 10/11/2011. Focus Points. Frequency Distributions, Histograms, and Related Topics. Section 2.1

Organizing Data 10/11/2011. Focus Points. Frequency Distributions, Histograms, and Related Topics. Section 2.1 Organizing Data 2 Copyright Cengage Learning. All rights reserved. Section 2.1 Frequency Distributions, Histograms, and Related Topics Copyright Cengage Learning. All rights reserved. Focus Points Organize

More information

NCSS Statistical Software

NCSS Statistical Software Chapter 147 Introduction A mosaic plot is a graphical display of the cell frequencies of a contingency table in which the area of boxes of the plot are proportional to the cell frequencies of the contingency

More information

Basic Digital Image Processing. The Structure of Digital Images. An Overview of Image Processing. Image Restoration: Line Drop-outs

Basic Digital Image Processing. The Structure of Digital Images. An Overview of Image Processing. Image Restoration: Line Drop-outs Basic Digital Image Processing A Basic Introduction to Digital Image Processing ~~~~~~~~~~ Rev. Ronald J. Wasowski, C.S.C. Associate Professor of Environmental Science University of Portland Portland,

More information

The Art and Science of Communicating Data

The Art and Science of Communicating Data The Art and Science of Communicating Data Information Design + Data Visualization Trends and Resources for Institutional Researchers Presented by Holly Goodson USG-IRP Spring Meeting March 17, 2011 What

More information

10 Wyner Statistics Fall 2013

10 Wyner Statistics Fall 2013 1 Wyner Statistics Fall 213 CHAPTER TWO: GRAPHS Summary Terms Objectives For research to be valuable, it must be shared. The fundamental aspect of a good graph is that it makes the results clear at a glance.

More information

MSc(CompSc) List of courses offered in

MSc(CompSc) List of courses offered in Office of the MSc Programme in Computer Science Department of Computer Science The University of Hong Kong Pokfulam Road, Hong Kong. Tel: (+852) 3917 1828 Fax: (+852) 2547 4442 Email: msccs@cs.hku.hk (The

More information

Experiment G: Introduction to Graphical Representation of Data & the Use of Excel

Experiment G: Introduction to Graphical Representation of Data & the Use of Excel Experiment G: Introduction to Graphical Representation of Data & the Use of Excel Scientists answer posed questions by performing experiments which provide information about a given problem. After collecting

More information

Appendix III Graphs in the Introductory Physics Laboratory

Appendix III Graphs in the Introductory Physics Laboratory Appendix III Graphs in the Introductory Physics Laboratory 1. Introduction One of the purposes of the introductory physics laboratory is to train the student in the presentation and analysis of experimental

More information

A Systematic Approach for Evaluating LED Street Light Fixtures

A Systematic Approach for Evaluating LED Street Light Fixtures A Systematic Approach for Evaluating LED Street Light Fixtures By Blake Redfield LED street lights are gaining popularity throughout the US and the world. Numerous companies have offered LED street lights

More information

Exercise 4-1 Image Exploration

Exercise 4-1 Image Exploration Exercise 4-1 Image Exploration With this exercise, we begin an extensive exploration of remotely sensed imagery and image processing techniques. Because remotely sensed imagery is a common source of data

More information

By the Numbers. Obtaining and Using Data in Your Communication Efforts

By the Numbers. Obtaining and Using Data in Your Communication Efforts By the Numbers Obtaining and Using Data in Your Communication Efforts NABE-COMM 2013 Sep 27, 2013 By the Numbers Conor Jensen TexasBarBooks Kerstin Firmin The Bar Association of San Francisco Anna Zanolli

More information

3. Data and sampling. Plan for today

3. Data and sampling. Plan for today 3. Data and sampling Business Statistics Plan for today Reminders and introduction Data: qualitative and quantitative Quantitative data: discrete and continuous Qualitative data discussion Samples and

More information

Statistics, Probability and Noise

Statistics, Probability and Noise Statistics, Probability and Noise Claudia Feregrino-Uribe & Alicia Morales-Reyes Original material: Rene Cumplido Autumn 2015, CCC-INAOE Contents Signal and graph terminology Mean and standard deviation

More information

Image Extraction using Image Mining Technique

Image Extraction using Image Mining Technique IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 9 (September. 2013), V2 PP 36-42 Image Extraction using Image Mining Technique Prof. Samir Kumar Bandyopadhyay,

More information

Introduction to DSP ECE-S352 Fall Quarter 2000 Matlab Project 1

Introduction to DSP ECE-S352 Fall Quarter 2000 Matlab Project 1 Objective: Introduction to DSP ECE-S352 Fall Quarter 2000 Matlab Project 1 This Matlab Project is an extension of the basic correlation theory presented in the course. It shows a practical application

More information

Computer Graphics Si Lu Fall /25/2017

Computer Graphics Si Lu Fall /25/2017 Computer Graphics Si Lu Fall 2017 09/25/2017 Today Course overview and information Digital images Homework 1 due Oct. 4 in class No late homework will be accepted 2 Pre-Requisites C/C++ programming Linear

More information

Statistics. Graphing Statistics & Data. What is Data?. Data is organized information. It can be numbers, words, measurements,

Statistics. Graphing Statistics & Data. What is Data?. Data is organized information. It can be numbers, words, measurements, Statistics Graphing Statistics & Data What is Data?. Data is organized information. It can be numbers, words, measurements, observations or even just descriptions of things. Qualitative vs Quantitative.

More information

SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS

SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS RADT 3463 - COMPUTERIZED IMAGING Section I: Chapter 2 RADT 3463 Computerized Imaging 1 SECTION I - CHAPTER 2 DIGITAL IMAGING PROCESSING CONCEPTS RADT 3463 COMPUTERIZED IMAGING Section I: Chapter 2 RADT

More information

Mathematics Essential General Course Year 12. Selected Unit 3 syllabus content for the. Externally set task 2017

Mathematics Essential General Course Year 12. Selected Unit 3 syllabus content for the. Externally set task 2017 Mathematics Essential General Course Year 12 Selected Unit 3 syllabus content for the Externally set task 2017 This document is an extract from the Mathematics Essentials General Course Year 12 syllabus,

More information

Tables and Figures. Germination rates were significantly higher after 24 h in running water than in controls (Fig. 4).

Tables and Figures. Germination rates were significantly higher after 24 h in running water than in controls (Fig. 4). Tables and Figures Text: contrary to what you may have heard, not all analyses or results warrant a Table or Figure. Some simple results are best stated in a single sentence, with data summarized parenthetically:

More information

Visualizing Data. Telling a story with information

Visualizing Data. Telling a story with information Visualizing Data Telling a story with information There were 5 Exabytes of information created between the dawn of civilization through 2003, but that much information is now created every two days. (Kind

More information

The Noise about Noise

The Noise about Noise The Noise about Noise I have found that few topics in astrophotography cause as much confusion as noise and proper exposure. In this column I will attempt to present some of the theory that goes into determining

More information

-f/d-b '') o, q&r{laniels, Advisor. 20rt. lmage Processing of Petrographic and SEM lmages. By James Gonsiewski. The Ohio State University

-f/d-b '') o, q&r{laniels, Advisor. 20rt. lmage Processing of Petrographic and SEM lmages. By James Gonsiewski. The Ohio State University lmage Processing of Petrographic and SEM lmages Senior Thesis Submitted in partial fulfillment of the requirements for the Bachelor of Science Degree At The Ohio State Universitv By By James Gonsiewski

More information

(Refer Slide Time: 00:10)

(Refer Slide Time: 00:10) Fundamentals of optical and scanning electron microscopy Dr. S. Sankaran Department of Metallurgical and Materials Engineering Indian Institute of Technology, Madras Module 03 Unit-6 Instrumental details

More information

Introduction. Descriptive Statistics. Problem Solving. Inferential Statistics. Chapter1 Slides. Maurice Geraghty

Introduction. Descriptive Statistics. Problem Solving. Inferential Statistics. Chapter1 Slides. Maurice Geraghty Inferential Statistics and Probability a Holistic Approach Chapter 1 Displaying and Analyzing Data with Graphs This Course Material by Maurice Geraghty is licensed under a Creative Commons Attribution-ShareAlike

More information

ESA400 Electrochemical Signal Analyzer

ESA400 Electrochemical Signal Analyzer ESA4 Electrochemical Signal Analyzer Electrochemical noise, the current and voltage signals arising from freely corroding electrochemical systems, has been studied for over years. Despite this experience,

More information

Lecture 19: Depth Cameras. Kayvon Fatahalian CMU : Graphics and Imaging Architectures (Fall 2011)

Lecture 19: Depth Cameras. Kayvon Fatahalian CMU : Graphics and Imaging Architectures (Fall 2011) Lecture 19: Depth Cameras Kayvon Fatahalian CMU 15-869: Graphics and Imaging Architectures (Fall 2011) Continuing theme: computational photography Cheap cameras capture light, extensive processing produces

More information

Learning Objectives. Describing Data: Displaying and Exploring Data. Dot Plot. Dot Plot 12/9/2015

Learning Objectives. Describing Data: Displaying and Exploring Data. Dot Plot. Dot Plot 12/9/2015 Describing Data: Displaying and Exploring Data Chapter 4 Learning Objectives Develop and interpret a dot plot. Develop and interpret a stem-and-leaf display. Compute and understand quartiles. Construct

More information

Sensors and Scatterplots Activity Excel Worksheet

Sensors and Scatterplots Activity Excel Worksheet Name: Date: Sensors and Scatterplots Activity Excel Worksheet Directions Using our class datasheets, we will analyze additional scatterplots, using Microsoft Excel to make those plots. To get started,

More information

!"#$%&'("&)*("*+,)-(#'.*/$'-0%$1$"&-!!!"#$%&'(!"!!"#$%"&&'()*+*!

!#$%&'(&)*(*+,)-(#'.*/$'-0%$1$&-!!!#$%&'(!!!#$%&&'()*+*! !"#$%&'("&)*("*+,)-(#'.*/$'-0%$1$"&-!!!"#$%&'(!"!!"#$%"&&'()*+*! In this Module, we will consider dice. Although people have been gambling with dice and related apparatus since at least 3500 BCE, amazingly

More information

CSC2537 / STA INFORMATION VISUALIZATION DATA MODELS. Fanny CHEVALIER

CSC2537 / STA INFORMATION VISUALIZATION DATA MODELS. Fanny CHEVALIER CSC2537 / STA2555 - INFORMATION VISUALIZATION DATA MODELS Fanny CHEVALIER Source: http://www.hotbutterstudio.com/ THE INFOVIS REFERENCE MODEL aka infovis pipeline, data state model [Chi99] Ed Chi. A Framework

More information

Describing Data: Displaying and Exploring Data. Chapter 4

Describing Data: Displaying and Exploring Data. Chapter 4 Describing Data: Displaying and Exploring Data Chapter 4 Learning Objectives Develop and interpret a dot plot. Develop and interpret a stem-and-leaf display. Compute and understand quartiles. Construct

More information

28th Seismic Research Review: Ground-Based Nuclear Explosion Monitoring Technologies

28th Seismic Research Review: Ground-Based Nuclear Explosion Monitoring Technologies 8th Seismic Research Review: Ground-Based Nuclear Explosion Monitoring Technologies A LOWER BOUND ON THE STANDARD ERROR OF AN AMPLITUDE-BASED REGIONAL DISCRIMINANT D. N. Anderson 1, W. R. Walter, D. K.

More information

Using Graphing Skills

Using Graphing Skills Name Class Date Laboratory Skills 8 Using Graphing Skills Introduction Recorded data can be plotted on a graph. A graph is a pictorial representation of information recorded in a data table. It is used

More information

TELLING STORIES OF VALUE WITH IOT DATA

TELLING STORIES OF VALUE WITH IOT DATA TELLING STORIES OF VALUE WITH IOT DATA VISUALIZATION BAREND BOTHA VIDEO TRANSCRIPT Tell me a little bit about yourself and your background in IoT. I came from a web development and design background and

More information

High School PLTW Introduction to Engineering Design Curriculum

High School PLTW Introduction to Engineering Design Curriculum Grade 9th - 12th, 1 Credit Elective Course Prerequisites: Algebra 1A High School PLTW Introduction to Engineering Design Curriculum Course Description: Students use a problem-solving model to improve existing

More information

Evaluation of High Intensity Discharge Automotive Forward Lighting

Evaluation of High Intensity Discharge Automotive Forward Lighting Evaluation of High Intensity Discharge Automotive Forward Lighting John van Derlofske, John D. Bullough, Claudia M. Hunter Rensselaer Polytechnic Institute, USA Abstract An experimental field investigation

More information

Laboratory 1: Uncertainty Analysis

Laboratory 1: Uncertainty Analysis University of Alabama Department of Physics and Astronomy PH101 / LeClair May 26, 2014 Laboratory 1: Uncertainty Analysis Hypothesis: A statistical analysis including both mean and standard deviation can

More information

Assistant Lecturer Sama S. Samaan

Assistant Lecturer Sama S. Samaan MP3 Not only does MPEG define how video is compressed, but it also defines a standard for compressing audio. This standard can be used to compress the audio portion of a movie (in which case the MPEG standard

More information

How to Make a Run Chart in Excel

How to Make a Run Chart in Excel How to Make a Run Chart in Excel While there are some statistical programs that you can use to make a run chart, it is simple to make in Excel, using Excel s built-in chart functions. The following are

More information

Graphing Guidelines. Controlled variables refers to all the things that remain the same during the entire experiment.

Graphing Guidelines. Controlled variables refers to all the things that remain the same during the entire experiment. Graphing Graphing Guidelines Graphs must be neatly drawn using a straight edge and pencil. Use the x-axis for the manipulated variable and the y-axis for the responding variable. Manipulated Variable AKA

More information

Going back to the definition of Biostatistics. Organizing and Presenting Data. Learning Objectives. Nominal Data 10/10/2016. Tabulation and Graphs

Going back to the definition of Biostatistics. Organizing and Presenting Data. Learning Objectives. Nominal Data 10/10/2016. Tabulation and Graphs 1/1/1 Organizing and Presenting Data Tabulation and Graphs Introduction to Biostatistics Haleema Masud Going back to the definition of Biostatistics The collection, organization, summarization, analysis,

More information

Psychology of Language

Psychology of Language PSYCH 150 / LIN 155 UCI COGNITIVE SCIENCES syn lab Psychology of Language Prof. Jon Sprouse 01.10.13: The Mental Representation of Speech Sounds 1 A logical organization For clarity s sake, we ll organize

More information

Addendum COLOR PALETTES

Addendum COLOR PALETTES Addendum Followup Material from Best Practices in Graphical Data Presentation Workshop 2010 Library Assessment Conference Baltimore, MD, October 25-27, 2010 COLOR PALETTES Two slides from the workshop

More information

UNIT-4 POWER QUALITY MONITORING

UNIT-4 POWER QUALITY MONITORING UNIT-4 POWER QUALITY MONITORING Terms and Definitions Spectrum analyzer Swept heterodyne technique FFT (or) digital technique tracking generator harmonic analyzer An instrument used for the analysis and

More information

Review. In an experiment, there is one variable that is of primary interest. There are several other factors, which may affect the measured result.

Review. In an experiment, there is one variable that is of primary interest. There are several other factors, which may affect the measured result. Review Observational study vs experiment Experimental designs In an experiment, there is one variable that is of primary interest. There are several other factors, which may affect the measured result.

More information

Thematic special purpose mapping. Thematic mapping 1: point symbol techniques

Thematic special purpose mapping. Thematic mapping 1: point symbol techniques Thematic special purpose mapping Thematic mapping 1: point symbol techniques Qualitative thematic point maps Are partly similar to topographic (general) maps; Individual point locations are important 1

More information

The Statistical Cracks in the Foundation of the Popular Gauge R&R Approach

The Statistical Cracks in the Foundation of the Popular Gauge R&R Approach The Statistical Cracks in the Foundation of the Popular Gauge R&R Approach 10 parts, 3 repeats and 3 operators to calculate the measurement error as a % of the tolerance Repeatability: size matters The

More information

Correlation of Nelson Mathematics 2 to The Ontario Curriculum Grades 1-8 Mathematics Revised 2005

Correlation of Nelson Mathematics 2 to The Ontario Curriculum Grades 1-8 Mathematics Revised 2005 Correlation of Nelson Mathematics 2 to The Ontario Curriculum Grades 1-8 Mathematics Revised 2005 Number Sense and Numeration: Grade 2 Section: Overall Expectations Nelson Mathematics 2 read, represent,

More information

Simple Graphical Techniques

Simple Graphical Techniques Simple Graphical Techniques Graphs are the pictorial representation of facts and figures, or data. The eye can detect patterns and trends from graphs far more easily than from a lot of numbers. Linear

More information

Advanced Tools for Graphical Authoring of Dynamic Virtual Environments at the NADS

Advanced Tools for Graphical Authoring of Dynamic Virtual Environments at the NADS Advanced Tools for Graphical Authoring of Dynamic Virtual Environments at the NADS Matt Schikore Yiannis E. Papelis Ginger Watson National Advanced Driving Simulator & Simulation Center The University

More information

Chapter 2 Frequency Distributions and Graphs

Chapter 2 Frequency Distributions and Graphs Chapter 2 Frequency Distributions and Graphs Outline 2-1 Organizing Data 2-2 Histograms, Frequency Polygons, and Ogives 2-3 Other Types of Graphs Objectives Organize data using a frequency distribution.

More information

Graphics and Web Design Based on Edward Tufte's Principles (from

Graphics and Web Design Based on Edward Tufte's Principles (from 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

More information

STK 573 Metode Grafik untuk Analisis dan Penyajian Data

STK 573 Metode Grafik untuk Analisis dan Penyajian Data STK 573 Metode Grafik untuk Analisis dan Penyajian Data Pertemuan 5 Sajian Peubah Diskret Tunggal Tim Dosen: Prof. Dr. Khairil Anwar Notodiputro Dr. Ir. Aji Hamim Wigena Dr. Agus M Soleh Pendahuluan Chart:

More information

Advances in Antenna Measurement Instrumentation and Systems

Advances in Antenna Measurement Instrumentation and Systems Advances in Antenna Measurement Instrumentation and Systems Steven R. Nichols, Roger Dygert, David Wayne MI Technologies Suwanee, Georgia, USA Abstract Since the early days of antenna pattern recorders,

More information

37 Game Theory. Bebe b1 b2 b3. a Abe a a A Two-Person Zero-Sum Game

37 Game Theory. Bebe b1 b2 b3. a Abe a a A Two-Person Zero-Sum Game 37 Game Theory Game theory is one of the most interesting topics of discrete mathematics. The principal theorem of game theory is sublime and wonderful. We will merely assume this theorem and use it to

More information

PSY 307 Statistics for the Behavioral Sciences. Chapter 2 Describing Data with Tables and Graphs

PSY 307 Statistics for the Behavioral Sciences. Chapter 2 Describing Data with Tables and Graphs PSY 307 Statistics for the Behavioral Sciences Chapter 2 Describing Data with Tables and Graphs Class Progress To-Date Math Readiness Descriptives Midterm next Monday Frequency Distributions One of the

More information

Principles of Graphical Excellence Best Paper: ALAIR April 5 6, 2001 AIR: June 2-5, 2002, Toronto Focus-IR, February 21, 2003

Principles of Graphical Excellence Best Paper: ALAIR April 5 6, 2001 AIR: June 2-5, 2002, Toronto Focus-IR, February 21, 2003 Anna T. Waggener, Ph.D. Institutional Assessment United States Army War College Principles of Graphical Excellence Best Paper: ALAIR April 5 6, 2001 AIR: June 2-5, 2002, Toronto Focus-IR, February 21,

More information

preface Motivation Figure 1. Reality-virtuality continuum (Milgram & Kishino, 1994) Mixed.Reality Augmented. Virtuality Real...

preface Motivation Figure 1. Reality-virtuality continuum (Milgram & Kishino, 1994) Mixed.Reality Augmented. Virtuality Real... v preface Motivation Augmented reality (AR) research aims to develop technologies that allow the real-time fusion of computer-generated digital content with the real world. Unlike virtual reality (VR)

More information