Non Linear Modelling An example. Background Ace Snackfoods, Inc. has developed a new snack product called Krunchy Bits. Before deciding whether or not.

Slides:



Advertisements
Similar presentations
Chapter 4: Basic Estimation Techniques
Advertisements

1 Copyright © 2005 Brooks/Cole, a division of Thomson Learning, Inc. Notes on Residuals Simple Linear Regression Models.
Regression Analysis Module 3. Regression Regression is the attempt to explain the variation in a dependent variable using the variation in independent.
Regression Analysis Once a linear relationship is defined, the independent variable can be used to forecast the dependent variable. Y ^ = bo + bX bo is.
Marketing Engineering Model
Session 2. Applied Regression -- Prof. Juran2 Outline for Session 2 More Simple Regression –Bottom Part of the Output Hypothesis Testing –Significance.
Introduction to Regression Analysis
Confidence Intervals Underlying model: Unknown parameter We know how to calculate point estimates E.g. regression analysis But different data would change.
Chapter 13 Multiple Regression
Copyright © 2010 by the McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin Managerial Economics & Business Strategy Chapter 3 Quantitative.
Copyright © 2008 by the McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin Managerial Economics, 9e Managerial Economics Thomas Maurice.
Qualitative Forecasting Methods
Chapter 12 Multiple Regression
Data Sources The most sophisticated forecasting model will fail if it is applied to unreliable data Data should be reliable and accurate Data should be.
Chapter 11 Multiple Regression.
Market Response Modeling
Basic Business Statistics, 11e © 2009 Prentice-Hall, Inc. Chap 15-1 Chapter 15 Multiple Regression Model Building Basic Business Statistics 11 th Edition.
IE-331: Industrial Engineering Statistics II Spring 2000 WEEK 1 Dr. Srinivas R. Chakravarthy Professor of Operations Research and Statistics Kettering.
Quantitative Demand Analysis
3 CHAPTER Cost Behavior 3-1.
Elasticity of The Learning Curve or Experience Curve Ted Mitchell.
Copyright ©2011 Pearson Education, Inc. publishing as Prentice Hall 15-1 Chapter 15 Multiple Regression Model Building Statistics for Managers using Microsoft.
1 FORECASTING Regression Analysis Aslı Sencer Graduate Program in Business Information Systems.
Chapter 8: Regression Analysis PowerPoint Slides Prepared By: Alan Olinsky Bryant University Management Science: The Art of Modeling with Spreadsheets,
© 1998, Geoff Kuenning Linear Regression Models What is a (good) model? Estimating model parameters Allocating variation Confidence intervals for regressions.
Multiple Linear Regression. Purpose To analyze the relationship between a single dependent variable and several independent variables.
Regression. Population Covariance and Correlation.
Copyright © 2005 by the McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill/Irwin Managerial Economics Thomas Maurice eighth edition Chapter 4.
Chapter 4 Linear Regression 1. Introduction Managerial decisions are often based on the relationship between two or more variables. For example, after.
Practical Statistics Regression. There are six statistics that will answer 90% of all questions! 1. Descriptive 2. Chi-square 3. Z-tests 4. Comparison.
Simple Linear Regression. The term linear regression implies that  Y|x is linearly related to x by the population regression equation  Y|x =  +  x.
Tutorial 4 MBP 1010 Kevin Brown. Correlation Review Pearson’s correlation coefficient – Varies between – 1 (perfect negative linear correlation) and 1.
Revision: Pivot Table 1. Histogram 2. Trends 3. Linear 4. Exponential
Business Processes Sales Order Management Aggregate Planning Master Scheduling Production Activity Control Quality Control Distribution Mngt. © 2001 Victor.
Environmental Modeling Basic Testing Methods - Statistics III.
Logistic Regression. Linear Regression Purchases vs. Income.
Correlation & Regression Analysis
June 30, 2008Stat Lecture 16 - Regression1 Inference for relationships between variables Statistics Lecture 16.
Copyright © 2013 Nelson Education Ltd.
Basic Business Statistics, 10e © 2006 Prentice-Hall, Inc. Chap 15-1 Chapter 15 Multiple Regression Model Building Basic Business Statistics 10 th Edition.
Statistics for Managers Using Microsoft Excel, 4e © 2004 Prentice-Hall, Inc. Chap 14-1 Chapter 14 Multiple Regression Model Building Statistics for Managers.
Regression Analysis Deterministic model No chance of an error in calculating y for a given x Probabilistic model chance of an error First order linear.
Multiple Regression Learning Objectives n Explain the Linear Multiple Regression Model n Interpret Linear Multiple Regression Computer Output n Test.
Tutorial 5 Thursday February 14 MBP 1010 Kevin Brown.
Michael J. Kalsher PSYCHOMETRICS MGMT 6971 Regression 1 PSYC 4310 Advanced Experimental Methods and Statistics © 2014, Michael Kalsher.
Chapter 15 Multiple Regression Model Building
Chapter 4: Basic Estimation Techniques
Lecture 11: Simple Linear Regression
Chapter 4 Basic Estimation Techniques
Regression Analysis AGEC 784.
Chapter 12 Simple Linear Regression and Correlation
Correlation and Simple Linear Regression
Basic Estimation Techniques
ENM 310 Design of Experiments and Regression Analysis
Correlation and regression
Correlation and Simple Linear Regression
Basic Estimation Techniques
Regression Analysis Week 4.
Stat 112 Notes 4 Today: Review of p-values for one-sided tests
Simultaneous Inferences and Other Regression Topics
Linear Regression.
Chapter 12 Simple Linear Regression and Correlation
Correlation and Simple Linear Regression
Response Curves Ken Homa.
Our theory states Y=f(X) Regression is used to test theory.
Simple Linear Regression and Correlation
Multiple Linear Regression
Product moment correlation
EQUATION 4.1 Relationship Between One Dependent and One Independent Variable: Simple Regression Analysis.
DRQ #11 – October 22, (4 pts) (1/2 pt)
Presentation transcript:

Non Linear Modelling An example

Background Ace Snackfoods, Inc. has developed a new snack product called Krunchy Bits. Before deciding whether or not to “go national” with the new product, the marketing manager for Krunchy Bits has decided to commission a year-long test market using IRI’s BehaviorScan service, with a view to getting a clearer picture of the product’s potential. The product has now been under test for 24 weeks. On hand is a dataset documenting the number of households that have made a trial purchase by the end of each week. (The total size of the panel is 1499 households.) The marketing manager for Krunchy Bits would like a forecast of the product’s year-end performance in the test market. First, she wants a forecast of the percentage of households that will have made a trial purchase by week 52.

Data

Approaches to Forecasting Trial French curve “Curve fitting”—specify a flexible functional form fit it to the data, and project into the future. Inspect the data (see Non Linear Modelling.xls)

Proposed Model for this example Y = p 0 (1 – e –bx ) Decreasing returns and saturation. Here: p 0 = saturation proportion b = decreasing returns parameter Widely used in marketing.

Data

Modelled data

How well does the model do?

How well does the model do – forecasting?

Doing the same thing in R NLeg.df=read.csv(file.choose(),header=T) attach(NLeg.df) fit.nls<- nls( propHH ~ p0*(1-exp(- beta*Week )), data = NLeg.df, start = list( p0=.05,beta=.1), trace = TRUE )

Doing the same thing in R > fit.nls<- nls( propHH ~ p0*(1-exp(-beta*Week )), + data = NLeg.df, + start = list( p0=.05,beta=.1), + trace = TRUE ) : : : : : : > > summary(fit.nls) Formula: propHH ~ p0 * (1 - exp(-beta * Week)) Parameters: Estimate Std. Error t value Pr(>|t|) p e-15 *** beta e-10 *** --- Signif. codes: 0 `***' `**' 0.01 `*' 0.05 `.' 0.1 ` ' 1 Residual standard error: on 22 degrees of freedom Correlation of Parameter Estimates: p0 beta

Different types of Models & Their Interpretations

A Simple Model Y (Sales Level) } b(slope of the salesline) } 1 X (Advertising) a (sales level when advertising = 0)

Phenomena P1: Through Origin P4: Saturation P3:Decreasing Returns (concave) P2: Linear Y X Y X Y X Q — Y X

Phenomena P5:Increasing Returns (convex) P8: Super-saturationP7: Threshold P6: S-shape Y X Y X Y X Y X

Aggregate Response Models: Linear Model Y = a + bX Linear/through origin Saturation and threshold (in ranges)

Aggregate Response Models: Fractional Root Model Y = a + bX c c can be interpreted as elasticity when a = 0. Linear, increasing or decreasing returns (depends on c).

Aggregate Response Models: Exponential Model Y = ae bx ; x > 0 Increasing or decreasing returns (depends on b).

Aggregate Response Models: Adbudg Function Y = b + (a–b) S-shaped and concave; saturation effect. Widely used. Amenable to judgmental calibration. X c d + X c

Aggregate Response Models: Multiple Instruments Additive model for handling multiple marketing instruments Y = af (X 1 ) + bg (X 2 ) Easy to estimate using linear regression.

Aggregate Response Models: Multiple Instruments cont’d Multiplicative model for handling multiple marketing instruments Y = aX b X c b and c are elasticities. Widely used in marketing. Can be estimated by linear regression. 1 2