Regularized Linear Models in Stacked Generalization

Size: px
Start display at page:

Download "Regularized Linear Models in Stacked Generalization"

Transcription

1 Regularized Linear Models in Stacked Generalization Sam Reid and Greg Grudic Department of Computer Science University of Colorado at Boulder USA June 11, 2009 Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

2 How to combine classifiers? Which classifiers? How to combine? Adaboost, Random Forest prescribe classifiers and combiner We want L 1000 heterogeneous classifiers Vote/Average/Forward Stepwise Selection/Linear/Nonlinear? Our combiner: Regularized Linear Model Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

3 Outline 1 Introduction How to combine classifiers? 2 Model Stacked Generalization StackingC Linear Regression and Regularization 3 Experiments Setup Results Discussion Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

4 Outline 1 Introduction How to combine classifiers? 2 Model Stacked Generalization StackingC Linear Regression and Regularization 3 Experiments Setup Results Discussion Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

5 Stacked Generalization Combiner is produced by a classification algorithm Training set = base classifier predictions on unseen data + labels Learn to compensate for classifier biases Linear and nonlinear combiners What classification algorithm should be used? Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

6 Stacked Generalization - Combiners Wolpert, 1992: relatively global, smooth combiners Ting & Witten, 1999: linear regression combiners Seewald, 2002: low-dimensional combiner inputs Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

7 Problems Caruana et al., 2004: Stacking performs poorly because regression overfits dramatically when there are 2000 highly correlated input models and only 1k points in the validation set. How can we scale up stacking to a large number of classifiers? Our hypothesis: regularized linear combiner will reduce variance prevent overfitting increase accuracy Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

8 Posterior Predictions in Multiclass Classification p y(x) x Classification with d = 4, k = 3 Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

9 Ensemble Methods for Multiclass Classification ŷ y (x 1, x 2 ) x 1 x 2 y 1 (x) y 2 (x) Multiple classifier system with 2 classifiers x Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

10 Stacked Generalization ŷ y (x ) x y 1 (x) y 2 (x) Stacked generalization with 2 classifiers x Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

11 Classification via Regression ŷ y A (x ) y B (x ) y C (x ) x y 1 (x) y 2 (x) Stacking using Classification via Regression x Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

12 StackingC ŷ y A (x A ) y B (x B ) y C (x C ) x y 1 (x) y 2 (x) StackingC, class-conscious stacked generalization x Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

13 Linear Models Linear model for use in Stacking or StackingC ŷ = d i=1 β ix i + β 0 Least Squares: L = y X β 2 Problems: High variance Overfitting Ill-posed problem Poor accuracy Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

14 Regularization Increase bias a little, decrease variance a lot Constrain weights reduce flexibility prevent overfitting Penalty terms in our studies: Ridge Regression: L = y X β 2 + λ β 2 Lasso Regression: L = y X β 2 + λ β 1 Elastic Net Regression: L = y X β 2 + λ β 2 + (1 λ) β 1 Lasso/Elastic Net produce sparse models Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

15 Model About 1000 base classifiers making probabilistic predictions Stacked Generalization to create combiner StackingC to reduce dimensionality Convert multiclass to regression Use linear regression Regularization on the weights Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

16 Model About 1000 base classifiers making probabilistic predictions Stacked Generalization to create combiner StackingC to reduce dimensionality Convert multiclass to regression Use linear regression Regularization on the weights Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

17 Outline 1 Introduction How to combine classifiers? 2 Model Stacked Generalization StackingC Linear Regression and Regularization 3 Experiments Setup Results Discussion Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

18 Datasets Table: Datasets and their properties Dataset Attributes Instances Classes balance-scale glass letter mfeat-morphological optdigits sat-image segment vehicle waveform yeast Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

19 Base Classifiers About 1000 base classifiers for each problem 1 Neural Network 2 Support Vector Machine (C-SVM from LibSVM) 3 K-Nearest Neighbor 4 Decision Stump 5 Decision Tree 6 AdaBoost.M1 7 Bagging classifier 8 Random Forest (Weka) 9 Random Forest (R) Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

20 Results select vote average sg sg sg best linear lasso ridge balance glass letter mfeat optdigits sat-image segment vehicle waveform yeast Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

21 Statistical Analysis Pairwise Wilcoxon Signed-Rank Tests Ridge outperforms unregularized at p Lasso outperforms unregularized at p Validates hypothesis: regularization improves accuracy Ridge outperforms lasso at p Dense techniques outperform sparse techniques Ridge outperforms Select-Best at p Properly trained model better than single best Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

22 Baseline Algorithms Average outperforms Vote at p Probabilistic predictions are valuable Select-Best outperforms Average at p Validation/training is valuable Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

23 Subproblem/Overall Accuracy - I RMSE Ridge Parameter..... Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

24 Subproblem/Overall Accuracy - II Accuracy Ridge Parameter Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

25 Subproblem/Overall Accuracy - III Accuracy RMSE on Subproblem 1... Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

26 Accuracy for Elastic Nets Accuracy alpha=0.95 alpha=0.5 alpha=0.05 select-best Penalty Figure: Overall accuracy on sat-image with various parameters for elastic-net. Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

27 Partial Ensemble Selection Sparse techniques perform Partial Ensemble Selection Choose from classifiers and predictions Allow classifiers to focus on subproblems Example: Benefit from a classifier good at separating A from B but poor at A/C, B/C Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

28 Partial Selection Log Lambda Class Log Lambda Class Log Lambda Class Figure: Coefficient profiles for the first three subproblems in StackingC for the sat-image dataset with elastic net regression at α = Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

29 Selected Classifiers Classifier red cotton grey damp veg v.damp total adaboost ann ann ann ann knn Table: Selected posterior probabilities and corresponding weights for the sat-image problem for elastic net StackingC with α = 0.95 for the 6 models with highest total weights. Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

30 Conclusions Regularization is essential in Linear StackingC Trained linear combination outperforms Select-Best Dense combiners outperform sparse combiners Sparse models allow classifiers to specialize in subproblems Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

31 Future Work Examine full Bayesian solutions Constrain coefficients to be positive Choose a single regularizer for all subproblems Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

32 Acknowledgments PhET Interactive Simulations Turing Institute UCI Repository University of Colorado at Boulder Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

33 Questions? Questions? Reid & Grudic (Univ. of Colo. at Boulder) Regularized Linear Models in Stacking June 11, / 33

Model Combination in Multiclass Classification

Model Combination in Multiclass Classification Model Combination in Multiclass Classification Sam Reid Advisors: Mike Mozer, Greg Grudic Department of Computer Science University of Colorado at Boulder USA April 5, 2010 Sam Reid Model Combination in

More information

Supervised Learning to Predict Human Driver Merging Behavior

Supervised Learning to Predict Human Driver Merging Behavior Supervised Learning to Predict Human Driver Merging Behavior Derek Phillips, Alexander Lin {djp42, alin719}@stanford.edu June 7, 2016 Abstract This paper uses the supervised learning techniques of linear

More information

Statistical Learning Examples

Statistical Learning Examples Statistical Learning Examples Genevera I. Allen Statistics 640: Statistical Learning August 26, 2013 (Stat 640) Lecture 1 August 26, 2013 1 / 19 Example: Microarrays arrays High-dimensional: Goals: Measures

More information

Preface... xi. A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content...

Preface... xi. A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content... Contents Preface... xi A Word to the Practitioner... xi The Organization of the Book... xi Required Software... xii Accessing the Supplementary Content... xii Chapter 1 Introducing Partial Least Squares...

More information

Professor Dr. Gholamreza Nakhaeizadeh. Professor Dr. Gholamreza Nakhaeizadeh

Professor Dr. Gholamreza Nakhaeizadeh. Professor Dr. Gholamreza Nakhaeizadeh Statistic Methods in in Data Mining Business Understanding Data Understanding Data Preparation Deployment Modelling Evaluation Data Mining Process (Part 2) 2) Professor Dr. Gholamreza Nakhaeizadeh Professor

More information

Data Mining Approach for Quality Prediction and Improvement of Injection Molding Process

Data Mining Approach for Quality Prediction and Improvement of Injection Molding Process Data Mining Approach for Quality Prediction and Improvement of Injection Molding Process Dr. E.V.Ramana Professor, Department of Mechanical Engineering VNR Vignana Jyothi Institute of Engineering &Technology,

More information

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here.

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. About this Book... ix About the Author... xiii Acknowledgments...xv Chapter 1 Introduction...

More information

The Degrees of Freedom of Partial Least Squares Regression

The Degrees of Freedom of Partial Least Squares Regression The Degrees of Freedom of Partial Least Squares Regression Dr. Nicole Krämer TU München 5th ESSEC-SUPELEC Research Workshop May 20, 2011 My talk is about...... the statistical analysis of Partial Least

More information

Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR

Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR Tutorial 1 Getting Started with Correlated Component Regression (CCR) in XLSTAT-CCR Dataset for running Correlated Component Regression This tutorial 1 is based on data provided by Michel Tenenhaus and

More information

Optimal Vehicle to Grid Regulation Service Scheduling

Optimal Vehicle to Grid Regulation Service Scheduling Optimal to Grid Regulation Service Scheduling Christian Osorio Introduction With the growing popularity and market share of electric vehicles comes several opportunities for electric power utilities, vehicle

More information

Predicting Solutions to the Optimal Power Flow Problem

Predicting Solutions to the Optimal Power Flow Problem Thomas Navidi Suvrat Bhooshan Aditya Garg Abstract Predicting Solutions to the Optimal Power Flow Problem This paper discusses an implementation of gradient boosting regression to predict the output of

More information

AGENT-BASED MODELING, SIMULATION, AND CONTROL SOME APPLICATIONS IN TRANSPORTATION

AGENT-BASED MODELING, SIMULATION, AND CONTROL SOME APPLICATIONS IN TRANSPORTATION AGENT-BASED MODELING, SIMULATION, AND CONTROL SOME APPLICATIONS IN TRANSPORTATION Montasir Abbas, Virginia Tech (with contributions from past and present VT-SCORES students, including: Zain Adam, Sahar

More information

Statistical Estimation Model for Product Quality of Petroleum

Statistical Estimation Model for Product Quality of Petroleum Memoirs of the Faculty of Engineering,, Vol.40, pp.9-15, January, 2006 TakashiNukina Masami Konishi Division of Industrial Innovation Sciences The Graduate School of Natural Science and Technology Tatsushi

More information

PREDICTION OF REMAINING USEFUL LIFE OF AN END MILL CUTTER SEOW XIANG YUAN

PREDICTION OF REMAINING USEFUL LIFE OF AN END MILL CUTTER SEOW XIANG YUAN PREDICTION OF REMAINING USEFUL LIFE OF AN END MILL CUTTER SEOW XIANG YUAN Report submitted in partial fulfillment of the requirements for the award of the degree of Bachelor of Engineering (Hons.) in Manufacturing

More information

Appendix B STATISTICAL TABLES OVERVIEW

Appendix B STATISTICAL TABLES OVERVIEW Appendix B STATISTICAL TABLES OVERVIEW Table B.1: Proportions of the Area Under the Normal Curve Table B.2: 1200 Two-Digit Random Numbers Table B.3: Critical Values for Student s t-test Table B.4: Power

More information

Leveraging AI for Self-Driving Cars at GM. Efrat Rosenman, Ph.D. Head of Cognitive Driving Group General Motors Advanced Technical Center, Israel

Leveraging AI for Self-Driving Cars at GM. Efrat Rosenman, Ph.D. Head of Cognitive Driving Group General Motors Advanced Technical Center, Israel Leveraging AI for Self-Driving Cars at GM Efrat Rosenman, Ph.D. Head of Cognitive Driving Group General Motors Advanced Technical Center, Israel Agenda The vision From ADAS (Advance Driving Assistance

More information

Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies

Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies Integrating remote sensing and ground monitoring data to improve estimation of PM 2.5 concentrations for chronic health studies Chris Paciorek and Yang Liu Departments of Biostatistics and Environmental

More information

A Personalized Highway Driving Assistance System

A Personalized Highway Driving Assistance System A Personalized Highway Driving Assistance System Saina Ramyar 1 Dr. Abdollah Homaifar 1 1 ACIT Institute North Carolina A&T State University March, 2017 aina Ramyar, Dr. Abdollah Homaifar (NCAT) A Personalized

More information

Antonio Olmos Priyalatha Govindasamy Research Methods & Statistics University of Denver

Antonio Olmos Priyalatha Govindasamy Research Methods & Statistics University of Denver Antonio Olmos Priyalatha Govindasamy Research Methods & Statistics University of Denver American Evaluation Association Conference, Chicago, Ill, November 2015 AEA 2015, Chicago Ill 1 Paper overview Propensity

More information

Reliability of Hybrid Vehicle System

Reliability of Hybrid Vehicle System Reliability of Hybrid Vehicle System 2004 Toyota Prius hybrid vehicle Department of Industrial and Manufacturing Systems Engineering Iowa State University December 13, 2016 1 Hybrid Vehicles 2 Motivation

More information

Machine Learning: Chenhao Tan University of Colorado Boulder LECTURE 8

Machine Learning: Chenhao Tan University of Colorado Boulder LECTURE 8 Machine Learning: Chenhao Tan University of Colorado Boulder LECTURE 8 Slides adapted from Jordan Boyd-Graber, Justin Johnson, Andrej Karpathy, Chris Ketelsen, Fei-Fei Li, Mike Mozer, Michael Nielson Machine

More information

KINEMATICAL SUSPENSION OPTIMIZATION USING DESIGN OF EXPERIMENT METHOD

KINEMATICAL SUSPENSION OPTIMIZATION USING DESIGN OF EXPERIMENT METHOD Jurnal Mekanikal June 2014, No 37, 16-25 KINEMATICAL SUSPENSION OPTIMIZATION USING DESIGN OF EXPERIMENT METHOD Mohd Awaluddin A Rahman and Afandi Dzakaria Faculty of Mechanical Engineering, Universiti

More information

Data envelopment analysis with missing values: an approach using neural network

Data envelopment analysis with missing values: an approach using neural network IJCSNS International Journal of Computer Science and Network Security, VOL.17 No.2, February 2017 29 Data envelopment analysis with missing values: an approach using neural network B. Dalvand, F. Hosseinzadeh

More information

Collective Traffic Prediction with Partially Observed Traffic History using Location-Based Social Media

Collective Traffic Prediction with Partially Observed Traffic History using Location-Based Social Media Collective Traffic Prediction with Partially Observed Traffic History using Location-Based Social Media Xinyue Liu, Xiangnan Kong, Yanhua Li Worcester Polytechnic Institute February 22, 2017 1 / 34 About

More information

What s new. Bernd Wiswedel KNIME.com AG. All Rights Reserved.

What s new. Bernd Wiswedel KNIME.com AG. All Rights Reserved. What s new Bernd Wiswedel 2016 KNIME.com AG. All Rights Reserved. What s new 2+1 feature releases last year: 2.12, (3.0), 3.1 (only KNIME Analytics Platform + Server) Changes documented online 2016 KNIME.com

More information

SUPERVISED AND UNSUPERVISED CONDITION MONITORING OF NON-STATIONARY ACOUSTIC EMISSION SIGNALS

SUPERVISED AND UNSUPERVISED CONDITION MONITORING OF NON-STATIONARY ACOUSTIC EMISSION SIGNALS SUPERVISED AND UNSUPERVISED CONDITION MONITORING OF NON-STATIONARY ACOUSTIC EMISSION SIGNALS Sigurdur Sigurdsson, Niels Henrik Pontoppidan and Jan Larsen Informatics and Mathematical Modelling, Richard

More information

MISFIRE DETECTION IN I.C. ENGINE USING MACHINE LEARNING APPROACH Sumedh Mulay 1, V. Sugumaran 1 and S. Babu Devasenapati 2

MISFIRE DETECTION IN I.C. ENGINE USING MACHINE LEARNING APPROACH Sumedh Mulay 1, V. Sugumaran 1 and S. Babu Devasenapati 2 MISFIRE DETECTION IN I.C. ENGINE USING MACHINE LEARNING APPROACH Sumedh Mulay 1, V. Sugumaran 1 and S. Babu Devasenapati 2 1 SMBS, VIT University, Chennai Campus, Vandalur-Kelambakkam Road, Chennai-600127,

More information

Up scaling Agent Based Discrete Choice Transportation Models using Artificial Neural Networks

Up scaling Agent Based Discrete Choice Transportation Models using Artificial Neural Networks Up scalingagent BasedDiscrete ChoiceTransportationModels usingartificialneuralnetworks LanceE.Besaw GraduateResearchAssistant CivilandEnvironmentalEngineering UniversityofVermont 213VoteyHall 33ColchesterAve,Burlington,VT,05405

More information

ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH

ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH APPENDIX G ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH INTRODUCTION Studies on the effect of median width have shown that increasing width reduces crossmedian crashes, but the amount of reduction varies

More information

A Quantitative Study of Small Disjuncts: Experiments and Results

A Quantitative Study of Small Disjuncts: Experiments and Results A Quantitative Study of Small Disjuncts: Experiments and Results Gary M. Weiss and Haym Hirsh Department of Computer Science Rutgers University New Brunswick, New Jersey 893 {gweiss, hirsh}@cs.rutgers.edu

More information

PARTIAL LEAST SQUARES: WHEN ORDINARY LEAST SQUARES REGRESSION JUST WON T WORK

PARTIAL LEAST SQUARES: WHEN ORDINARY LEAST SQUARES REGRESSION JUST WON T WORK PARTIAL LEAST SQUARES: WHEN ORDINARY LEAST SQUARES REGRESSION JUST WON T WORK Peter Bartell JMP Systems Engineer peter.bartell@jmp.com WHEN OLS JUST WON T WORK? OLS (Ordinary Least Squares) in JMP/JMP

More information

RANDOM FOREST BASED MISFIRE DETECTION USING KONONENKO DISCRETISER

RANDOM FOREST BASED MISFIRE DETECTION USING KONONENKO DISCRETISER S BABU DEVASENAPATI AND K I RAMACHANDRAN: RANDOM FOREST BASED MISFIRE DETECTION USING KONONENKO DISCRETISER DOI: 10.21917/ijsc.2012.0042 RANDOM FOREST BASED MISFIRE DETECTION USING KONONENKO DISCRETISER

More information

The Session.. Rosaria Silipo Phil Winters KNIME KNIME.com AG. All Right Reserved.

The Session.. Rosaria Silipo Phil Winters KNIME KNIME.com AG. All Right Reserved. The Session.. Rosaria Silipo Phil Winters KNIME 2016 KNIME.com AG. All Right Reserved. Past KNIME Summits: Merging Techniques, Data and MUSIC! 2016 KNIME.com AG. All Rights Reserved. 2 Analytics, Machine

More information

USE OF PLS COMPONENTS TO IMPROVE CLASSIFICATION ON BUSINESS DECISION MAKING

USE OF PLS COMPONENTS TO IMPROVE CLASSIFICATION ON BUSINESS DECISION MAKING USE OF PLS COMPONENTS TO IMPROVE CLASSIFICATION ON BUSINESS DECISION MAKING José C. Vega Vilca, Aniel Nieves-González and Roxana Aparicio Institute of Statistics and Computer Information Systems, University

More information

Vehicle Seat Bottom Cushion Clip Force Study for FMVSS No. 207 Requirements

Vehicle Seat Bottom Cushion Clip Force Study for FMVSS No. 207 Requirements 14 th International LS-DYNA Users Conference Session: Automotive Vehicle Seat Bottom Cushion Clip Force Study for FMVSS No. 207 Requirements Jaehyuk Jang CAE Body Structure Systems General Motors Abstract

More information

Investigation in to the Application of PLS in MPC Schemes

Investigation in to the Application of PLS in MPC Schemes Ian David Lockhart Bogle and Michael Fairweather (Editors), Proceedings of the 22nd European Symposium on Computer Aided Process Engineering, 17-20 June 2012, London. 2012 Elsevier B.V. All rights reserved

More information

Simulating Rotary Draw Bending and Tube Hydroforming

Simulating Rotary Draw Bending and Tube Hydroforming Abstract: Simulating Rotary Draw Bending and Tube Hydroforming Dilip K Mahanty, Narendran M. Balan Engineering Services Group, Tata Consultancy Services Tube hydroforming is currently an active area of

More information

Rolling resistance as a part of total resistance plays a

Rolling resistance as a part of total resistance plays a Rolling resistance plays a critical role in fuel consumption of mining haul trucks A. Soofastaei, L. Adair, S.M. Aminossadati, M.S. Kizil and P. Knights Mining3, The University of Queensland Australia.

More information

PARTIAL LEAST SQUARES: APPLICATION IN CLASSIFICATION AND MULTIVARIABLE PROCESS DYNAMICS IDENTIFICATION

PARTIAL LEAST SQUARES: APPLICATION IN CLASSIFICATION AND MULTIVARIABLE PROCESS DYNAMICS IDENTIFICATION PARIAL LEAS SQUARES: APPLICAION IN CLASSIFICAION AND MULIVARIABLE PROCESS DYNAMICS IDENIFICAION Seshu K. Damarla Department of Chemical Engineering National Institute of echnology, Rourkela, India E-mail:

More information

Comparison of Karanja, Mahua and Polanga Biodiesel Production through Response Surface Methodology

Comparison of Karanja, Mahua and Polanga Biodiesel Production through Response Surface Methodology INTERNATIONAL JOURNAL OF R&D IN ENGINEERING, SCIENCE AND MANAGEMENT Vol.4, Issue 2, June 2016, p.p.78-84, ISSN 2393-865X Comparison of Karanja, Mahua and Polanga Biodiesel Production through Response Surface

More information

Statistical Applications in Genetics and Molecular Biology

Statistical Applications in Genetics and Molecular Biology Statistical Applications in Genetics and Molecular Biology Volume 3, Issue 1 2004 Article 33 PLS Dimension Reduction for Classification with Microarray Data Anne-Laure Boulesteix Department of Statistics,

More information

Online appendix for "Fuel Economy and Safety: The Influences of Vehicle Class and Driver Behavior" Mark Jacobsen

Online appendix for Fuel Economy and Safety: The Influences of Vehicle Class and Driver Behavior Mark Jacobsen Online appendix for "Fuel Economy and Safety: The Influences of Vehicle Class and Driver Behavior" Mark Jacobsen A. Negative Binomial Specification Begin by stacking the model in (7) and (8) to write the

More information

Assignment 3 solutions

Assignment 3 solutions Assignment 3 solutions Question 1: SVM on the OJ data (a) [2 points] Create a training set containing a random sample of 800 observations, and a test set containing the remaining observations. library(islr)

More information

Technical Papers supporting SAP 2009

Technical Papers supporting SAP 2009 Technical Papers supporting SAP 29 A meta-analysis of boiler test efficiencies to compare independent and manufacturers results Reference no. STP9/B5 Date last amended 25 March 29 Date originated 6 October

More information

Effect of Sample Size and Method of Sampling Pig Weights on the Accuracy of Estimating the Mean Weight of the Population 1

Effect of Sample Size and Method of Sampling Pig Weights on the Accuracy of Estimating the Mean Weight of the Population 1 Effect of Sample Size and Method of Sampling Pig Weights on the Accuracy of Estimating the Mean Weight of the Population C. B. Paulk, G. L. Highland 2, M. D. Tokach, J. L. Nelssen, S. S. Dritz 3, R. D.

More information

Robust alternatives to best linear unbiased prediction of complex traits

Robust alternatives to best linear unbiased prediction of complex traits Robust alternatives to best linear unbiased prediction of complex traits WHY BEST LINEAR UNBIASED PREDICTION EASY TO EXPLAIN FLEXIBLE AMENDABLE WELL UNDERSTOOD FEASIBLE UNPRETENTIOUS NORMALITY IS IMPLICIT

More information

A satellite view of global desert dust and primary carbonaceous aerosol emission database, Part: desert dust

A satellite view of global desert dust and primary carbonaceous aerosol emission database, Part: desert dust AEROCOM 16 TH WORKSHOP 16 th AEROCOM WORKSHOP Type: Oral Presentation October 9-13, 2017 Finnish Meteorological Institute, Helsinki, Finland A satellite view of global desert dust and primary carbonaceous

More information

A General Artificial Neural Network Extension for HTK

A General Artificial Neural Network Extension for HTK A General Artificial Neural Network Extension for HTK Chao Zhang & Phil Woodland University of Cambridge 15 April 2015 Overview Design Principles Implementation Details Generic ANN Support ANN Training

More information

SOME ISSUES OF THE CRITICAL RATIO DISPATCH RULE IN SEMICONDUCTOR MANUFACTURING. Oliver Rose

SOME ISSUES OF THE CRITICAL RATIO DISPATCH RULE IN SEMICONDUCTOR MANUFACTURING. Oliver Rose Proceedings of the 22 Winter Simulation Conference E. Yücesan, C.-H. Chen, J. L. Snowdon, and J. M. Charnes, eds. SOME ISSUES OF THE CRITICAL RATIO DISPATCH RULE IN SEMICONDUCTOR MANUFACTURING Oliver Rose

More information

Learning how to choose (?) Effects of instructional choice sets in DCE

Learning how to choose (?) Effects of instructional choice sets in DCE Learning how to choose (?) Effects of instructional choice sets in DCE Jürgen Meyerhoff (TU Berlin) Klaus Glenk (SRUC) ICMC Sydney 3.-5. July 13 What do we mean by ICS? We define an Instruction Choice

More information

Multiple Imputation of Missing Blood Alcohol Concentration (BAC) Values in FARS

Multiple Imputation of Missing Blood Alcohol Concentration (BAC) Values in FARS Multiple Imputation of Missing Blood Alcohol Concentration (BAC Values in FARS Introduction Rajesh Subramanian and Dennis Utter National Highway Traffic Safety Administration, 400, 7 th Street, S.W., Room

More information

Analysis of Partial Least Squares for Pose-Invariant Face Recognition

Analysis of Partial Least Squares for Pose-Invariant Face Recognition Analysis of Partial Least Squares for Pose-Invariant Face Recognition Mika Fischer Hazım Kemal Ekenel, Rainer Stiefelhagen mika.fischer@kit.edu ekenel@{kit.edu,itu.edu.tr} rainer.stiefelhagen@kit.edu Karlsruhe

More information

Risk-Based Collision Avoidance in Semi-Autonomous Vehicles

Risk-Based Collision Avoidance in Semi-Autonomous Vehicles Independent Work Report Spring, 2016 Risk-Based Collision Avoidance in Semi-Autonomous Vehicles Christopher Hay 17 Adviser: Thomas Funkhouser Abstract Although there have been a number of advances in active

More information

Prediction Model of Driving Behavior Based on Traffic Conditions and Driver Types

Prediction Model of Driving Behavior Based on Traffic Conditions and Driver Types Proceedings of the 12th International IEEE Conference on Intelligent Transportation Systems, St. Louis, MO, USA, October 3-7, 29 WeAT4.2 Prediction Model of Driving Behavior Based on Traffic Conditions

More information

Supporting Information

Supporting Information 1 Supporting Information 2 3 4 5 6 7 8 9 10 11 12 Daily estimation of ground-level PM 2.5 concentrations over Beijing using 3 km resolution MODIS AOD Yuanyu Xie 1, Yuxuan Wang* 1,2,3, Kai Zhang 4, Wenhao

More information

Some Robust and Classical Nonparametric Procedures of Estimations in Linear Regression Model

Some Robust and Classical Nonparametric Procedures of Estimations in Linear Regression Model Some Robust and Classical Nonparametric Procedures of Estimations in Linear Regression Model F.B. Adebola, Ph.D.; E.I. Olamide, M.Sc. * ; and O.O. Alabi, Ph.D. Department of Statistics, Federal University

More information

The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized by Particle Swarm Optimization

The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized by Particle Swarm Optimization Journal of Applied Science and Engineering, Vol. 20, No. 4, pp. 483 490 (2017) DOI: 10.6180/jase.2017.20.4.10 The State of Charge Estimation of Power Lithium Battery Based on RBF Neural Network Optimized

More information

Improving CERs building

Improving CERs building Improving CERs building Getting Rid of the R² tyranny Pierre Foussier pmf@3f fr.com ISPA. San Diego. June 2010 1 Why abandon the OLS? The ordinary least squares (OLS) aims to build a CER by minimizing

More information

What s new. Bernd Wiswedel KNIME.com AG. All Rights Reserved.

What s new. Bernd Wiswedel KNIME.com AG. All Rights Reserved. What s new Bernd Wiswedel 2016 KNIME.com AG. All Rights Reserved. What s new 2+1 feature releases in the last year: (3.0), 3.1, 3.2 Changes documented online 2016 KNIME.com AG. All Rights Reserved. 2 What

More information

PROACTIVE PRODUCT SERVICING

PROACTIVE PRODUCT SERVICING 1 PROACTIVE PRODUCT SERVICING Necip Doganaksoy, GE Global Research Gerry Hahn, GE Global Research, Retired Bill Meeker, Iowa State University 2009 QUALITY & PRODUCTIVITY RESEARCH CONFERENCE 2 STATISTICALLY

More information

Workshop on Frame Theory and Sparse Representation for Complex Data June 1, 2017

Workshop on Frame Theory and Sparse Representation for Complex Data June 1, 2017 Workshop on Frame Theory and Sparse Representation for Complex Data June 1, 2017 Xiaoming Huo Georgia Institute of Technology School of industrial and systems engineering I. Statistical Dependence II.

More information

Calibration. DOE & Statistical Modeling

Calibration. DOE & Statistical Modeling ETAS Webinar - ASCMO Calibration. DOE & Statistical Modeling Injection Consumption Ignition Torque AFR HC EGR P-rail NOx Inlet-cam Outlet-cam 1 1 Soot T-exhaust Roughness What is Design of Experiments?

More information

Follow this and additional works at: https://digitalcommons.usu.edu/mathsci_stures

Follow this and additional works at: https://digitalcommons.usu.edu/mathsci_stures Utah State University DigitalCommons@USU Mathematics and Statistics Student Research and Class Projects Mathematics and Statistics Student Works 2016 Car Crash Conundrum Mohammad Sadra Sharifi Utah State

More information

7. Author(s) Shan Bao, Michael J. Flannagan, James R. Sayer, Mitsuhiro Uchida 9. Performing Organization Name and Address

7. Author(s) Shan Bao, Michael J. Flannagan, James R. Sayer, Mitsuhiro Uchida 9. Performing Organization Name and Address 1. Report No. UMTRI-2011-48 4. Title and Subtitle The Effect of Headlamp Vertical Aim on Performance of a Lane Tracking System 7. Author(s) Shan Bao, Michael J. Flannagan, James R. Sayer, Mitsuhiro Uchida

More information

PLS Pluses and Minuses In Path Estimation Accuracy

PLS Pluses and Minuses In Path Estimation Accuracy PLS Pluses and Minuses In Path Estimation Accuracy Full Paper Dale Goodhue Terry College of Business, MIS Department, University of Georgia dgoodhue@terry.uga.edu William Lewis william.w.lewis@gmail.com

More information

PREDICTION OF FUEL CONSUMPTION

PREDICTION OF FUEL CONSUMPTION PREDICTION OF FUEL CONSUMPTION OF AGRICULTURAL TRACTORS S. C. Kim, K. U. Kim, D. C. Kim ABSTRACT. A mathematical model was developed to predict fuel consumption of agricultural tractors using their official

More information

Intelligent Fault Analysis in Electrical Power Grids

Intelligent Fault Analysis in Electrical Power Grids Intelligent Fault Analysis in Electrical Power Grids Biswarup Bhattacharya (University of Southern California) & Abhishek Sinha (Adobe Systems Incorporated) 2017 11 08 Overview Introduction Dataset Forecasting

More information

Sharif University of Technology. Graduate School of Management and Economics. Econometrics I. Fall Seyed Mahdi Barakchian

Sharif University of Technology. Graduate School of Management and Economics. Econometrics I. Fall Seyed Mahdi Barakchian Sharif University of Technology Graduate School of Management and Economics Econometrics I Fall 2010 Seyed Mahdi Barakchian Textbook: Wooldridge, J., Introductory Econometrics: A Modern Approach, South

More information

Damping Ratio Estimation of an Existing 8-story Building Considering Soil-Structure Interaction Using Strong Motion Observation Data.

Damping Ratio Estimation of an Existing 8-story Building Considering Soil-Structure Interaction Using Strong Motion Observation Data. Damping Ratio Estimation of an Existing -story Building Considering Soil-Structure Interaction Using Strong Motion Observation Data by Koichi Morita ABSTRACT In this study, damping ratio of an exiting

More information

Misfire Detection in Spark-Ignition Engine using Statistical Learning Theory

Misfire Detection in Spark-Ignition Engine using Statistical Learning Theory International Journal of Performability Engineering, Vol. 12, No. 1, January 2016, pp. 79-88. Totem Publisher, Inc., 4625 Stargazer Dr., Plano, Texas 75024, U.S.A. Misfire Detection in Spark-Ignition Engine

More information

Fast and Robust Optimization Approaches for Pedestrian Detection

Fast and Robust Optimization Approaches for Pedestrian Detection Fast and Robust Optimization Approaches for Pedestrian Detection Victor Hugo Cunha de Melo, David Menotti (Co-advisor), William Robson Schwartz (Advisor) Computer Science Department, Universidade Federal

More information

MODELING SUSPENSION DAMPER MODULES USING LS-DYNA

MODELING SUSPENSION DAMPER MODULES USING LS-DYNA MODELING SUSPENSION DAMPER MODULES USING LS-DYNA Jason J. Tao Delphi Automotive Systems Energy & Chassis Systems Division 435 Cincinnati Street Dayton, OH 4548 Telephone: (937) 455-6298 E-mail: Jason.J.Tao@Delphiauto.com

More information

algorithms ISSN

algorithms ISSN Algorithms 2010, 3, 92-99; doi:10.3390/algor3010092 OPEN ACCESS algorithms ISSN 1999-4893 www.mdpi.com/journal/algorithms Article Base Oils Biodegradability Prediction with Data Mining Techniques Sihem

More information

What s cooking. Bernd Wiswedel KNIME.com AG. All Rights Reserved.

What s cooking. Bernd Wiswedel KNIME.com AG. All Rights Reserved. What s cooking Bernd Wiswedel 2016 KNIME.com AG. All Rights Reserved. Outline Continued development of all products, including KNIME Server KNIME Analytics Platform KNIME Big Data Extensions (discussed

More information

Analysis of Fault Diagnosis of Bearing using Supervised Learning Method

Analysis of Fault Diagnosis of Bearing using Supervised Learning Method Analysis of Fault Diagnosis of Bearing using Supervised Learning Method Ashish Goyal 1*, Rajeev Kumar 2, Mayur Rajeshwar Randive 3*,Tarsem Singh 4* 1,3 ( Department of Mechanical Engineering, Lovely Professional

More information

Queuing Models to Analyze Electric Vehicle Usage Patterns

Queuing Models to Analyze Electric Vehicle Usage Patterns Queuing Models to Analyze Electric Vehicle Usage Patterns Ken Lau Data Scientist Alberta Gaming and Liquor Commission About Me Completed Master s in Statistics at University of British Columbia (2015)

More information

FAST PEDESTRIAN DETECTION BASED ON A PARTIAL LEAST SQUARES CASCADE

FAST PEDESTRIAN DETECTION BASED ON A PARTIAL LEAST SQUARES CASCADE FAST PEDESTRIAN DETECTION BASED ON A PARTIAL LEAST SQUARES CASCADE Victor Hugo Cunha de Melo 1, Samir Leão 1, Mario Campos 1, David Menotti 2, William Robson Schwartz 1 1 Computer Science Department, Universidade

More information

Autonomous inverted helicopter flight via reinforcement learning

Autonomous inverted helicopter flight via reinforcement learning Autonomous inverted helicopter flight via reinforcement learning Andrew Y. Ng, Adam Coates, Mark Diel, Varun Ganapathi, Jamie Schulte, Ben Tse, Eric Berger, and Eric Liang By Varun Grover Outline! Helicopter

More information

Index. distribution, 141, 146, 195, 212, 213, 224, 225, 233, 234 test,41

Index. distribution, 141, 146, 195, 212, 213, 224, 225, 233, 234 test,41 435 Index Symbols 0-1 loss, 167, 343 F 5 2 cross-validation paired test, 213 distribution, 213 k-means, 280, 281 p-value, 21, 40, 57, 141, 145, 153, 233, 386, 396, 403, 419, 422 χ 2, 42, 46, 59 distribution,

More information

Reliability and Validity of Seat Interface Pressure to Quantify Seating Comfort in Motorcycles

Reliability and Validity of Seat Interface Pressure to Quantify Seating Comfort in Motorcycles Reliability and Validity of Seat Interface Pressure to Quantify Seating Comfort in Motorcycles Sai Praveen Velagapudi a,b, Ray G. G b a Research & Development, TVS Motor Company, INDIA; b Industrial Design

More information

Cost-Efficiency by Arash Method in DEA

Cost-Efficiency by Arash Method in DEA Applied Mathematical Sciences, Vol. 6, 2012, no. 104, 5179-5184 Cost-Efficiency by Arash Method in DEA Dariush Khezrimotlagh*, Zahra Mohsenpour and Shaharuddin Salleh Department of Mathematics, Faculty

More information

Inventory Routing for Bike Sharing Systems

Inventory Routing for Bike Sharing Systems Inventory Routing for Bike Sharing Systems mobil.tum 2016 Transforming Urban Mobility Technische Universität München, June 6-7, 2016 Jan Brinkmann, Marlin W. Ulmer, Dirk C. Mattfeld Agenda Motivation Problem

More information

Power and Fuel Economy Tradeoffs, and Implications for Benefits and Costs of Vehicle Greenhouse Gas Regulations

Power and Fuel Economy Tradeoffs, and Implications for Benefits and Costs of Vehicle Greenhouse Gas Regulations Power and Fuel Economy Tradeoffs, and Implications for Benefits and Costs of Vehicle Greenhouse Gas Regulations Gloria Helfand Andrew Moskalik Kevin Newman Jeff Alson US Environmental Protection Agency

More information

Fuel Consumption and Technological Progress in Chinese Automobile Sector. Yang Yu Stanford University (Working with Yang Shu and Yueming Lucy Qiu)

Fuel Consumption and Technological Progress in Chinese Automobile Sector. Yang Yu Stanford University (Working with Yang Shu and Yueming Lucy Qiu) Fuel Consumption and Technological Progress in Chinese Automobile Sector Yang Yu Stanford University (Working with Yang Shu and Yueming Lucy Qiu) Outline Background China s Automobile Market and Fuel Consumption

More information

How to build an autonomous anything

How to build an autonomous anything How to build an autonomous anything Michelle Hirsch Head of MATLAB Product Management MathWorks 2015 The MathWorks, Inc. 1 2 3 4 5 6 7 Autonomous Technology 8 Autonomous Having the power for self-governance

More information

Domain-invariant Partial Least Squares (di-pls) Regression: A novel method for unsupervised and semi-supervised calibration model adaptation

Domain-invariant Partial Least Squares (di-pls) Regression: A novel method for unsupervised and semi-supervised calibration model adaptation Domain-invariant Partial Least Squares (di-pls) Regression: A novel method for unsupervised and semi-supervised calibration model adaptation R. Nikzad-Langerodi W. Zellinger E. Lughofer T. Reischer 2 S.

More information

A Data Driven Health Monitoring Approach to Extending Small Sats Mission

A Data Driven Health Monitoring Approach to Extending Small Sats Mission A Data Driven Health Monitoring Approach to Extending Small Sats Mission Fangzhou Sun 1, Abhishek Dubey 2, Chetan S. Kulkarni 3, Nagbhushan Mahadevan 4 and Ali Guarneros Luna 5 1,2,4 Institute for Software

More information

EVALUATION OF THE CRASH EFFECTS OF THE QUEENSLAND MOBILE SPEED CAMERA PROGRAM IN THE YEAR 2007

EVALUATION OF THE CRASH EFFECTS OF THE QUEENSLAND MOBILE SPEED CAMERA PROGRAM IN THE YEAR 2007 EVALUATION OF THE CRASH EFFECTS OF THE QUEENSLAND MOBILE SPEED CAMERA PROGRAM IN THE YEAR 2007 by Stuart Newstead May 2009 Consultancy Report: Draft V1 MONASH UNIVERSITY ACCIDENT RESEARCH CENTRE REPORT

More information

RESULTS OF PHYSICAL WORKSHOP 1 st Australian Runway and Roads Friction Testing Workshop

RESULTS OF PHYSICAL WORKSHOP 1 st Australian Runway and Roads Friction Testing Workshop RESULTS OF PHYSICAL WORKSHOP 1 st Australian Runway and Roads Friction Testing Workshop By : John Dardano B.E (Civil), M.Eng.Mgt August 2003 1.0 INTRODUCTION In the week of the 5 August 2003, Sydney Airport

More information

Modelling and Prediction of Diesel Engine Performance using Relevance. Vector Machine

Modelling and Prediction of Diesel Engine Performance using Relevance. Vector Machine Modelling and Prediction of Diesel Engine Performance using Relevance Vector Machine Ka In Wong a, *, Pak Kin Wong a, Chun Shun Cheung b a Department of Electromechanical Engineering, University of Macau,

More information

Using Machine Learning to Automatically Predict and Identify Defects in Automotive Assembly Processes

Using Machine Learning to Automatically Predict and Identify Defects in Automotive Assembly Processes Using Machine Learning to Automatically Predict and Identify Defects in Automotive Assembly Processes David Johnson Foxcon 2017 Software Developer s Conference Outline Brief introduction to Machine Learning

More information

Online Learning and Optimization for Smart Power Grid

Online Learning and Optimization for Smart Power Grid 1 2016 IEEE PES General Meeting Panel on Domain-Specific Big Data Analytics Tools in Power Systems Online Learning and Optimization for Smart Power Grid Seung-Jun Kim Department of Computer Sci. and Electrical

More information

THE ELECTRIC VEHICLE ROUTING OPTIMIZING ALGORITHM AND THE CHARGING STATIONS LAYOUT ANALYSIS IN BEIJING

THE ELECTRIC VEHICLE ROUTING OPTIMIZING ALGORITHM AND THE CHARGING STATIONS LAYOUT ANALYSIS IN BEIJING ISSN 176-459 Int j simul model 13 (014) 1, 116-17 Original scientific paper THE ELECTRIC VEHICLE ROUTING OPTIMIZING ALGORITHM AND THE CHARGING STATIONS LAYOUT ANALYSIS IN BEIJING Lu, X. C.; Chen, Q. B.

More information

Approach for determining WLTPbased targets for the EU CO 2 Regulation for Light Duty Vehicles

Approach for determining WLTPbased targets for the EU CO 2 Regulation for Light Duty Vehicles Approach for determining WLTPbased targets for the EU CO 2 Regulation for Light Duty Vehicles Brussels, 17 May 2013 richard.smokers@tno.nl norbert.ligterink@tno.nl alessandro.marotta@jrc.ec.europa.eu Summary

More information

FACTOR COMPLEXITY OF ACCIDENT OCCURRENCE: AN EMPIRICAL DEMONSTRATION USING BOOSTED REGRESSION TREES

FACTOR COMPLEXITY OF ACCIDENT OCCURRENCE: AN EMPIRICAL DEMONSTRATION USING BOOSTED REGRESSION TREES FACTOR COMPLEXITY OF ACCIDENT OCCURRENCE: AN EMPIRICAL DEMONSTRATION USING BOOSTED REGRESSION TREES Yi-Shih Chung Assistant Professor of Logistics and Shipping Management, School of Transportation and

More information

Journal of Emerging Trends in Computing and Information Sciences

Journal of Emerging Trends in Computing and Information Sciences Pothole Detection Using Android Smartphone with a Video Camera 1 Youngtae Jo *, 2 Seungki Ryu 1 Korea Institute of Civil Engineering and Building Technology, Korea E-mail: 1 ytjoe@kict.re.kr, 2 skryu@kict.re.kr

More information

How to build an autonomous anything

How to build an autonomous anything How to build an autonomous anything Michelle Hirsch Head of MATLAB Product Management MathWorks 2015 The MathWorks, Inc. 1 2 3 4 5 6 7 Autonomous Technology 8 Autonomous Having the power for self-governance

More information

Statistics and Quantitative Analysis U4320. Segment 8 Prof. Sharyn O Halloran

Statistics and Quantitative Analysis U4320. Segment 8 Prof. Sharyn O Halloran Statistics and Quantitative Analysis U4320 Segment 8 Prof. Sharyn O Halloran I. Introduction A. Overview 1. Ways to describe, summarize and display data. 2.Summary statements: Mean Standard deviation Variance

More information

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018 Review of Linear Regression I Statistics 211 - Statistical Methods II Presented January 9, 2018 Estimation of The OLS under normality the OLS Dan Gillen Department of Statistics University of California,

More information

OFFSETTING OR ENHANCING BEHAVIOR: AN EMPIRICAL ANALYSIS OF MOTORCYCLE HELMET SAFETY LEGISLATION

OFFSETTING OR ENHANCING BEHAVIOR: AN EMPIRICAL ANALYSIS OF MOTORCYCLE HELMET SAFETY LEGISLATION OFFSETTING OR ENHANCING BEHAVIOR: AN EMPIRICAL ANALYSIS OF MOTORCYCLE HELMET SAFETY LEGISLATION Jonathan Lee East Carolina University Department of Economics Theory of Offsetting Behavior Peltzman (1975),

More information