An Example of Using inter5.exe to Obtain the Graph of an Interaction

Size: px
Start display at page:

Download "An Example of Using inter5.exe to Obtain the Graph of an Interaction"

Transcription

1 An Example of Using inter5.exe to Obtain the Graph of an Interaction This example covers the general use of inter5.exe to produce data from values inserted into a regression equation which can then be plotted in SPSS. It also covers some particular points how to handle an interaction between a numeric variable and a categorical variable when the latter has more than two categories, and the difference between using numeric variables when they have and haven't been centred at the mean. The example is based on bank3.sav, a modified version of the classic SPSS dataset bank.sav. The dependent variable is salary, in let's say, 1000's of dollars, a categorical version of years of education, and age in years. edrec Valid Total Cumulative Frequency Percent Valid Percent Percent Descriptive Statistics age Age of employee work Work experience Valid N (listwise) N Minimum Maximum Mean Std. Deviation The question is whether the relationship between age and salary is the same for all the education groups. The first analysis will be carried out without centring age. Age Uncentred glm salary by edrec with age work/ print=parameters/ design=work age edrec age*edrec.

2 -2- Dependent Variable: salary Source Corrected Model Intercept work age edrec edrec * age Error Total Corrected Total Tests of Between-Subjects Effects Type III Sum of Squares df Mean Square F Sig a a. R Squared =.621 (Adjusted R Squared =.616) The results in this table show a significant interaction between edrec and age. Parameter Estimates Dependent Variable: salary 95% Confidence Interval Parameter B Std. Error t Sig. Lower Bound Upper Bound Intercept work age [edrec=0] [edrec=1] [edrec=2] 0 a..... [edrec=0] * age [edrec=1] * age [edrec=2] * age 0 a..... a. This parameter is set to zero because it is redundant. The estimate for age in this table shows that there is a positive relationship (.101) between age and salary for the highest edrec group (which GLM has made the reference category). The estimate for the interaction between the lowest edrec category, which we'll call lowed, and age is.205 less than.101, i.e., Similarly, the estimate for the middle education category, meded, is = The p-values for these estimates (.005 and.003) show that both slopes are significantly different from the slope for the highest education group. We could rerun the analysis with different reference categories for edrec, in order to see if the slopes for the two lowest categories are significantly different from zero, but our interest here is in producing a graph of the interaction.

3 -3- Having started up inter5.exe, we can enter the coefficients from the parameter estimates table as follows. The entered numbers or names are shown in bold. A blank beside a prompt indicates that Enter was pressed without a number being entered. Because work isn't involved in the interaction, we'll enter it at this stage and ask that the mean age be entered as the value when the equation is evaluated: Now begin entering the data... Number of variables not involved in any interaction... i.e., in the model as main effects only [default=0]? 1 Coefficient for variable 1?.236 Value for variable 1? 8 The constant (intercept) and the coefficients for age, the two dummy variables for edrec, and the two interaction terms are now entered. Entering the first model: In the following, enter zero (or just press Enter) if the variable or term is not included in the model. There must be at least one variable (variable a). Enter the constant [default: ]? variable(a): b1 [default: ]?.101 variable(b): b2 [default: ]? variable(c): b3 [default: ]? variable(d): b4 [default: ]? There isn't a fourth variable involved in the interaction, so nothing is entered here. axb: b5 [default: ]? axc: b6 [default: ]? bxc: b8 [default: ]? Same here axbxc: b11 [default: ]? and here

4 -4- The high and low values which the program will insert in the equation are now entered. low & high of a? (enter together, separated by a comma)... 25,49 The approximate mean of age (37) minus and plus the approximate SD (12) low & high of b? (enter together, separated by a comma)... 0,1 low & high of c? (enter together, separated by a comma)... 0,1 Note that if 0 and 1 are entered as the low and high, inter5.exe doesn't calculate the mean of them, as it does with numeric variables, and uses them as the codes in the SPSS file, rather than -1 and 1. The program shows you the equation that you entered, so you can check it, and saves it for future reference. The equation is: a b c -.205ab -.249ac + 0bc The model has been saved in file c:\qb45\mintdem1.txt The program asks for the names to use in the file of predicted values which it writes out. Name of variable a [default: A]? age Name of variable b [default: B]? lowed Name of variable c [default: C]? meded Name of dependent variable [default: Y]? salary The current file has been saved as c:\qb45\intdemo1.txt The file intdemo1.txt looks like this:

5 -5- model analysis age lowed meded A_value B_value C_value salary Notice that that inter5.exe, in its ignorance of the fact that lowed and meded together represent a three-category variable, and its keeness to provide predicted values for all combinations of the values of the variables, has produced predicted values for cases which have 1 for both variables, i.e., are in both groups, which obviously can't be allowed in an independent groups design. This is a problem which we will fix in SPSS. Notice also that, in order to specify the three levels of edrec, we would need to use both lowed and meded, when we would like to specify just one variable in the graph. This is another thing we'll attend to in SPSS. The Text Input Wizard is used to read the data into SPSS: We need to remove the cases which have one for both lowed and meded, and create a edrec variable for the plot. This syntax does the job.

6 -6- * Get rid of the impossible combinations produced by inter5.exe (i.e., cases which are in both the low and medium education groups). select if (not(lowed eq 1 and meded eq 1)). * Produce an edrec variable from the combinations of the dummy variable values for lowed and meded (i.e., 0,0; 0,1; 10). compute edrec=lowed*10 + meded. recode edrec (0=3)(1=2)(10=1). * Be careful with the recode. * Remember that lowed=0 and meded=0 are the codes that subjects in the highest education group will have. print format edrec (f1). value labels edrec 1 '8-12 yrs' 2 '13-15 yrs' 3 '16+ yrs'. execute. The dataset now looks like this (the model and analysis variables are not shown): The graph can now be produced:

7 -7- As seen from the equation, the slope of the relationship between age and salary is positive for the subjects in the highest edrec group, and negative for the other two groups. It is also noteworthy that the salary is much higher for subjects in the highest education category, regardless of age.

8 -8- Age centred In this analysis, both age and work are centred at the mean. The reason for centring age is so that the effects of edrec are shown at the mean of age, which is now zero, rather than at zero years of age, which could give nonsensical results. There is less reason to centre work but, when it is centred, the intercept shows the salary at the the mean of age and work (and the reference category of edrec, which is the highest group), so it is more meaningful. compute age=age compute work=work glm salary by edrec with age work/ print=parameters/ design=work age edrec age*edrec. In entering the information into inter5.exe, zero is given as the mean of work: Number of variables not involved in any interaction... i.e., in the model as main effects only [default=0]? 1 Coefficient for variable 1?.236 Value for variable 1? 0 The coefficients are entered in the same way as before: Enter the constant [default: ]? variable(a): b1 [default: ]?.101 variable(b): b2 [default: ]? variable(c): b3 [default: ]? axb: b5 [default: ]? axc: b6 [default: ]? -.249

9 -9- When entering the low and high values for age, remember than the mean is now zero, so the mean minus and plus the SD is -12 and 12. low & high of a? (enter together, separated by a comma) ,12 low & high of b? (enter together, separated by a comma)... 0,1 low & high of c? (enter together, separated by a comma)... 0,1 The resulting text file is read into SPSS as before, and the SPSS commands are run to prepare the dataset for the graph, so that it looks like this: Give or take a bit of rounding error, the values are the same as before, and the graph looks the same:

10 -10- Once you have the graph in SPSS, you can edit it to get rid of unnecessary decimal places, alter axis labels, add titles, and alter the line types and weight, etc. You can also attach other value labels to the data file so they will be incorporated in the graph. Alan Taylor Department of Psychology 8th September 2006

Further Maths Notes. Common Mistakes. Read the bold words in the exam! Always check data entry. Write equations in terms of variables

Further Maths Notes. Common Mistakes. Read the bold words in the exam! Always check data entry. Write equations in terms of variables Further Maths Notes Common Mistakes Read the bold words in the exam! Always check data entry Remember to interpret data with the multipliers specified (e.g. in thousands) Write equations in terms of variables

More information

Practice Test (page 391) 1. For each line, count squares on the grid to determine the rise and the run. Use slope = rise

Practice Test (page 391) 1. For each line, count squares on the grid to determine the rise and the run. Use slope = rise Practice Test (page 91) 1. For each line, count squares on the grid to determine the rise and the. Use slope = rise 4 Slope of AB =, or 6 Slope of CD = 6 9, or Slope of EF = 6, or 4 Slope of GH = 6 4,

More information

Enter your UID and password. Make sure you have popups allowed for this site.

Enter your UID and password. Make sure you have popups allowed for this site. Log onto: https://apps.csbs.utah.edu/ Enter your UID and password. Make sure you have popups allowed for this site. You may need to go to preferences (right most tab) and change your client to Java. I

More information

Robust Linear Regression (Passing- Bablok Median-Slope)

Robust Linear Regression (Passing- Bablok Median-Slope) Chapter 314 Robust Linear Regression (Passing- Bablok Median-Slope) Introduction This procedure performs robust linear regression estimation using the Passing-Bablok (1988) median-slope algorithm. Their

More information

E-Campus Inferential Statistics - Part 2

E-Campus Inferential Statistics - Part 2 E-Campus Inferential Statistics - Part 2 Group Members: James Jones Question 4-Isthere a significant difference in the mean prices of the stores? New Textbook Prices New Price Descriptives 95% Confidence

More information

TABEL DISTRIBUSI DAN HUBUNGAN LENGKUNG RAHANG DAN INDEKS FASIAL N MIN MAX MEAN SD

TABEL DISTRIBUSI DAN HUBUNGAN LENGKUNG RAHANG DAN INDEKS FASIAL N MIN MAX MEAN SD TABEL DISTRIBUSI DAN HUBUNGAN LENGKUNG RAHANG DAN INDEKS FASIAL Lengkung Indeks fasial rahang Euryprosopic mesoprosopic leptoprosopic Total Sig. n % n % n % n % 0,000 Narrow 0 0 0 0 15 32,6 15 32,6 Normal

More information

Subset Selection in Multiple Regression

Subset Selection in Multiple Regression Chapter 307 Subset Selection in Multiple Regression Introduction Multiple regression analysis is documented in Chapter 305 Multiple Regression, so that information will not be repeated here. Refer to that

More information

UNIT 8: SOLVING AND GRAPHING QUADRATICS. 8-1 Factoring to Solve Quadratic Equations. Solve each equation:

UNIT 8: SOLVING AND GRAPHING QUADRATICS. 8-1 Factoring to Solve Quadratic Equations. Solve each equation: UNIT 8: SOLVING AND GRAPHING QUADRATICS 8-1 Factoring to Solve Quadratic Equations Zero Product Property For all numbers a & b Solve each equation: If: ab 0, 1. (x + 3)(x 5) = 0 Then one of these is true:

More information

An introduction to SPSS

An introduction to SPSS An introduction to SPSS To open the SPSS software using U of Iowa Virtual Desktop... Go to https://virtualdesktop.uiowa.edu and choose SPSS 24. Contents NOTE: Save data files in a drive that is accessible

More information

Multiple Regression White paper

Multiple Regression White paper +44 (0) 333 666 7366 Multiple Regression White paper A tool to determine the impact in analysing the effectiveness of advertising spend. Multiple Regression In order to establish if the advertising mechanisms

More information

Psychology 282 Lecture #21 Outline Categorical IVs in MLR: Effects Coding and Contrast Coding

Psychology 282 Lecture #21 Outline Categorical IVs in MLR: Effects Coding and Contrast Coding Psychology 282 Lecture #21 Outline Categorical IVs in MLR: Effects Coding and Contrast Coding In the previous lecture we learned how to incorporate a categorical research factor into a MLR model by using

More information

Descriptives. Graph. [DataSet1] C:\Documents and Settings\BuroK\Desktop\Prestige.sav

Descriptives. Graph. [DataSet1] C:\Documents and Settings\BuroK\Desktop\Prestige.sav GET FILE='C:\Documents and Settings\BuroK\Desktop\Prestige.sav'. DESCRIPTIVES VARIABLES=prestige education income women /STATISTICS=MEAN STDDEV MIN MAX. Descriptives Input Missing Value Handling Resources

More information

SPSS INSTRUCTION CHAPTER 9

SPSS INSTRUCTION CHAPTER 9 SPSS INSTRUCTION CHAPTER 9 Chapter 9 does no more than introduce the repeated-measures ANOVA, the MANOVA, and the ANCOVA, and discriminant analysis. But, you can likely envision how complicated it can

More information

The following procedures and commands, are covered in this part: Command Purpose Page

The following procedures and commands, are covered in this part: Command Purpose Page Some Procedures in SPSS Part (2) This handout describes some further procedures in SPSS, following on from Part (1). Because some of the procedures covered are complex, with many sub-commands, the descriptions

More information

DataSet2. <none> <none> <none>

DataSet2. <none> <none> <none> GGraph Notes Output Created 09-Dec-0 07:50:6 Comments Input Active Dataset Filter Weight Split File DataSet Syntax Resources N of Rows in Working Data File Processor Time Elapsed Time 77 GGRAPH /GRAPHDATASET

More information

Bivariate (Simple) Regression Analysis

Bivariate (Simple) Regression Analysis Revised July 2018 Bivariate (Simple) Regression Analysis This set of notes shows how to use Stata to estimate a simple (two-variable) regression equation. It assumes that you have set Stata up on your

More information

Algebra 1 Notes Quarter

Algebra 1 Notes Quarter Algebra 1 Notes Quarter 3 2014 2015 Name: ~ 1 ~ Table of Contents Unit 9 Exponent Rules Exponent Rules for Multiplication page 6 Negative and Zero Exponents page 10 Exponent Rules Involving Quotients page

More information

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview Chapter 888 Introduction This procedure generates D-optimal designs for multi-factor experiments with both quantitative and qualitative factors. The factors can have a mixed number of levels. For example,

More information

Regression. Page 1. Notes. Output Created Comments Data. 26-Mar :31:18. Input. C:\Documents and Settings\BuroK\Desktop\Data Sets\Prestige.

Regression. Page 1. Notes. Output Created Comments Data. 26-Mar :31:18. Input. C:\Documents and Settings\BuroK\Desktop\Data Sets\Prestige. GET FILE='C:\Documents and Settings\BuroK\Desktop\DataSets\Prestige.sav'. GET FILE='E:\MacEwan\Teaching\Stat252\Data\SPSS_data\MENTALID.sav'. DATASET ACTIVATE DataSet1. DATASET CLOSE DataSet2. GET FILE='E:\MacEwan\Teaching\Stat252\Data\SPSS_data\survey_part.sav'.

More information

THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL. STOR 455 Midterm 1 September 28, 2010

THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL. STOR 455 Midterm 1 September 28, 2010 THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL STOR 455 Midterm September 8, INSTRUCTIONS: BOTH THE EXAM AND THE BUBBLE SHEET WILL BE COLLECTED. YOU MUST PRINT YOUR NAME AND SIGN THE HONOR PLEDGE

More information

Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975.

Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975. Statistical Package for the Social Sciences INTRODUCTION TO SPSS SPSS for Windows Version 16.0: Its first version in 1968 In 1975. SPSS Statistics were designed INTRODUCTION TO SPSS Objective About the

More information

Chapter 7: Linear regression

Chapter 7: Linear regression Chapter 7: Linear regression Objective (1) Learn how to model association bet. 2 variables using a straight line (called "linear regression"). (2) Learn to assess the quality of regression models. (3)

More information

1. Basic Steps for Data Analysis Data Editor. 2.4.To create a new SPSS file

1. Basic Steps for Data Analysis Data Editor. 2.4.To create a new SPSS file 1 SPSS Guide 2009 Content 1. Basic Steps for Data Analysis. 3 2. Data Editor. 2.4.To create a new SPSS file 3 4 3. Data Analysis/ Frequencies. 5 4. Recoding the variable into classes.. 5 5. Data Analysis/

More information

Frequency Tables. Chapter 500. Introduction. Frequency Tables. Types of Categorical Variables. Data Structure. Missing Values

Frequency Tables. Chapter 500. Introduction. Frequency Tables. Types of Categorical Variables. Data Structure. Missing Values Chapter 500 Introduction This procedure produces tables of frequency counts and percentages for categorical and continuous variables. This procedure serves as a summary reporting tool and is often used

More information

- 1 - Fig. A5.1 Missing value analysis dialog box

- 1 - Fig. A5.1 Missing value analysis dialog box WEB APPENDIX Sarstedt, M. & Mooi, E. (2019). A concise guide to market research. The process, data, and methods using SPSS (3 rd ed.). Heidelberg: Springer. Missing Value Analysis and Multiple Imputation

More information

INTRODUCTION TO SPSS OUTLINE 6/17/2013. Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN Phone:

INTRODUCTION TO SPSS OUTLINE 6/17/2013. Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN Phone: INTRODUCTION TO SPSS Assoc. Prof. Dr. Md. Mujibur Rahman Room No. BN-0-024 Phone: 89287269 E-mail: mujibur@uniten.edu.my OUTLINE About the four-windows in SPSS The basics of managing data files The basic

More information

Box-Cox Transformation for Simple Linear Regression

Box-Cox Transformation for Simple Linear Regression Chapter 192 Box-Cox Transformation for Simple Linear Regression Introduction This procedure finds the appropriate Box-Cox power transformation (1964) for a dataset containing a pair of variables that are

More information

SPSS. (Statistical Packages for the Social Sciences)

SPSS. (Statistical Packages for the Social Sciences) Inger Persson SPSS (Statistical Packages for the Social Sciences) SHORT INSTRUCTIONS This presentation contains only relatively short instructions on how to perform basic statistical calculations in SPSS.

More information

Math 227 EXCEL / MEGASTAT Guide

Math 227 EXCEL / MEGASTAT Guide Math 227 EXCEL / MEGASTAT Guide Introduction Introduction: Ch2: Frequency Distributions and Graphs Construct Frequency Distributions and various types of graphs: Histograms, Polygons, Pie Charts, Stem-and-Leaf

More information

Analysis of Two-Level Designs

Analysis of Two-Level Designs Chapter 213 Analysis of Two-Level Designs Introduction Several analysis programs are provided for the analysis of designed experiments. The GLM-ANOVA and the Multiple Regression programs are often used.

More information

ALGEBRA 1 NOTES. Quarter 3. Name: Block

ALGEBRA 1 NOTES. Quarter 3. Name: Block 2016-2017 ALGEBRA 1 NOTES Quarter 3 Name: Block Table of Contents Unit 8 Exponent Rules Exponent Rules for Multiplication page 4 Negative and Zero Exponents page 8 Exponent Rules Involving Quotients page

More information

Section 7.2 Characteristics of Quadratic Functions

Section 7.2 Characteristics of Quadratic Functions Section 7. Characteristics of Quadratic Functions A QUADRATIC FUNCTION is a function of the form " # $ N# 1 & ;# & 0 Characteristics Include:! Three distinct terms each with its own coefficient:! An x

More information

Exercise: Graphing and Least Squares Fitting in Quattro Pro

Exercise: Graphing and Least Squares Fitting in Quattro Pro Chapter 5 Exercise: Graphing and Least Squares Fitting in Quattro Pro 5.1 Purpose The purpose of this experiment is to become familiar with using Quattro Pro to produce graphs and analyze graphical data.

More information

Applied Regression Modeling: A Business Approach

Applied Regression Modeling: A Business Approach i Applied Regression Modeling: A Business Approach Computer software help: SPSS SPSS (originally Statistical Package for the Social Sciences ) is a commercial statistical software package with an easy-to-use

More information

Dealing with Data in Excel 2013/2016

Dealing with Data in Excel 2013/2016 Dealing with Data in Excel 2013/2016 Excel provides the ability to do computations and graphing of data. Here we provide the basics and some advanced capabilities available in Excel that are useful for

More information

NCSS Statistical Software. Robust Regression

NCSS Statistical Software. Robust Regression Chapter 308 Introduction Multiple regression analysis is documented in Chapter 305 Multiple Regression, so that information will not be repeated here. Refer to that chapter for in depth coverage of multiple

More information

Statistics Lab #7 ANOVA Part 2 & ANCOVA

Statistics Lab #7 ANOVA Part 2 & ANCOVA Statistics Lab #7 ANOVA Part 2 & ANCOVA PSYCH 710 7 Initialize R Initialize R by entering the following commands at the prompt. You must type the commands exactly as shown. options(contrasts=c("contr.sum","contr.poly")

More information

Statistical Good Practice Guidelines. 1. Introduction. Contents. SSC home Using Excel for Statistics - Tips and Warnings

Statistical Good Practice Guidelines. 1. Introduction. Contents. SSC home Using Excel for Statistics - Tips and Warnings Statistical Good Practice Guidelines SSC home Using Excel for Statistics - Tips and Warnings On-line version 2 - March 2001 This is one in a series of guides for research and support staff involved in

More information

Introduction. About this Document. What is SPSS. ohow to get SPSS. oopening Data

Introduction. About this Document. What is SPSS. ohow to get SPSS. oopening Data Introduction About this Document This manual was written by members of the Statistical Consulting Program as an introduction to SPSS 12.0. It is designed to assist new users in familiarizing themselves

More information

Teaching students quantitative methods using resources from the British Birth Cohorts

Teaching students quantitative methods using resources from the British Birth Cohorts Centre for Longitudinal Studies, Institute of Education Teaching students quantitative methods using resources from the British Birth Cohorts Assessment of Cognitive Development through Childhood CognitiveExercises.doc:

More information

Properties of a Function s Graph

Properties of a Function s Graph Section 3.2 Properties of a Function s Graph Objective 1: Determining the Intercepts of a Function An intercept of a function is a point on the graph of a function where the graph either crosses or touches

More information

NCSS Statistical Software

NCSS Statistical Software Chapter 327 Geometric Regression Introduction Geometric regression is a special case of negative binomial regression in which the dispersion parameter is set to one. It is similar to regular multiple regression

More information

Opening a Data File in SPSS. Defining Variables in SPSS

Opening a Data File in SPSS. Defining Variables in SPSS Opening a Data File in SPSS To open an existing SPSS file: 1. Click File Open Data. Go to the appropriate directory and find the name of the appropriate file. SPSS defaults to opening SPSS data files with

More information

. predict mod1. graph mod1 ed, connect(l) xlabel ylabel l1(model1 predicted income) b1(years of education)

. predict mod1. graph mod1 ed, connect(l) xlabel ylabel l1(model1 predicted income) b1(years of education) DUMMY VARIABLES AND INTERACTIONS Let's start with an example in which we are interested in discrimination in income. We have a dataset that includes information for about 16 people on their income, their

More information

1. Solve the following system of equations below. What does the solution represent? 5x + 2y = 10 3x + 5y = 2

1. Solve the following system of equations below. What does the solution represent? 5x + 2y = 10 3x + 5y = 2 1. Solve the following system of equations below. What does the solution represent? 5x + 2y = 10 3x + 5y = 2 2. Given the function: f(x) = a. Find f (6) b. State the domain of this function in interval

More information

Test Name: Chapter 3 Review

Test Name: Chapter 3 Review Test Name: Chapter 3 Review 1. For the following equation, determine the values of the missing entries. If needed, write your answer as a fraction reduced to lowest terms. 10x - 8y = 18 Note: Each column

More information

Chapter 1 Section 1 Solving Linear Equations in One Variable

Chapter 1 Section 1 Solving Linear Equations in One Variable Chapter Section Solving Linear Equations in One Variable A linear equation in one variable is an equation which can be written in the form: ax + b = c for a, b, and c real numbers with a 0. Linear equations

More information

IQR = number. summary: largest. = 2. Upper half: Q3 =

IQR = number. summary: largest. = 2. Upper half: Q3 = Step by step box plot Height in centimeters of players on the 003 Women s Worldd Cup soccer team. 157 1611 163 163 164 165 165 165 168 168 168 170 170 170 171 173 173 175 180 180 Determine the 5 number

More information

Instruction on JMP IN of Chapter 19

Instruction on JMP IN of Chapter 19 Instruction on JMP IN of Chapter 19 Example 19.2 (1). Download the dataset xm19-02.jmp from the website for this course and open it. (2). Go to the Analyze menu and select Fit Model. Click on "REVENUE"

More information

2.1 Basics of Functions and Their Graphs

2.1 Basics of Functions and Their Graphs .1 Basics of Functions and Their Graphs Section.1 Notes Page 1 Domain: (input) all the x-values that make the equation defined Defined: There is no division by zero or square roots of negative numbers

More information

Cluster Randomization Create Cluster Means Dataset

Cluster Randomization Create Cluster Means Dataset Chapter 270 Cluster Randomization Create Cluster Means Dataset Introduction A cluster randomization trial occurs when whole groups or clusters of individuals are treated together. Examples of such clusters

More information

SPSS QM II. SPSS Manual Quantitative methods II (7.5hp) SHORT INSTRUCTIONS BE CAREFUL

SPSS QM II. SPSS Manual Quantitative methods II (7.5hp) SHORT INSTRUCTIONS BE CAREFUL SPSS QM II SHORT INSTRUCTIONS This presentation contains only relatively short instructions on how to perform some statistical analyses in SPSS. Details around a certain function/analysis method not covered

More information

Hypermarket Retail Analysis Customer Buying Behavior. Reachout Analytics Client Sample Report

Hypermarket Retail Analysis Customer Buying Behavior. Reachout Analytics Client Sample Report Hypermarket Retail Analysis Customer Buying Behavior Report Tools Used: R Python WEKA Techniques Applied: Comparesion Tests Association Tests Requirement 1: All the Store Brand significance to Gender Towards

More information

Round each observation to the nearest tenth of a cent and draw a stem and leaf plot.

Round each observation to the nearest tenth of a cent and draw a stem and leaf plot. Warm Up Round each observation to the nearest tenth of a cent and draw a stem and leaf plot. 1. Constructing Frequency Polygons 2. Create Cumulative Frequency and Cumulative Relative Frequency Tables 3.

More information

End Behavior and Symmetry

End Behavior and Symmetry Algebra 2 Interval Notation Name: Date: Block: X Characteristics of Polynomial Functions Lesson Opener: Graph the function using transformations then identify key characteristics listed below. 1. y x 2

More information

CHAPTER 9: Quadratic Equations and Functions

CHAPTER 9: Quadratic Equations and Functions Notes # CHAPTER : Quadratic Equations and Functions -: Exploring Quadratic Graphs A. Intro to Graphs of Quadratic Equations: = ax + bx + c A is a function that can be written in the form = ax + bx + c

More information

Lecture 8. Divided Differences,Least-Squares Approximations. Ceng375 Numerical Computations at December 9, 2010

Lecture 8. Divided Differences,Least-Squares Approximations. Ceng375 Numerical Computations at December 9, 2010 Lecture 8, Ceng375 Numerical Computations at December 9, 2010 Computer Engineering Department Çankaya University 8.1 Contents 1 2 3 8.2 : These provide a more efficient way to construct an interpolating

More information

1. What specialist uses information obtained from bones to help police solve crimes?

1. What specialist uses information obtained from bones to help police solve crimes? Mathematics: Modeling Our World Unit 4: PREDICTION HANDOUT VIDEO VIEWING GUIDE H4.1 1. What specialist uses information obtained from bones to help police solve crimes? 2.What are some things that can

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center September 9, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the

More information

4.3 Quadratic functions and their properties

4.3 Quadratic functions and their properties 4.3 Quadratic functions and their properties A quadratic function is a function defined as f(x) = ax + x + c, a 0 Domain: the set of all real numers x-intercepts: Solutions of ax + x + c = 0 y-intercept:

More information

Math 083 Final Exam Practice

Math 083 Final Exam Practice Math 083 Final Exam Practice Name: 1. Simplify the expression. Remember, negative exponents give reciprocals.. Combine the expressions. 3. Write the expression in simplified form. (Assume the variables

More information

MULTIPLE REGRESSION IN EXCEL EXCEL LAB #8

MULTIPLE REGRESSION IN EXCEL EXCEL LAB #8 MULTIPLE REGRESSION IN EXCEL EXCEL LAB #8 BUSN/ECON/FIN 130: Applied Statistics Department of Economics and Business Lake Forest College Lake Forest, IL 60045 Copyright, 2013 Overview This lab is written

More information

Introduction to SPSS for Windows

Introduction to SPSS for Windows Introduction to SPSS for Windows Alan Taylor, Department of Psychology Macquarie University 2002-2006 Macquarie University ii iii Contents 1. Introduction 1 2. Starting SPSS 1 3. What You See 1 4. Setting

More information

Regression. Notes. Page 1 25-JAN :21:57. Output Created Comments

Regression. Notes. Page 1 25-JAN :21:57. Output Created Comments /STATISTICS COEFF OUTS CI(95) R ANOVA /CRITERIA=PIN(.05) POUT(.10) /DEPENDENT Favorability /METHOD=ENTER zcontemp ZAnxious6 zallcontact. Regression Notes Output Created Comments Input Missing Value Handling

More information

Independent Variables

Independent Variables 1 Stepwise Multiple Regression Olivia Cohen Com 631, Spring 2017 Data: Film & TV Usage 2015 I. MODEL Independent Variables Demographics Item: Age Item: Income Dummied Item: Gender (Female) Digital Media

More information

DAY 52 BOX-AND-WHISKER

DAY 52 BOX-AND-WHISKER DAY 52 BOX-AND-WHISKER VOCABULARY The Median is the middle number of a set of data when the numbers are arranged in numerical order. The Range of a set of data is the difference between the highest and

More information

a. divided by the. 1) Always round!! a) Even if class width comes out to a, go up one.

a. divided by the. 1) Always round!! a) Even if class width comes out to a, go up one. Probability and Statistics Chapter 2 Notes I Section 2-1 A Steps to Constructing Frequency Distributions 1 Determine number of (may be given to you) a Should be between and classes 2 Find the Range a The

More information

Maths Revision Worksheet: Algebra I Week 1 Revision 5 Problems per night

Maths Revision Worksheet: Algebra I Week 1 Revision 5 Problems per night 2 nd Year Maths Revision Worksheet: Algebra I Maths Revision Worksheet: Algebra I Week 1 Revision 5 Problems per night 1. I know how to add and subtract positive and negative numbers. 2. I know how to

More information

Quadratic Functions Dr. Laura J. Pyzdrowski

Quadratic Functions Dr. Laura J. Pyzdrowski 1 Names: (8 communication points) About this Laboratory A quadratic function in the variable x is a polynomial where the highest power of x is 2. We will explore the domains, ranges, and graphs of quadratic

More information

Introduction to SAS. I. Understanding the basics In this section, we introduce a few basic but very helpful commands.

Introduction to SAS. I. Understanding the basics In this section, we introduce a few basic but very helpful commands. Center for Teaching, Research and Learning Research Support Group American University, Washington, D.C. Hurst Hall 203 rsg@american.edu (202) 885-3862 Introduction to SAS Workshop Objective This workshop

More information

Brief Guide on Using SPSS 10.0

Brief Guide on Using SPSS 10.0 Brief Guide on Using SPSS 10.0 (Use student data, 22 cases, studentp.dat in Dr. Chang s Data Directory Page) (Page address: http://www.cis.ysu.edu/~chang/stat/) I. Processing File and Data To open a new

More information

ANSWERS -- Prep for Psyc350 Laboratory Final Statistics Part Prep a

ANSWERS -- Prep for Psyc350 Laboratory Final Statistics Part Prep a ANSWERS -- Prep for Psyc350 Laboratory Final Statistics Part Prep a Put the following data into an spss data set: Be sure to include variable and value labels and missing value specifications for all variables

More information

Excel Primer CH141 Fall, 2017

Excel Primer CH141 Fall, 2017 Excel Primer CH141 Fall, 2017 To Start Excel : Click on the Excel icon found in the lower menu dock. Once Excel Workbook Gallery opens double click on Excel Workbook. A blank workbook page should appear

More information

Chapter 3 Analyzing Normal Quantitative Data

Chapter 3 Analyzing Normal Quantitative Data Chapter 3 Analyzing Normal Quantitative Data Introduction: In chapters 1 and 2, we focused on analyzing categorical data and exploring relationships between categorical data sets. We will now be doing

More information

Ex.1 constructing tables. a) find the joint relative frequency of males who have a bachelors degree.

Ex.1 constructing tables. a) find the joint relative frequency of males who have a bachelors degree. Two-way Frequency Tables two way frequency table- a table that divides responses into categories. Joint relative frequency- the number of times a specific response is given divided by the sample. Marginal

More information

Zero-Inflated Poisson Regression

Zero-Inflated Poisson Regression Chapter 329 Zero-Inflated Poisson Regression Introduction The zero-inflated Poisson (ZIP) regression is used for count data that exhibit overdispersion and excess zeros. The data distribution combines

More information

Abraham Clark High School ALGEBRA 2 SUMMER PACKET

Abraham Clark High School ALGEBRA 2 SUMMER PACKET Name: Abraham Clark High School ALGEBRA SUMMER PACKET INFORMATION/DIRECTIONS: All questions marked Practice must be complete and correct. You must return in September knowing how to do all the material

More information

Error-Bar Charts from Summary Data

Error-Bar Charts from Summary Data Chapter 156 Error-Bar Charts from Summary Data Introduction Error-Bar Charts graphically display tables of means (or medians) and variability. Following are examples of the types of charts produced by

More information

Algebra 2 Common Core Summer Skills Packet

Algebra 2 Common Core Summer Skills Packet Algebra 2 Common Core Summer Skills Packet Our Purpose: Completion of this packet over the summer before beginning Algebra 2 will be of great value to helping students successfully meet the academic challenges

More information

SPSS - Beginnings Data, Descriptive Statistics, Select cases, recode Structure SPSS has 3 different fields (windows) 1. Data window (double window). O

SPSS - Beginnings Data, Descriptive Statistics, Select cases, recode Structure SPSS has 3 different fields (windows) 1. Data window (double window). O SPSS - Beginnings Data, Descriptive Statistics, Select cases, recode Structure SPSS has 3 different fields (windows) 1. Data window (double window). One can see a) data; b) Variable information. 2. Output

More information

Four Types of Slope Positive Slope Negative Slope Zero Slope Undefined Slope Slope Dude will help us understand the 4 types of slope

Four Types of Slope Positive Slope Negative Slope Zero Slope Undefined Slope Slope Dude will help us understand the 4 types of slope Four Types of Slope Positive Slope Negative Slope Zero Slope Undefined Slope Slope Dude will help us understand the 4 types of slope https://www.youtube.com/watch?v=avs6c6_kvxm Direct Variation

More information

3-1 Writing Linear Equations

3-1 Writing Linear Equations 3-1 Writing Linear Equations Suppose you have a job working on a monthly salary of $2,000 plus commission at a car lot. Your commission is 5%. What would be your pay for selling the following in monthly

More information

[The following questions were adapted from Polygraph: Parabolas, Part 2]

[The following questions were adapted from   Polygraph: Parabolas, Part 2] Opening Exploration 1. Go to https://student.desmos.com and use the class code: to play Polygraph: Parabolas. A description of the game is given below. [The following questions were adapted from https://teacher.desmos.com/activitybuilder/custom/574f12421390db611564fa32#

More information

Set up of the data is similar to the Randomized Block Design situation. A. Chang 1. 1) Setting up the data sheet

Set up of the data is similar to the Randomized Block Design situation. A. Chang 1. 1) Setting up the data sheet Repeated Measure Analysis (Univariate Mixed Effect Model Approach) (Treatment as the Fixed Effect and the Subject as the Random Effect) (This univariate approach can be used for randomized block design

More information

The x-intercept can be found by setting y = 0 and solving for x: 16 3, 0

The x-intercept can be found by setting y = 0 and solving for x: 16 3, 0 y=-3/4x+4 and y=2 x I need to graph the functions so I can clearly describe the graphs Specifically mention any key points on the graphs, including intercepts, vertex, or start/end points. What is the

More information

Chapter 2. Polynomial and Rational Functions. 2.2 Quadratic Functions

Chapter 2. Polynomial and Rational Functions. 2.2 Quadratic Functions Chapter 2 Polynomial and Rational Functions 2.2 Quadratic Functions 1 /27 Chapter 2 Homework 2.2 p298 1, 5, 17, 31, 37, 41, 43, 45, 47, 49, 53, 55 2 /27 Chapter 2 Objectives Recognize characteristics of

More information

SUMMER PACKET Answer Key

SUMMER PACKET Answer Key BELLEVUE SCHOOL DISTRICT SUMMER PACKET Answer Key FOR STUDENTS GOlNG lnto: GEOMETRY Section A1.1.A 1. s = 27 s = 2r + 7 2. a) A. f(n) = b) The number of dollars Julie will get on day 12 is $2048. If you

More information

Scatterplot: The Bridge from Correlation to Regression

Scatterplot: The Bridge from Correlation to Regression Scatterplot: The Bridge from Correlation to Regression We have already seen how a histogram is a useful technique for graphing the distribution of one variable. Here is the histogram depicting the distribution

More information

Software Testing Prof. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur

Software Testing Prof. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Software Testing Prof. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 07 Special Value Testing Welcome to this session. So far we had looked

More information

Calculator Basics TI-83, TI-83 +, TI-84. Index Page

Calculator Basics TI-83, TI-83 +, TI-84. Index Page Calculator Basics TI-83, TI-83 +, TI-84 Index Page Getting Started Page 1 Graphing Page 2 Evaluating Functions page 4 Minimum and Maximum Values Page 5 Table of Values Page 6 Graphing Scatter Plots Page

More information

Quadratic Functions. Full Set of Notes. No Solutions

Quadratic Functions. Full Set of Notes. No Solutions Quadratic Functions Full Set of Notes No Solutions Graphing Quadratic Functions The graph of a quadratic function is called a parabola. Applications of Parabolas: http://www.doe.virginia.gov/div/winchester/jhhs/math/lessons/calc2004/appparab.html

More information

Applied Statistics and Econometrics Lecture 6

Applied Statistics and Econometrics Lecture 6 Applied Statistics and Econometrics Lecture 6 Giuseppe Ragusa Luiss University gragusa@luiss.it http://gragusa.org/ March 6, 2017 Luiss University Empirical application. Data Italian Labour Force Survey,

More information

Introduction to the workbook and spreadsheet

Introduction to the workbook and spreadsheet Excel Tutorial To make the most of this tutorial I suggest you follow through it while sitting in front of a computer with Microsoft Excel running. This will allow you to try things out as you follow along.

More information

Chapter 3. Finding Sums. This chapter covers procedures for obtaining many of the summed values that are

Chapter 3. Finding Sums. This chapter covers procedures for obtaining many of the summed values that are 1 Chapter 3 Finding Sums This chapter covers procedures for obtaining many of the summed values that are commonly used in statistical calculations. These procedures will produce values that are identical

More information

Dr. Barbara Morgan Quantitative Methods

Dr. Barbara Morgan Quantitative Methods Dr. Barbara Morgan Quantitative Methods 195.650 Basic Stata This is a brief guide to using the most basic operations in Stata. Stata also has an on-line tutorial. At the initial prompt type tutorial. In

More information

Station 1. Find the slope. = m BC. m AB. = m AC. y = 3 4 x Of the line that passes through ( 3, 1) and ( 1, 5)

Station 1. Find the slope. = m BC. m AB. = m AC. y = 3 4 x Of the line that passes through ( 3, 1) and ( 1, 5) Find the slope. Station 1 1. Of the line that passes through ( 3, 1) and ( 1, 5) 2. Of the line that passes through (6, 4) and (10, -4) 3. y = 3 4 x 6 4. 5x 8y = 12 5. 3x 6y + 3(x 8) = 10 6. Find the slope

More information

Algebra I Notes Linear Equations and Inequalities in Two Variables Unit 04c

Algebra I Notes Linear Equations and Inequalities in Two Variables Unit 04c Big Idea: Describe the similarities and differences between equations and inequalities including solutions and graphs. Skill: graph linear equations and find possible solutions to those equations using

More information

Quadratic Functions. Chapter Properties of Quadratic Functions... p Investigating Quadratic Functions... p. 6 in Vertex Form: Part 1

Quadratic Functions. Chapter Properties of Quadratic Functions... p Investigating Quadratic Functions... p. 6 in Vertex Form: Part 1 Chapter 3 Quadratic Functions 3. Properties of Quadratic Functions........... p. 1 3.1 Investigating Quadratic Functions........... p. 6 in Vertex Form: Part 1 3.1 Investigating Quadratic Functions...........

More information

Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics

Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics Math 2 Coordinate Geometry Part 3 Inequalities & Quadratics 1 DISTANCE BETWEEN TWO POINTS - REVIEW To find the distance between two points, use the Pythagorean theorem. The difference between x 1 and x

More information

ST Lab 1 - The basics of SAS

ST Lab 1 - The basics of SAS ST 512 - Lab 1 - The basics of SAS What is SAS? SAS is a programming language based in C. For the most part SAS works in procedures called proc s. For instance, to do a correlation analysis there is proc

More information