Visual Displays of Data Chapter 3. Uses of Graphs Positive and negative uses – Can accurately and succinctly present information – Can reveal/conceal.

Slides:



Advertisements
Similar presentations
Statistics for the Behavioral Sciences Second Edition Chapter 3: Visual Displays of Data iClicker Questions Copyright © 2012 by Worth Publishers Susan.
Advertisements

Visual Displays of Data Chapter 3. Uses of Graphs >Positive and negative uses Can accurately and succinctly present information Can reveal/conceal complicated.
GRAPHICAL DESCRIPTIVE STATISTICS FOR QUALITATIVE, TIME SERIES AND RELATIONAL DATA.
Data Tutorial Tutorial on Types of Graphs Used for Data Analysis, Along with How to Enter Them in MS Excel Carryn Bellomo University of Nevada, Las Vegas.
Graphing. Representing numerical information in a picture. Graph shows a picture of a relationship -how two processes relate -what happens when two events.
Section 5: Graphs in Science
How to build graphs, charts and plots. For Categorical data If the data is nominal, then: Few values: Pie Chart Many Values: Pareto Chart (order of bars.
Summarizing Scores With Measures of Central Tendency
Graphic Presentation The Pie Chart The Bar Graph The Statistical Map
Quantitative Skills 1: Graphing
Graphing Guidelines  Often the goal of an experiment is to find the relationship between two variables.  As one variable changes, so does the other.
 Frequency Distribution is a statistical technique to explore the underlying patterns of raw data.  Preparing frequency distribution tables, we can.
Chapter 4 Graphs!.
Visual Displays of Data Chapter 3. Uses of Graphs Positive and negative uses – Can accurately and succinctly present information – Can reveal/conceal.
Notes Graphs. Types of graphs A graph is just a picture of an amount of something. Like size of buildings since 1900.
Statistics for the Behavioral Sciences Second Edition Copyright © 2012 by Worth Publishers Susan A. Nolan and Thomas E. Heinzen Chapter 3 Visual Displays.
Unit 3 Review. Data: – A variable is an attribute that can be measured – One Variable Data: measures only 1 attribute for each data point. – Two Variable.
Chapter 3: Organizing Data. Raw data is useless to us unless we can meaningfully organize and summarize it (descriptive statistics). Organization techniques.
Correlation Chapter 6. What is a Correlation? It is a way of measuring the extent to which two variables are related. It measures the pattern of responses.
Introduction to Graphics in R 3/12/2014. First, let’s get some data Load the Duncan dataset It’s in the car package. Remember how to get it? – library(car)
How to build graphs, charts and plots. For Categorical data If the data is nominal, then: Few values: Pie Chart Many Values: Pareto Chart (order of bars.
Statistical Fundamentals: Using Microsoft Excel for Univariate and Bivariate Analysis Alfred P. Rovai Charts Overview PowerPoint Prepared by Alfred P.
Graphing Techniques and Interpreting Graphs. Introduction A graph of your data allows you to see the following: Patterns Trends Shows Relationships between.
Frequency Distributions Chapter 2. Descriptive Statistics Distributions are part of descriptive statistics…we are learning how to describe some data by.
Tables & Graphing Laboratory Skills. Basic Tables Tables, or charts, are used to organize information Tables, or charts, are used to organize information.
Graphing in Science. Goals Choosing an appropriate display for data (which type of graph to construct) Identifying data to be displayed on the x- and.
Frequency Distributions
Chapter 2 Linear regression.
Sit in your permanent seat
Bar Graphs and Line Graphs
CHAPTER 3 Describing Relationships
Graphical & Tabular Descriptive Techniques
CHAPTER 7 LINEAR RELATIONSHIPS
Chapter 2 Frequency Distribution and Graph
IB Physics: Chapter 1 Lesson 2b: Graphs.
Quantitative Skills : Graphing
Summarizing Scores With Measures of Central Tendency
Scatterplots A way of displaying numeric data
MATH SELF TUTOR SKILL: GRAPHS.
Applied Statistical Analysis
Graphical Descriptive Techniques
Section 5: Graphs in Science
Relationship between Current, Voltage, and Resistance
Chapter 7 Part 1 Scatterplots, Association, and Correlation
Collecting & Displaying Data
Technical Writing (AEEE299)
Chapter 2 Looking at Data— Relationships
Section 4: Representing Data
Make sure your numbers are underneath the dash!!
Types of Graphs… and when to use them!.
Descriptive and Inferential
Line of Best Fit.
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
Graphing in Science.
Range, Width, min-max Values and Graphs
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
Bell Ringer When completing an experiment, you are testing your hypothesis. What are the three kinds of variables that you need to identify in your experiments?
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
Chapter One Univariate Data Student Notes
Statistics is... a collection of techniques for planning experiments, obtaining data, and then organizing, summarizing, presenting, analyzing, interpreting,
DATA VISUALISATION (QUANTITATIVE).
CHAPTER 3 Describing Relationships
Correlation/regression using averages
Presentation transcript:

Visual Displays of Data Chapter 3

Uses of Graphs Positive and negative uses – Can accurately and succinctly present information – Can reveal/conceal complicated data Graphing in the information age: a critical skill –

“The Most Misleading Graph Ever Published” How to Mislead with Graphs The Cost and Quality of Higher Education

“The Most Misleading Graph Ever Published” So why bad? – The times are not the same for both lines (going across) – The scales are not the same So the starting point is also a problem – Rankings … down = BETTER, so why did they graph ranks that way?

Techniques for Misleading The false face validity lie – Method seems to represent what it says, but does not actually. e.g., using yelling as a measure of aggression

Techniques for Misleading The biased scale lie – Scaling to skew the results, or leading questions – i.e. goodreads book scale (did not like, it was ok, liked it, really liked it, it was amazing)

Techniques for Misleading The sneaky sample lie – When participants are preselected or self selected to provide data. – Like rate my professor!

More Techniques The interpolation lie – Assumes that a value between 2 data points follows the same pattern The extrapolation lie – Assumes knowledge outside of the study

More Techniques The inaccurate values lie – Uses scaling to distort portions of the data The outright lie: – Making up data!

The Inaccurate Value Lie

Which of the two graphs is misleading?

Common Types of Graphs Scatterplots – Graphs that depict the relation between two scale variables – Range-frame (!!) – x and y axis show the range of the variable – Observing every data point Linear relationships – relationship between variables is a straight line Nonlinear relationships – relationship between variables is curved – Performance & Anxiety

Scatterplot of Hours Studied and Statistics Grade

How-To R Be sure you load the ggplot library! – We are going to use the airquality dataset. – data(airquality), head(airquality)

How-To R First build a blank plot. myplot = ggplot(dataset, aes(X axis column, Y axis column)) – Example: myplot = ggplot(airquality, aes(Temp, Ozone))

How-To R Add dots to it! – geom_point() Man, that’s still an ugly graph…how can we clean it up?

How-To R Run this line: theme = theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(), panel.background = element_blank(), axis.line = element_line(colour = "black"), legend.key = element_rect(fill = "white"))

How-To R Now do, myplot + geom_point() + theme – Much nicer! Now, how can we change other things about the graph? – How about x and y axis labels?

How-To R + xlab(“Text goes here”) + ylab(“Text goes here”)

Line Graphs Line graphs are best for scale variables (remember this is interval/ratio) – Especially useful for trends over time Line of best fit Time series plot

The Line of Best Fit

How-To R Let’s add a line of best fit! + geom_smooth() – Oh, that’s not quite straight. – Let’s do this instead! – geom_smooth(method = “lm”)

Weekly Newspaper Circulation

Bar Graphs When the independent variable is nominal or ordinal and the dependent variable is scale – Meaning X = groups, Y = interval/ratio – Each bar usually represents and AVERAGE score.

Bar Graphs Highlight Differences Between Means

Deceiving with the Scale

How-To R First, build a blank plot. – myplot = ggplot(dataset, aes(X axis column, Y axis column)) – But now, the X axis column will be categorical, the Y axis column will be continuous

How-To R myplot = ggplot(airquality, aes(Month, Temp)) – Month is an integer at the month, let’s fix it! – The factor() command allows us to take numeric variables and switch them to text. – factor(column, levels = c(stuff that’s in the column already), Labels = c(stuff you want to change it to))

How-To R + stat_summary(fun.y = mean, geom = "bar", fill = "White", color = "Black")

How-To R + stat_summary(fun.data = mean_cl_normal, geom = "errorbar", position = position_dodge(width = 0.90), width = 0.2)

Check Your Learning What is the best type of graph to depict the following: – Depression levels and stress levels for 150 university students. Is depression related to stress? – Mean years of education for six regions of the United States. Are education levels higher in some regions than in others?

Choosing the Graph Based on Variables One scale variable (with frequencies): histogram or frequency polygon One scale independent and one scale dependent variable: scatterplot or line graph One nominal or ordinal independent and one scale dependent variable: bar graph Two+ nominal or ordinal independent and one interval dependent variable: bar graph