EXST 7015 Fall 2014 Lab 08: Polynomial Regression

Size: px
Start display at page:

Download "EXST 7015 Fall 2014 Lab 08: Polynomial Regression"

Transcription

1 EXST 7015 Fall 2014 Lab 08: Polynomial Regression OBJECTIVES Polynomial regression is a statistical modeling technique to fit the curvilinear data that either shows a maximum or a minimum in the curve, or that could show a max or min if you extrapolated the curve beyond your data. The ability to determine a minimum or maximum point based on the experimental data is a useful application of polynomials. The simple polynomial regressions are multiple regression that use power terms of the independent variable (X i ) with the form of Y=β 0 + β 1 X i + β 2 X i β k X i k + e i. Notice the subtle difference from multiple linear regression model, here the numbers 2, 3,,k represent the powers of the same variable. For data that are shaped like a parabola, you probably won't need more than a quadratic model. If the curve trends up again at one end, you'll need a cubic model. Curves with multiple kinks need even higher-order terms. It is obvious that multi collinearity is unavoidable issue in Polynomial regression because the model terms are related to each other. Use of sequentially adjusted type I SS is the solution as presented as the following. Several hypotheses are tested during polynomial regression which is fitted successively starting with the liner term (a first order polynomial). The first null hypothesis, then, is that a quadratic equation does not fit the data significantly better than a linear equation; the next null hypothesis may be that a cubic equation does not fit the data significantly better than a quadratic equation, and so on. Therefore, the sequentially adjusted type I SS should be used when one attempts to test whether a polynomial model is as good as the one with a higher order term. If a particular higher order term is significant, all terms of lower order should be assumed significant and retained in the regression model. There is also a null hypothesis for each equation that says that it does not fit the data significantly better than a horizontal line; in other words, that there is no relationship between the X and Y variables. It should be noticed that the fully adjusted regression coefficients are still used to fit the polynomial regression, which usually leads to no practical explanation of regression coefficients. Further, extrapolation outside the range of the fitted experimental data is untenable, and should not be attempted. This is because the shape of the regression function, as predicted by the model, may not at all accurately represent reality outside the range of the experimental data. The assumptions for performing polynomial regression are similar to those of ordinary regression. The assumptions of normality and homogeneity can be evaluated by customary diagnostic technique (Shapiro-Wilk, residual plots). Residual and influence statistics still work with these regression models.

2 LABORATORY INSTRUCTIONS Housekeeping Statements dm 'log; clear; output; clear'; options nodate nocenter pageno = 1 ls=78 ps=53; title1 'EXST7015 lab 8, Name, Section#'; ods rtf file = 'c:/temp/lab8.rtf'; ods html file = 'c:/temp/lab8.html'; Data Set: The data set that we use contains the per capita state and local public expenditures and associated state demographic and economic characteristics for 48 states during the year of Detailed information can be found at The variables in the dataset are: EX: Per capita state and local public expenditures ($) ECAB: Economic ability index, in which income, retail sales, and the value of output (manufactures, mineral, and agricultural) per capita are equally weighted. MET: Percentage of population living in standard metropolitan areas GROW: Percent change in population, YOUNG: Percent of population aged 5-19 years OLD: Percent of population over 65 years of age WEST: Western state (1) or not (0) In this lab, we will use MET, Percentage of population living in standard metropolitan area, as the independent variable and the expenditure (EX) as the dependent variable. Other variables are dropped from the dataset. data expenditure; input ex ecab met grow young old west state$; drop ecab grow young old west; cards; ME NH VT MA RI CT NY NJ PA DE MD VA MI OH IN IL WI WV KY

3 TE NC SC GA FL AL MS MN IA MO ND SD NB KS LA AR OK TX NM AZ MT ID WY CO UT WA OR NV CA ; Proc print data=expenditure; proc gplot data=expenditure; plot ex*met; title3 "Plot of raw data"; symbol1 c=red v=dot; Proc gplot: It can produce high-resolution graphic plot, and improve the appearance of the plot by defining plot symbols. C=red specifies the color of the symbol. V=dot would place a dot for each data point. Take time to exam the plot, can you spot a maximum or minimum point? Fitting a Polynomial Regression Model with a cubic term of MET: proc glm data=expenditure; title2 "Polynomial regression model with cubic term"; model ex = met met*met met*met*met / ss1 ss2; output out=outdata1 p=yhat1 r=resid1; proc plot data=outdata1;

4 title3 'residual plot'; plot resid1*yhat1; proc univariate data=outdata1 normal; title3 'univariate procedure on residuals'; var resid1; Notice that PROC GLM is used for polynomial regression rather than PROC REG. While they are essentially the same for the analysis, there is one difference. When using PROC GLM, one can enter the higher order terms directly at the model statement, does not need to create new variables in the data step for each of them, which on the contrary has to be done before PROC REG works properly. Carefully exam the F-tests of parameter estimates. Keep in mind that the sequentially adjusted type I sums of squares are used for polynomial regression. Fitting a Polynomial Regression Model with a Quadratic term of MET: proc glm data=expenditure; title2 "Polynomial regression model with cubic term"; model ex = met met*met / ss1 ; output out=outdata2 p=yhat2 r=resid2; proc plot data=outdata2; title2 'residual plot'; plot resid2*yhat2; proc univariate data=outdata2 normal; title3 'univariate procedure on residuals'; var resid2; ods rtf close; quit;

5 LAB ASSIGNMENT 1. Describe the trend in the scatter plot of the raw data: what is the relationship between variables EX and MET? 2. Fit a polynomial regression model with cubic term of MET. When you decide whether the cubic term and quadratic term should be included in the model, do you use the Type I SS or Type II SS? Why? 3. Is the cubic effect significant? How about quadratic and linear effects? 4. Based on your answers to the above questions and the SAS output, which polynomial model do you consider the best? Write down the polynomial model with the estimated coefficient values. Do you keep the linear term in the model? Why? 5. Now assume that there is a state where 100 percent of its residents live in standard metropolitan areas. Use the best model to predict the per capita public expenditure of this state. Is there any problem in doing so?

Your Galactic Address

Your Galactic Address How Big is the Universe? Usually you think of your address as only three or four lines long: your name, street, city, and state. But to address a letter to a friend in a distant galaxy, you have to specify

More information

Lecture 26 Section 8.4. Mon, Oct 13, 2008

Lecture 26 Section 8.4. Mon, Oct 13, 2008 Lecture 26 Section 8.4 Hampden-Sydney College Mon, Oct 13, 2008 Outline 1 2 3 4 Exercise 8.12, page 528. Suppose that 60% of all students at a large university access course information using the Internet.

More information

Analyzing Severe Weather Data

Analyzing Severe Weather Data Chapter Weather Patterns and Severe Storms Investigation A Analyzing Severe Weather Data Introduction Tornadoes are violent windstorms associated with severe thunderstorms. Meteorologists carefully monitor

More information

Use your text to define the following term. Use the terms to label the figure below. Define the following term.

Use your text to define the following term. Use the terms to label the figure below. Define the following term. Mapping Our World Section. and Longitude Skim Section of your text. Write three questions that come to mind from reading the headings and the illustration captions.. Responses may include questions about

More information

Nursing Facilities' Life Safety Standard Survey Results Quarterly Reference Tables

Nursing Facilities' Life Safety Standard Survey Results Quarterly Reference Tables Nursing Facilities' Life Safety Standard Survey Results Quarterly Reference Tables Table of Contents Table 1: Summary of Life Safety Survey Results by State Table 2: Ten Most Frequently Cited Life Safety

More information

Parametric Test. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 1984.

Parametric Test. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 1984. Multiple Linear Regression Spatial Application I: State Homicide Rates Equations taken from Zar, 984. y ˆ = a + b x + b 2 x 2K + b n x n where n is the number of variables Example: In an earlier bivariate

More information

Regression Diagnostics

Regression Diagnostics Diag 1 / 78 Regression Diagnostics Paul E. Johnson 1 2 1 Department of Political Science 2 Center for Research Methods and Data Analysis, University of Kansas 2015 Diag 2 / 78 Outline 1 Introduction 2

More information

Sample Statistics 5021 First Midterm Examination with solutions

Sample Statistics 5021 First Midterm Examination with solutions THE UNIVERSITY OF MINNESOTA Statistics 5021 February 12, 2003 Sample First Midterm Examination (with solutions) 1. Baseball pitcher Nolan Ryan played in 20 games or more in the 24 seasons from 1968 through

More information

Chapter 8 (More on Assumptions for the Simple Linear Regression)

Chapter 8 (More on Assumptions for the Simple Linear Regression) EXST3201 Chapter 8b Geaghan Fall 2005: Page 1 Chapter 8 (More on Assumptions for the Simple Linear Regression) Your textbook considers the following assumptions: Linearity This is not something I usually

More information

EXST 7015 Fall 2014 Lab 11: Randomized Block Design and Nested Design

EXST 7015 Fall 2014 Lab 11: Randomized Block Design and Nested Design EXST 7015 Fall 2014 Lab 11: Randomized Block Design and Nested Design OBJECTIVES: The objective of an experimental design is to provide the maximum amount of reliable information at the minimum cost. In

More information

Final Exam. 1. Definitions: Briefly Define each of the following terms as they relate to the material covered in class.

Final Exam. 1. Definitions: Briefly Define each of the following terms as they relate to the material covered in class. Name Answer Key Economics 170 Spring 2003 Honor pledge: I have neither given nor received aid on this exam including the preparation of my one page formula list and the preparation of the Stata assignment

More information

Module 19: Simple Linear Regression

Module 19: Simple Linear Regression Module 19: Simple Linear Regression This module focuses on simple linear regression and thus begins the process of exploring one of the more used and powerful statistical tools. Reviewed 11 May 05 /MODULE

More information

Drought Monitoring Capability of the Oklahoma Mesonet. Gary McManus Oklahoma Climatological Survey Oklahoma Mesonet

Drought Monitoring Capability of the Oklahoma Mesonet. Gary McManus Oklahoma Climatological Survey Oklahoma Mesonet Drought Monitoring Capability of the Oklahoma Mesonet Gary McManus Oklahoma Climatological Survey Oklahoma Mesonet Mesonet History Commissioned in 1994 Atmospheric measurements with 5-minute resolution,

More information

Smart Magnets for Smart Product Design: Advanced Topics

Smart Magnets for Smart Product Design: Advanced Topics Smart Magnets for Smart Product Design: Advanced Topics Today s Presenter Jason Morgan Vice President Engineering Correlated Magnetics Research 6 Agenda Brief overview of Correlated Magnetics Research

More information

Multiway Analysis of Bridge Structural Types in the National Bridge Inventory (NBI) A Tensor Decomposition Approach

Multiway Analysis of Bridge Structural Types in the National Bridge Inventory (NBI) A Tensor Decomposition Approach Multiway Analysis of Bridge Structural Types in the National Bridge Inventory (NBI) A Tensor Decomposition Approach By Offei A. Adarkwa Nii Attoh-Okine (Ph.D) (IEEE Big Data Conference -10/27/2014) 1 Presentation

More information

Appendix 5 Summary of State Trademark Registration Provisions (as of July 2016)

Appendix 5 Summary of State Trademark Registration Provisions (as of July 2016) Appendix 5 Summary of State Trademark Registration Provisions (as of July 2016) App. 5-1 Registration Renewal Assignments Dates Term # of of 1st # of Use # of Form Serv. Key & State (Years) Fee Spec. Use

More information

Evolution Strategies for Optimizing Rectangular Cartograms

Evolution Strategies for Optimizing Rectangular Cartograms Evolution Strategies for Optimizing Rectangular Cartograms Kevin Buchin 1, Bettina Speckmann 1, and Sander Verdonschot 2 1 TU Eindhoven, 2 Carleton University September 20, 2012 Sander Verdonschot (Carleton

More information

What Lies Beneath: A Sub- National Look at Okun s Law for the United States.

What Lies Beneath: A Sub- National Look at Okun s Law for the United States. What Lies Beneath: A Sub- National Look at Okun s Law for the United States. Nathalie Gonzalez Prieto International Monetary Fund Global Labor Markets Workshop Paris, September 1-2, 2016 What the paper

More information

SAMPLE AUDIT FORMAT. Pre Audit Notification Letter Draft. Dear Registrant:

SAMPLE AUDIT FORMAT. Pre Audit Notification Letter Draft. Dear Registrant: Pre Audit Notification Letter Draft Dear Registrant: The Pennsylvania Department of Transportation (PennDOT) is a member of the Federally Mandated International Registration Plan (IRP). As part of this

More information

C Further Concepts in Statistics

C Further Concepts in Statistics Appendix C.1 Representing Data and Linear Modeling C1 C Further Concepts in Statistics C.1 Representing Data and Linear Modeling Use stem-and-leaf plots to organize and compare sets of data. Use histograms

More information

Class business PS is due Wed. Lecture 20 (QPM 2016) Multivariate Regression November 14, / 44

Class business PS is due Wed. Lecture 20 (QPM 2016) Multivariate Regression November 14, / 44 Multivariate Regression Prof. Jacob M. Montgomery Quantitative Political Methodology (L32 363) November 14, 2016 Lecture 20 (QPM 2016) Multivariate Regression November 14, 2016 1 / 44 Class business PS

More information

Annual Performance Report: State Assessment Data

Annual Performance Report: State Assessment Data Annual Performance Report: 2005-2006 State Assessment Data Summary Prepared by: Martha Thurlow, Jason Altman, Damien Cormier, and Ross Moen National Center on Educational Outcomes (NCEO) April, 2008 The

More information

REGRESSION ANALYSIS BY EXAMPLE

REGRESSION ANALYSIS BY EXAMPLE REGRESSION ANALYSIS BY EXAMPLE Fifth Edition Samprit Chatterjee Ali S. Hadi A JOHN WILEY & SONS, INC., PUBLICATION CHAPTER 5 QUALITATIVE VARIABLES AS PREDICTORS 5.1 INTRODUCTION Qualitative or categorical

More information

Swine Enteric Coronavirus Disease (SECD) Situation Report June 30, 2016

Swine Enteric Coronavirus Disease (SECD) Situation Report June 30, 2016 Animal and Plant Health Inspection Service Veterinary Services Swine Enteric Coronavirus Disease (SECD) Situation Report June 30, 2016 Information current as of 12:00 pm MDT, 06/29/2016 This report provides

More information

2006 Supplemental Tax Information for JennisonDryden and Strategic Partners Funds

2006 Supplemental Tax Information for JennisonDryden and Strategic Partners Funds 2006 Supplemental Information for JennisonDryden and Strategic Partners s We have compiled the following information to help you prepare your 2006 federal and state tax returns: Percentage of income from

More information

Statistical Mechanics of Money, Income, and Wealth

Statistical Mechanics of Money, Income, and Wealth Statistical Mechanics of Money, Income, and Wealth Victor M. Yakovenko Adrian A. Dragulescu and A. Christian Silva Department of Physics, University of Maryland, College Park, USA http://www2.physics.umd.edu/~yakovenk/econophysics.html

More information

Empirical Application of Panel Data Regression

Empirical Application of Panel Data Regression Empirical Application of Panel Data Regression 1. We use Fatality data, and we are interested in whether rising beer tax rate can help lower traffic death. So the dependent variable is traffic death, while

More information

Forecasting the 2012 Presidential Election from History and the Polls

Forecasting the 2012 Presidential Election from History and the Polls Forecasting the 2012 Presidential Election from History and the Polls Drew Linzer Assistant Professor Emory University Department of Political Science Visiting Assistant Professor, 2012-13 Stanford University

More information

Summary of Natural Hazard Statistics for 2008 in the United States

Summary of Natural Hazard Statistics for 2008 in the United States Summary of Natural Hazard Statistics for 2008 in the United States This National Weather Service (NWS) report summarizes fatalities, injuries and damages caused by severe weather in 2008. The NWS Office

More information

EXST7015: Estimating tree weights from other morphometric variables Raw data print

EXST7015: Estimating tree weights from other morphometric variables Raw data print Simple Linear Regression SAS example Page 1 1 ********************************************; 2 *** Data from Freund & Wilson (1993) ***; 3 *** TABLE 8.24 : ESTIMATING TREE WEIGHTS ***; 4 ********************************************;

More information

Data Visualization (DSC 530/CIS )

Data Visualization (DSC 530/CIS ) Data Visualization (DSC 530/CIS 602-01) Tables Dr. David Koop Visualization of Tables Items and attributes For now, attributes are not known to be positions Keys and values - key is an independent attribute

More information

1) Answer the following questions as true (T) or false (F) by circling the appropriate letter.

1) Answer the following questions as true (T) or false (F) by circling the appropriate letter. 1) Answer the following questions as true (T) or false (F) by circling the appropriate letter. T F T F T F a) Variance estimates should always be positive, but covariance estimates can be either positive

More information

Swine Enteric Coronavirus Disease (SECD) Situation Report Sept 17, 2015

Swine Enteric Coronavirus Disease (SECD) Situation Report Sept 17, 2015 Animal and Plant Health Inspection Service Veterinary Services Swine Enteric Coronavirus Disease (SECD) Situation Report Sept 17, 2015 Information current as of 12:00 pm MDT, 09/16/2015 This report provides

More information

Test of Convergence in Agricultural Factor Productivity: A Semiparametric Approach

Test of Convergence in Agricultural Factor Productivity: A Semiparametric Approach Test of Convergence in Agricultural Factor Productivity: A Semiparametric Approach Krishna P. Paudel, Louisiana State University and LSU Agricultural Center Mahesh Pandit, Louisiana State University and

More information

Cluster Analysis. Part of the Michigan Prosperity Initiative

Cluster Analysis. Part of the Michigan Prosperity Initiative Cluster Analysis Part of the Michigan Prosperity Initiative 6/17/2010 Land Policy Institute Contributors Dr. Soji Adelaja, Director Jason Ball, Visiting Academic Specialist Jonathon Baird, Research Assistant

More information

Meteorology 110. Lab 1. Geography and Map Skills

Meteorology 110. Lab 1. Geography and Map Skills Meteorology 110 Name Lab 1 Geography and Map Skills 1. Geography Weather involves maps. There s no getting around it. You must know where places are so when they are mentioned in the course it won t be

More information

EXST Regression Techniques Page 1. We can also test the hypothesis H :" œ 0 versus H :"

EXST Regression Techniques Page 1. We can also test the hypothesis H : œ 0 versus H : EXST704 - Regression Techniques Page 1 Using F tests instead of t-tests We can also test the hypothesis H :" œ 0 versus H :" Á 0 with an F test.! " " " F œ MSRegression MSError This test is mathematically

More information

Kari Lock. Department of Statistics, Harvard University Joint Work with Andrew Gelman (Columbia University)

Kari Lock. Department of Statistics, Harvard University Joint Work with Andrew Gelman (Columbia University) Bayesian Combinaion of Sae Polls and Elecion Forecass Kari Lock Deparmen of Saisics, Harvard Universiy Join Work wih Andrew Gelman (Columbia Universiy Harvard Insiue for Quaniaive Social Science Feb 4

More information

5.3 Three-Stage Nested Design Example

5.3 Three-Stage Nested Design Example 5.3 Three-Stage Nested Design Example A researcher designs an experiment to study the of a metal alloy. A three-stage nested design was conducted that included Two alloy chemistry compositions. Three ovens

More information

The veto as electoral stunt

The veto as electoral stunt The veto as eectora stunt EITM and a test with comparative data Eric ITAM, Mexico City Apr. 2, 203 eitm@mpsa Motivation A Form: see EITM in action forma mode 2 comparative statics 3 fasifiabe impications

More information

Further Concepts in Statistics

Further Concepts in Statistics Appendix D Further Concepts in Statistics D1 Appendix D Further Concepts in Statistics Stem-and-Leaf Plots Histograms and Frequency Distributions Line Graphs Choosing an Appropriate Graph Scatter Plots

More information

Swine Enteric Coronavirus Disease (SECD) Situation Report Mar 5, 2015

Swine Enteric Coronavirus Disease (SECD) Situation Report Mar 5, 2015 Animal and Plant Health Inspection Service Veterinary Services Swine Enteric Coronavirus Disease (SECD) Situation Report Mar 5, 2015 Information current as of 12:00 pm MDT, 03/04/2015 This report provides

More information

AIR FORCE RESCUE COORDINATION CENTER

AIR FORCE RESCUE COORDINATION CENTER AIR FORCE RESCUE COORDINATION CENTER 2006 ANNUAL REPORT 1 TABLE OF CONTENTS AFRCC CHARTER & MISSION STATEMENT 3 AFRCC ORGANIZATION 4 TABLE 1 10 YEAR LOOKBACK 5 TABLE 2 ACTIVITY BY MISSION TYPE 6 TABLE

More information

Week 3 Linear Regression I

Week 3 Linear Regression I Week 3 Linear Regression I POL 200B, Spring 2014 Linear regression is the most commonly used statistical technique. A linear regression captures the relationship between two or more phenomena with a straight

More information

Further Concepts in Statistics

Further Concepts in Statistics Appendix C Further Concepts in Statistics C1 Appendix C Further Concepts in Statistics Stem-and-Leaf Plots Histograms and Frequency Distributions Line Graphs Choosing an Appropriate Graph Scatter Plots

More information

Combinatorics. Problem: How to count without counting.

Combinatorics. Problem: How to count without counting. Combinatorics Problem: How to count without counting. I How do you figure out how many things there are with a certain property without actually enumerating all of them. Sometimes this requires a lot of

More information

Data Visualization (CIS 468)

Data Visualization (CIS 468) Data Visualization (CIS 468) Tables & Maps Dr. David Koop Discriminability What is problematic here? File vtkdatasetreader PythonSource vtkimageclip vtkimagedatageometryfilter vtkimageresample vtkimagereslice

More information

Discontinuation of Support for Field Chemistry Measurements in the National Atmospheric Deposition Program National Trends Network (NADP/NTN)

Discontinuation of Support for Field Chemistry Measurements in the National Atmospheric Deposition Program National Trends Network (NADP/NTN) Discontinuation of Support for Field Chemistry Measurements in the National Atmospheric Deposition Program National Trends Network (NADP/NTN) Christopher Lehmann, NADP Program Office, Illinois State Water

More information

AFRCC AIR FORCE RESCUE COORDINATION CENTER

AFRCC AIR FORCE RESCUE COORDINATION CENTER AFRCC AIR FORCE RESCUE COORDINATION CENTER 2003 ANNUAL REPORT AFRCC ANNUAL REPORT TABLE OF CONTENTS AFRCC Mission Statement and Charter... 3 Organizational Chart... 4 Commander's Comments... 5 2003 AFRCC

More information

Time-Series Trends of Mercury Deposition Network Data

Time-Series Trends of Mercury Deposition Network Data Time-Series Trends of Mercury Deposition Network Data Peter Weiss 1, David Gay 2, Mark Brigham 3, Matthew Parsons 4, Arnout Ter Schure 5 1 University of California, Santa Cruz, 2 National Atmospheric Deposition

More information

Estimating Dynamic Games of Electoral Competition to Evaluate Term Limits in U.S. Gubernatorial Elections: Online Appendix

Estimating Dynamic Games of Electoral Competition to Evaluate Term Limits in U.S. Gubernatorial Elections: Online Appendix Estimating Dynamic Games of Electoral Competition to Evaluate Term Limits in U.S. Gubernatorial Elections: Online ppendix Holger Sieg University of Pennsylvania and NBER Chamna Yoon Baruch College I. States

More information

Regression Analysis. BUS 735: Business Decision Making and Research. Learn how to detect relationships between ordinal and categorical variables.

Regression Analysis. BUS 735: Business Decision Making and Research. Learn how to detect relationships between ordinal and categorical variables. Regression Analysis BUS 735: Business Decision Making and Research 1 Goals of this section Specific goals Learn how to detect relationships between ordinal and categorical variables. Learn how to estimate

More information

Some concepts are so simple

Some concepts are so simple Density: How Concentrated is Our Population? Morton J. Marcus Director Emeritus, Indiana Business Research Center, Kelley School of Business, Indiana University Some concepts are so simple to understand.

More information

Lecture notes on Regression & SAS example demonstration

Lecture notes on Regression & SAS example demonstration Regression & Correlation (p. 215) When two variables are measured on a single experimental unit, the resulting data are called bivariate data. You can describe each variable individually, and you can also

More information

Introduction to Mathematical Statistics and Its Applications Richard J. Larsen Morris L. Marx Fifth Edition

Introduction to Mathematical Statistics and Its Applications Richard J. Larsen Morris L. Marx Fifth Edition Introduction to Mathematical Statistics and Its Applications Richard J. Larsen Morris L. Marx Fifth Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies

More information

This is a Randomized Block Design (RBD) with a single factor treatment arrangement (2 levels) which are fixed.

This is a Randomized Block Design (RBD) with a single factor treatment arrangement (2 levels) which are fixed. EXST3201 Chapter 13c Geaghan Fall 2005: Page 1 Linear Models Y ij = µ + βi + τ j + βτij + εijk This is a Randomized Block Design (RBD) with a single factor treatment arrangement (2 levels) which are fixed.

More information

Effects of Various Uncertainty Sources on Automatic Generation Control Systems

Effects of Various Uncertainty Sources on Automatic Generation Control Systems Effects of Various Uncertainty Sources on Automatic Generation Control Systems D. Apostolopoulou, Y. C. Chen, J. Zhang, A. D. Domínguez-García, and P. W. Sauer University of Illinois at Urbana-Champaign

More information

Lecture 11: Simple Linear Regression

Lecture 11: Simple Linear Regression Lecture 11: Simple Linear Regression Readings: Sections 3.1-3.3, 11.1-11.3 Apr 17, 2009 In linear regression, we examine the association between two quantitative variables. Number of beers that you drink

More information

Ecn Analysis of Economic Data University of California - Davis February 23, 2010 Instructor: John Parman. Midterm 2. Name: ID Number: Section:

Ecn Analysis of Economic Data University of California - Davis February 23, 2010 Instructor: John Parman. Midterm 2. Name: ID Number: Section: Ecn 102 - Analysis of Economic Data University of California - Davis February 23, 2010 Instructor: John Parman Midterm 2 You have until 10:20am to complete this exam. Please remember to put your name,

More information

Chapter 11 : State SAT scores for 1982 Data Listing

Chapter 11 : State SAT scores for 1982 Data Listing EXST3201 Chapter 12a Geaghan Fall 2005: Page 1 Chapter 12 : Variable selection An example: State SAT scores In 1982 there was concern for scores of the Scholastic Aptitude Test (SAT) scores that varied

More information

Odor attraction CRD Page 1

Odor attraction CRD Page 1 Odor attraction CRD Page 1 dm'log;clear;output;clear'; options ps=512 ls=99 nocenter nodate nonumber nolabel FORMCHAR=" ---- + ---+= -/\*"; ODS LISTING; *** Table 23.2 ********************************************;

More information

Draft Report. Prepared for: Regional Air Quality Council 1445 Market Street, Suite 260 Denver, Colorado Prepared by:

Draft Report. Prepared for: Regional Air Quality Council 1445 Market Street, Suite 260 Denver, Colorado Prepared by: Draft Report Evaluation of Preliminary MM5 Meteorological Model Simulation for the June-July 2006 Denver Ozone SIP Modeling Period Focused on Colorado Prepared for: Regional Air Quality Council 1445 Market

More information

a = 4 levels of treatment A = Poison b = 3 levels of treatment B = Pretreatment n = 4 replicates for each treatment combination

a = 4 levels of treatment A = Poison b = 3 levels of treatment B = Pretreatment n = 4 replicates for each treatment combination In Box, Hunter, and Hunter Statistics for Experimenters is a two factor example of dying times for animals, let's say cockroaches, using 4 poisons and pretreatments with n=4 values for each combination

More information

Failure Time of System due to the Hot Electron Effect

Failure Time of System due to the Hot Electron Effect of System due to the Hot Electron Effect 1 * exresist; 2 option ls=120 ps=75 nocenter nodate; 3 title of System due to the Hot Electron Effect ; 4 * TIME = failure time (hours) of a system due to drift

More information

Teachers Curriculum Institute Map Skills Toolkit 411

Teachers Curriculum Institute Map Skills Toolkit 411 Map kills Toolkit To the Teacher tudents encounter maps every day inside and outside their classes in books and on handheld devices, computers, or television screens. Whether they re navigating cities

More information

The program for the following sections follows.

The program for the following sections follows. Homework 6 nswer sheet Page 31 The program for the following sections follows. dm'log;clear;output;clear'; *************************************************************; *** EXST734 Homework Example 1

More information

AC/RC Regional Councils of Colonels & Partnerships

AC/RC Regional Councils of Colonels & Partnerships AC/RC Regional Councils of Colonels & Partnerships WESTERN REGION AC: SJA, I Corps RC: Cdr, 6 th LOD GREAT LAKES REGION AC: SJA, 101 st ABN Div (AA)) RC: Cdr, 9 th LOD NORTHEAST REGION AC: SJA, 10 th Mtn

More information

BE640 Intermediate Biostatistics 2. Regression and Correlation. Simple Linear Regression Software: SAS. Emergency Calls to the New York Auto Club

BE640 Intermediate Biostatistics 2. Regression and Correlation. Simple Linear Regression Software: SAS. Emergency Calls to the New York Auto Club BE640 Intermediate Biostatistics 2. Regression and Correlation Simple Linear Regression Software: SAS Emergency Calls to the New York Auto Club Source: Chatterjee, S; Handcock MS and Simonoff JS A Casebook

More information

Analysis of the USDA Annual Report (2015) of Animal Usage by Research Facility. July 4th, 2017

Analysis of the USDA Annual Report (2015) of Animal Usage by Research Facility. July 4th, 2017 Analysis of the USDA Annual Report (2015) of Animal Usage by Research Facility July 4th, 2017 Author's information: Jorge Sigler, Catherine Perry, Amanda Gray, James Videle For inquiries contact James

More information

Midterm 2 - Solutions

Midterm 2 - Solutions Ecn 102 - Analysis of Economic Data University of California - Davis February 23, 2010 Instructor: John Parman Midterm 2 - Solutions You have until 10:20am to complete this exam. Please remember to put

More information

dm'log;clear;output;clear'; options ps=512 ls=99 nocenter nodate nonumber nolabel FORMCHAR=" = -/\<>*"; ODS LISTING;

dm'log;clear;output;clear'; options ps=512 ls=99 nocenter nodate nonumber nolabel FORMCHAR= = -/\<>*; ODS LISTING; dm'log;clear;output;clear'; options ps=512 ls=99 nocenter nodate nonumber nolabel FORMCHAR=" ---- + ---+= -/\*"; ODS LISTING; *** Table 23.2 ********************************************; *** Moore, David

More information

$3.6 Billion GNMA Servicing Offering

$3.6 Billion GNMA Servicing Offering $3.6 Billion GNMA Servicing Offering Offering R2-0818 Bid Date: 8/14/2018 Bids are due by 5:00 PM EST Mortgage Industry Advisory Corporation 521 Fifth Avenue 9th Floor New York, NY 10175 TEL: (212) 233-1250

More information

Regression Analysis. BUS 735: Business Decision Making and Research

Regression Analysis. BUS 735: Business Decision Making and Research Regression Analysis BUS 735: Business Decision Making and Research 1 Goals and Agenda Goals of this section Specific goals Learn how to detect relationships between ordinal and categorical variables. Learn

More information

Resources. Amusement Park Physics With a NASA Twist EG GRC

Resources. Amusement Park Physics With a NASA Twist EG GRC Resources 141 EG-2003-03-010-GRC 142 EG-2003-03-01o-GRC Vocabulary acceleration-the rate of change of velocity displacement-change in position of an object force-a push or a pull exerted on some object

More information

7.3 Ridge Analysis of the Response Surface

7.3 Ridge Analysis of the Response Surface 7.3 Ridge Analysis of the Response Surface When analyzing a fitted response surface, the researcher may find that the stationary point is outside of the experimental design region, but the researcher wants

More information

Exst7037 Multivariate Analysis Cancorr interpretation Page 1

Exst7037 Multivariate Analysis Cancorr interpretation Page 1 Exst7037 Multivariate Analysis Cancorr interpretation Page 1 1 *** C03S3D1 ***; 2 ****************************************************************************; 3 *** The data set insulin shows data from

More information

COMPREHENSIVE WRITTEN EXAMINATION, PAPER III FRIDAY AUGUST 26, 2005, 9:00 A.M. 1:00 P.M. STATISTICS 174 QUESTION

COMPREHENSIVE WRITTEN EXAMINATION, PAPER III FRIDAY AUGUST 26, 2005, 9:00 A.M. 1:00 P.M. STATISTICS 174 QUESTION COMPREHENSIVE WRITTEN EXAMINATION, PAPER III FRIDAY AUGUST 26, 2005, 9:00 A.M. 1:00 P.M. STATISTICS 174 QUESTION Answer all parts. Closed book, calculators allowed. It is important to show all working,

More information

PLS205 Lab 6 February 13, Laboratory Topic 9

PLS205 Lab 6 February 13, Laboratory Topic 9 PLS205 Lab 6 February 13, 2014 Laboratory Topic 9 A word about factorials Specifying interactions among factorial effects in SAS The relationship between factors and treatment Interpreting results of an

More information

Using Local Information to Improve Short-run Corn Cash Price Forecasts by. Xiaojie Xu and Walter N. Thurman

Using Local Information to Improve Short-run Corn Cash Price Forecasts by. Xiaojie Xu and Walter N. Thurman Using Local Information to Improve Short-run Corn Cash Price Forecasts by Xiaojie Xu and Walter N. Thurman Suggested citation format: Xu, X, and W. N. Thurman. 2015. Using Local Information to Improve

More information

Answer to exercise 'height vs. age' (Juul)

Answer to exercise 'height vs. age' (Juul) Answer to exercise 'height vs. age' (Juul) Question 1 Fitting a straight line to height for males in the age range 5-20 and making the corresponding illustration is performed by writing: proc reg data=juul;

More information

Lecture 3. Experiments with a Single Factor: ANOVA Montgomery 3-1 through 3-3

Lecture 3. Experiments with a Single Factor: ANOVA Montgomery 3-1 through 3-3 Lecture 3. Experiments with a Single Factor: ANOVA Montgomery 3-1 through 3-3 Page 1 Tensile Strength Experiment Investigate the tensile strength of a new synthetic fiber. The factor is the weight percent

More information

2/25/2019. Taking the northern and southern hemispheres together, on average the world s population lives 24 degrees from the equator.

2/25/2019. Taking the northern and southern hemispheres together, on average the world s population lives 24 degrees from the equator. Where is the world s population? Roughly 88 percent of the world s population lives in the Northern Hemisphere, with about half north of 27 degrees north Taking the northern and southern hemispheres together,

More information

The Observational Climate Record

The Observational Climate Record The Observational Climate Record Deke Arndt NOAA s Asheville, NC, USA February 2018 National Oceanic and Atmospheric Administration NOAA Satellite and Information Service National Centers for Environmental

More information

Use of Dummy (Indicator) Variables in Applied Econometrics

Use of Dummy (Indicator) Variables in Applied Econometrics Chapter 5 Use of Dummy (Indicator) Variables in Applied Econometrics Section 5.1 Introduction Use of Dummy (Indicator) Variables Model specifications in applied econometrics often necessitate the use of

More information

PLS205!! Lab 9!! March 6, Topic 13: Covariance Analysis

PLS205!! Lab 9!! March 6, Topic 13: Covariance Analysis PLS205!! Lab 9!! March 6, 2014 Topic 13: Covariance Analysis Covariable as a tool for increasing precision Carrying out a full ANCOVA Testing ANOVA assumptions Happiness! Covariable as a Tool for Increasing

More information

Blueline Tilefish Assessment Approach: Stock structure, data structure, and modeling approach

Blueline Tilefish Assessment Approach: Stock structure, data structure, and modeling approach Blueline Tilefish Assessment Approach: Stock structure, data structure, and modeling approach Nikolai Klibansky National Oceanic and Atmospheric Administration August 28, 2017 Nikolai Klibansky (NOAA)

More information

Outline. Review regression diagnostics Remedial measures Weighted regression Ridge regression Robust regression Bootstrapping

Outline. Review regression diagnostics Remedial measures Weighted regression Ridge regression Robust regression Bootstrapping Topic 19: Remedies Outline Review regression diagnostics Remedial measures Weighted regression Ridge regression Robust regression Bootstrapping Regression Diagnostics Summary Check normality of the residuals

More information

3rd Quartile. 1st Quartile) Minimum

3rd Quartile. 1st Quartile) Minimum EXST7034 - Regression Techniques Page 1 Regression diagnostics dependent variable Y3 There are a number of graphic representations which will help with problem detection and which can be used to obtain

More information

Reminder: Univariate Data. Bivariate Data. Example: Puppy Weights. You weigh the pups and get these results: 2.5, 3.5, 3.3, 3.1, 2.6, 3.6, 2.

Reminder: Univariate Data. Bivariate Data. Example: Puppy Weights. You weigh the pups and get these results: 2.5, 3.5, 3.3, 3.1, 2.6, 3.6, 2. TP: To review Standard Deviation, Residual Plots, and Correlation Coefficients HW: Do a journal entry on each of the calculator tricks in this lesson. Lesson slides will be posted with notes. Do Now: Write

More information

6. Multiple regression - PROC GLM

6. Multiple regression - PROC GLM Use of SAS - November 2016 6. Multiple regression - PROC GLM Karl Bang Christensen Department of Biostatistics, University of Copenhagen. http://biostat.ku.dk/~kach/sas2016/ kach@biostat.ku.dk, tel: 35327491

More information

Final Exam - Solutions

Final Exam - Solutions Ecn 102 - Analysis of Economic Data University of California - Davis March 19, 2010 Instructor: John Parman Final Exam - Solutions You have until 5:30pm to complete this exam. Please remember to put your

More information

A Second Opinion Correlation Coefficient. Rudy A. Gideon and Carol A. Ulsafer. University of Montana, Missoula MT 59812

A Second Opinion Correlation Coefficient. Rudy A. Gideon and Carol A. Ulsafer. University of Montana, Missoula MT 59812 A Second Opinion Correlation Coefficient Rudy A. Gideon and Carol A. Ulsafer University of Montana, Missoula MT 59812 An important decision in most fields of research is whether two variables are related.

More information

Drake Petroleum Company, Inc. Accutest Job Number: JB Total number of pages in report:

Drake Petroleum Company, Inc. Accutest Job Number: JB Total number of pages in report: e-hardcopy 2.0 Automated Report New Jersey 05/06/15 05/06/15 Technical Report for Drake Petroleum Company, Inc. 146282.003 PO#007805 Accutest Job Number: Sampling Date: 03/25/15 Report to: Brown & Caldwell

More information

Simple, Marginal, and Interaction Effects in General Linear Models: Part 1

Simple, Marginal, and Interaction Effects in General Linear Models: Part 1 Simple, Marginal, and Interaction Effects in General Linear Models: Part 1 PSYC 943 (930): Fundamentals of Multivariate Modeling Lecture 2: August 24, 2012 PSYC 943: Lecture 2 Today s Class Centering and

More information

SAS Commands. General Plan. Output. Construct scatterplot / interaction plot. Run full model

SAS Commands. General Plan. Output. Construct scatterplot / interaction plot. Run full model Topic 23 - Unequal Replication Data Model Outline - Fall 2013 Parameter Estimates Inference Topic 23 2 Example Page 954 Data for Two Factor ANOVA Y is the response variable Factor A has levels i = 1, 2,...,

More information

Lecture 3. Experiments with a Single Factor: ANOVA Montgomery 3.1 through 3.3

Lecture 3. Experiments with a Single Factor: ANOVA Montgomery 3.1 through 3.3 Lecture 3. Experiments with a Single Factor: ANOVA Montgomery 3.1 through 3.3 Fall, 2013 Page 1 Tensile Strength Experiment Investigate the tensile strength of a new synthetic fiber. The factor is the

More information

Week 7.1--IES 612-STA STA doc

Week 7.1--IES 612-STA STA doc Week 7.1--IES 612-STA 4-573-STA 4-576.doc IES 612/STA 4-576 Winter 2009 ANOVA MODELS model adequacy aka RESIDUAL ANALYSIS Numeric data samples from t populations obtained Assume Y ij ~ independent N(μ

More information

Mathematical Notation Math Introduction to Applied Statistics

Mathematical Notation Math Introduction to Applied Statistics Mathematical Notation Math 113 - Introduction to Applied Statistics Name : Use Word or WordPerfect to recreate the following documents. Each article is worth 10 points and should be emailed to the instructor

More information

EE290H F05. Spanos. Lecture 5: Comparison of Treatments and ANOVA

EE290H F05. Spanos. Lecture 5: Comparison of Treatments and ANOVA 1 Design of Experiments in Semiconductor Manufacturing Comparison of Treatments which recipe works the best? Simple Factorial Experiments to explore impact of few variables Fractional Factorial Experiments

More information

Implementing contrasts using SAS Proc GLM is a relatively straightforward process. A SAS Proc GLM contrast statement has the following form:

Implementing contrasts using SAS Proc GLM is a relatively straightforward process. A SAS Proc GLM contrast statement has the following form: Contrasts for Comparison of Means If the analysis of variance produces a significant F-statistic, this signals the need for further analyses. The most common post ANOVA analysis is the comparison of means.

More information