MATH 2311 Section 5.1.

Slides:



Advertisements
Similar presentations
Chapter 3 Examining Relationships Lindsey Van Cleave AP Statistics September 24, 2006.
Advertisements

Scatterplots and Correlation
Example 1: page 161 #5 Example 2: page 160 #1 Explanatory Variable - Response Variable - independent variable dependent variable.
Holt Algebra Curve Fitting with Linear Models 2-7 Curve Fitting with Linear Models Holt Algebra 2 Lesson Presentation Lesson Presentation.
Notes Chapter 7 Bivariate Data. Relationships between two (or more) variables. The response variable measures an outcome of a study. The explanatory variable.
Chapter 5 Summarizing Bivariate Data Correlation.
Chapter 9 Scatter Plots and Data Analysis LESSON 1 SCATTER PLOTS AND ASSOCIATION.
MATH 2311 Section 5.2 & 5.3. Correlation Coefficient.
MATH Section 5.1. Bivariate Data Bivariate data is data for two different variables (usually related in some way). Variables are classified as.
Chapter 3: Describing Relationships
CHAPTER 3 Describing Relationships
MATH 2311 Section 5.1 & 5.2.
Enter the data above into your calculator and create a scatterplot
CHAPTER 7 LINEAR RELATIONSHIPS
Section 3.1 Scatterplots.
Chapter 3: Describing Relationships
Active Learning Lecture Slides
CHAPTER 3 Describing Relationships
Georgetown Middle School Math
Scatter Plots.
Review for Test Chapters 1 & 2:
Scatterplots A way of displaying numeric data
Scatterplots, Association, and Correlation
AGENDA: Quiz # minutes Begin notes Section 3.1.
Chapter 3: Describing Relationships
Scatterplots Lecture 19 Sec Wed, Feb 18, 2004.
Chapter 3: Describing Relationships
The Weather Turbulence
Chapter 3: Describing Relationships
Chapter 3: Describing Relationships
Examining Relationships
Chapter 3: Describing Relationships
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
Chapter 4 - Scatterplots and Correlation
Chapter 3 Scatterplots and Correlation.
Chapter 3: Describing Relationships
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
AP Statistics September 30th, 2014 Mr. Calise
Chapter 3: Describing Relationships
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
Summarizing Bivariate Data
Scatterplots Lecture 18 Sec Fri, Oct 1, 2004.
CHAPTER 3 Describing Relationships
CHAPTER 3 Describing Relationships
Examining Relationships
Chapter 3: Describing Relationships
Chapter 3: Describing Relationships
Chapter 3: Describing Relationships
CHAPTER 3 Describing Relationships
Chapter 3: Describing Relationships
AP Stats Agenda Text book swap 2nd edition to 3rd Frappy – YAY
CHAPTER 3 Describing Relationships
Correlation & Trend Lines
Chapter 3: Describing Relationships
Chapter 3: Describing Relationships
Chapter 3: Describing Relationships
Chapter 3: Describing Relationships
Chapter 3 Examining Relationships
Chapter 3: Describing Relationships
Scatter Plots Learning Goals
Bivariate Data.
Creating and interpreting scatter plots
CHAPTER 3 Describing Relationships
MATH 2311 Section 5.3.
MATH 2311 Section 5.1.
Chapter 3: Describing Relationships
3.2 Correlation Pg
Presentation transcript:

MATH 2311 Section 5.1

Bivariate Data Bivariate data is data for two different variables (usually related in some way). Variables are classified as response variables and explanatory variables. A response variable (dependent) measures the outcome of a study. An explanatory variable (independent) attempts to explain the observed outcomes. Algebraically speaking, your explanatory variable is your “x” and the response variable is your “y”.

Scatterplots Once the explanatory and response variables are identified, we can display the association between the two using a scatterplot.

Example: Suppose we want to know if there is an association between the number of spaces a property is from GO and the cost of the property in a monopoly game. The data is below:

Assigning Variables First we must decide which variable is explanatory and which is response. Which variable “causes” the change in the other variable? The one that causes the change is your x (explanatory). The one is changed because of the other one is your y (response).

Creating a scatterplot in R-Studio Assign each set of data a variable name: Choose variable names. I will use spaces and cost. Enter the lists in R: assign(“spaces”,c(1,3,5,6,8,9,11,12,13,14,15,16,18,19,21,23,24,2 5,26,27,28,29,31,32,34,35,37,39)) assign(“cost”,c(60,60,200,100,100,120,140,150,140,160,200,180, 180,200,220,220,240,200,260,260,150,280,300,300,320,200,350,400)) Now use the plot command: plot(spaces, cost) Note plot command is plot(explanatory,response)

Creating a Scatterplot in R-Studio

Trends in a scatterplot: To interpret a scatter plot we will look at the direction, form and strength. Positively related: Negatively related: Linear relationship:

Popper 13 Let’s discuss the Monopoly problem above. What is the relationship of the data? a. Positive b. Negative c. No Relationship 2. What is the strength of this relationship? a. Strong b. Moderate c. Weak 3. Is the relationship linear? a. Yes b. No