FAMA-FRENCH 1992 REDUX WITH ROBUST STATISTICS

Size: px
Start display at page:

Download "FAMA-FRENCH 1992 REDUX WITH ROBUST STATISTICS"

Transcription

1 FAMA-FRENCH 1992 REDUX WITH ROBUST STATISTICS R. Douglas Martin* Professor Emeritus Applied Mathematics and Statistics University of Washington IAQF, NYC December 11, 2018** *Joint work with Christopher G. Green. See Green and Martin (2017), SSRN Abstract ID ** Appendices and some details slides added 12/21/2018 1

2 Main Reference is Chapter 5 of: Robust Statistics: Theory and Methods (2019). 2 nd Ed. Maronna, Martin, Yohai and Salibian-Barrera, Wiley. Companion R package: RobStatTM (2019, beta) Maintainer: Matias Salibian-Barrera To install, load, and view functions and data sets: > devtools::install_github("msalibian/robstattm") > library(robstattm) > ls("package:robstattm") > data(package = "RobStatTM") 2

3 3

4 OUTLINE 1. Robust regression theory overview 2. Fama-French 1992 method & results 3. FF92 Redux with robust regression 4. Two models not studied in FF92 5. Use in fundamental factor models 4

5 1. ROBUST REGRESSION OVERVIEW Data Oriented Viewpoint Not much influenced by outliers A good fit to the bulk of the data Reliable multi-d outlier detection Provides a diagnostic check on classical estimates Important Fact: Normal distribution MLEs are not robust toward outliers! 5

6 Least Squares n i= ( r ) ˆ = min i i ( ) θ x θ θ XX Xr A normal distribution MLE Blessed by Gauss-Markov (BLUE). But not at all robust: r Outliers in and/or have unbounded influence! i x i The culprit is quadratic loss and estimator linearity! 6

7 Robust vs. LS Prediction of EPS INVENSYS EARNINGS EARNINGS PER SHARE ROBUST LS The ROBUST line fits bulk of data well by down weighting the 2-D outliers, The LEAST SQUARES line is a poor fit to the bulk of the data, and is a very poor predictor of EPS YEAR 7

8 The Fathers of Robust Statistics First date below is date of first seminal contribution. John W. Tukey (1961, 1979) Peter J. Huber (1964, 1973) Frank R. Hampel (1971, 1974) 8

9 Tukey (1979) Redacted just which robust methods you use is not important what is important is that you use some. It is perfectly proper to use both classical and robust methods routinely, and only worry when they differ enough to matter. But when they differ, you should think hard. 9

10 Tukey (1979) Non-redacted and updated just which robust methods you use is not important what is important is that you use some. It is perfectly proper to use both classical and robust methods routinely, and only worry when they differ enough to matter. But when they differ, you should think hard. Our 2018 Update: A lot is now known about which robust regression estimators are (much) better than others. 10

11 ROBUSTNESS THEORY BRIEF Large-sample (asymptotic) in nature Tukey-Huber model in regression context: r = x θ + ε i i i r F= (1 γ) Nr (, x) + γ Hr (, x), H i Choices for : Hrx (, ) 1. All with symmetric error distributions: no bias problem Hrx (, ) 2. All : must control maximum bias 11

12 Robust Regression Theory First theoretical result (Huber, 1964, 1973) M-estimators that minimize maximum variance (ignores bias) Better theoretical result (Yohai & Zamar, 1997, MMYS Chap. 5) MM-estimators with high breakdown point (BP = 0.5) Efficient min-max bias estimators: ( θˆ ) MLE ( θˆ ) ROBUST var EFF( θ ˆ ) ROBUST = = 99% var Theory improvement (Maronna & Yohai, 2015 ; Ch MMYS) Distance constrained maximum-likelihood estimator (DCML) See Appendix 2 for details 12

13 Maximum Bias Curves Maximum bias of over all H in F = (1 γ) F +γ H B (;) γ θˆ max ˆθ 25% trimmed mean sample median Sample mean N 2 (, ) θ σ θ ˆθ 1 ˆθ 2 Breakdown points BP 1 =.25 BP 1 =.5 γ 13

14 Regression M-Estimators M = maximum-likelihood type Huber (1964, 1973) ˆ β = argmin β n i=1 ρ r i x iθ sˆ o n i=1 x i r x θˆ = 0, = sˆ o i i ψ ψ ρ MM-estimators : M-estimators with a highly robust initial estimator crucial for non-convex. Yohai (1987) ρ 14

15 Huber Min-Max Variance Optimal ρ and ψ rho k k 2 3 x Good news: It is a convex optimization problem. Bad news: It can result in arbitrarily large bias for the Tukey-Huber model (Martin, Yohai & Zamar, 1989). psi k k None-the-less, very useful as a complement x N.B. Axioma uses this robust regression estimator, see., e.g., Axioma paper 062 (2015), and Axioma AXWWW21-1 (2015). 15

16 Efficient Min-Max Bias Robust Regression Yohai and Zamar (1997) and Svarc, Yohai & Zamar (2002) Solution was found in terms of the ψ function (not the rho!)

17 It was only discovered this year that the analytic form of the optimal rho functions shown below are those of an imaginary error function. This is used in the RobStatTM package. NOTE: the robust and robustbase packages use a polynomial approximation for ψ, and its integral provides ρ. 17

18 We recommend the 99% normal efficiency ρ and ψ shown below A non-convex optimization problem. But a very good MM-estimator method exists well with a deterministic initial estimate. For the latter, see Appendix 1. Smoothed outlier hard rejection rule Reject data for which: r x θˆ > sˆ i i o Formula for psi function in MMYS Section

19 Weighted Least Squares (WLS) Version of M-Estimator n n r ˆ ˆ i i ri i sˆ i i ( ˆ o ψ x θ W xθ x r = i i ) = 0 i=1 sˆ x i=1 ˆ o s xθ o W opt () t ψ = opt t () t We use a good starting point and solve by iterative re-weighting. 19

20 CAPM/Single-Index Model Example > devtools::install_github('kecoli/mpo') > library(mpo) > (names(retvhi)) [1] "VHI" "MKT" "RF" > ret12 = retvhi[,1:2] > tsplot(ret12,cex =.8) 20

21 LS Fit versus Robust Fit with lmrobdetmm() > library(robstattm) > x=(retvhi[,2]-retvhi [,3])*100 > y=(retvhi[,1]-retvhi [,3])*100 > fit.ls = lm(y~x) > ctrl=lmrobdet.control(efficiency = 0.99, family = "optimal ) > fit.rob = lmrobdetmm(y~x,control = ctrl) > coef(fit.ls) (Intercept) x > coef(fit.rob) (Intercept) x

22 LS beta is almost twice the robust beta Robust beta standard error is smaller than that of LS beta 22

23 Important fact: good outliers are not rejected robdetmm() does not reject good outliers that are consistent with the fit to the bulk of the returns 23

24 Bailer, Maravina & Martin (2011). Robust Betas in Asset Management, Handbook of Quant. Mgm t, Oxford Univ. Press SIZE25 SIZE50 Robust Beta SIZE75 SIZE Robust Betas 24

25 OLS Beta - Robust Beta SIZE25 SIZE75 SIZE50 SIZE Paired Differences Between OLS and Robust Betas 25

26 Main ψ Competitor: Tukey bisquare (90% Efficiency) ρ BS ( x ) ψ BS ( x ) WBS ( x) 26

27 Finite-Sample MSE Performance MSE under Tukey-Huber model (for a range of n and p values) Search for best performance Use extensive simulation - Concludes that ψ () opt t is much better than ψ opt () t ψ BS () t - DCML shrinkage of to LS performs even better For details on finite-sample MSE study, see MMYS Section 5.9, Table 5.9 and Table

28 2. FF92 METHOD AND RESULTS Eugene F. Fama and Kenneth R. French (1992). The Cross- Section of Expected Stock Returns, Journal of Finance. Fama: Nobel Prize, 2013 (shared with Hansen and Schiller) For an overview of empirical asset pricing, including brief discussion of research on many pricing anomalies, see: Bali, Engle and Murray (2016). Empirical Asset Pricing: The Cross-Section of Stock Returns, Wiley 28

29 Cross-Section Regression Models r = X θ + ε t t 1 t t, t = 1, 2,, T Factor exposures Regression slopes Least Squares (LS) Fitted Models r = X θˆ + ε θˆ = t t 1 t t t ˆ ˆ ˆ ( θ, θ,, θ ) ˆ 1, t 2, t Kt, t-tests of Significance Sample mean of time-series of slopes, θ ˆ = 1, 2,, T kt, t 29

30 Fama-French 1992 Goal Determine which of the factors below explain the cross-section of expected returns (which price risk ) β ln(me) ln(be/me) E(+)/P E/P Dummy ln(a/me), ln(a/be) CAPM beta (special portfolios to reduce EV) Size (ME is market equity in $M) Book-to-Market (often just B/M) Positive Earnings to Price Negative Earnings to Price Dummy Leverage factors (A = book assets) 30

31 Fama-French (1992) Table III Ignore strange beta does not price risk! returns are negatively related to size returns are positively related to BE/ME 31

32 3. FF92 REDUX WITH ROBUST REGRESSION For the vast majority of the stocks (~ 97%) we found: Different conclusions with robust regression than FF92: - Beta relationship is significant and negative - Equity returns are positively related to firm size - E/P dummy is significantly negative New results for two models not in FF92: - Full E/P prices risk (no negative EP dummy) - Model with beta and size interaction term Use robust t-stats for time series of regression slopes - With autocorrelation correction 32

33 Note: In the following slides, as in Green and Martin (2017) SSRN ID , we did the following: ψ opt Used a polynomial approximation to. ρ opt The reason is that an analytic expression is needed for in order to obtain the robust regression coefficients via numeric optimization, and such an expression was not known until this year. Used 99.9% normal distribution efficiency Under normality the result is totally indistinguishable from LS (but this is also the case for 99% efficiency) 33

34 Returns vs Beta NOTE: There is a January Beta positive effect 34

35 Monthly Returns vs Beta LS & Robust Fits 53 obs. instead of obs. instead of 520 Beta January effect 35

36 Returns vs Size KR97 = Knez & Ready (1997) CCW04 = Chou, Chou & Wang (2004) LTS = least trimmed squares 36

37 Monthly Slopes of Returns Regressed on Size red dots = Januaries, a well-known January effect N.B. Existence of outliers and serial correlation, thus one should use a robust location estimator with HAC: Croux et al. (2003). 37

38 Nov Returns vs Size LS & Robust Fits Full vertical range view 38

39 View with.1% vertical trimming 39

40 Percent Outliers Rejected Returns vs Size 40

41 Monthly Returns vs Size LS & Robust Fits The well-known January effect A not-so-well-known Q4 effect?? 41

42 What about the Common Return vs Size Wisdom? Returns decrease with firm size But: The opposite is true with robust location estimator weights for decile portfolio weights from time series of decile portfolios 42

43 Advice for Evaluating Factor Premia Tom Philips: Attempt to replicate the returns of a factor using publicly available indices, preferably ones that discard the bottom 5%-10% of the market s total capital. Such a replication allows the investigator to determine if a strategy is tradeable, and also real-time permits performance monitoring. 43

44 4. TWO MODELS NOT TREATED IN FF92 Returns vs Earnings-to-Price uncorrected = not corrected with Newey-West (should be done for classic t-test) Croux et al. = using Croux et al. (2003) correction for serial correlation N.B. Typically using a robust mean estimator and corresponding robust t-test will improve the power of the test with auto-correlation correction (AC), or even without AC 44

45 Slopes of Returns Regressed on E/P 45

46 Size-Beta Interaction Model With LS the only significant coefficient is interaction for 2 time periods, but Robust Regression coefficients are all highly significant for all 3 time periods. returns = β.4 SIZE +.51 β SIZE + noise SIZE = ln(me): (5, 6, 7, 8) = ($148M, $403M, $1.1B, $3.0B) 46

47 Conclusions Don t Depend on Choice of ρ and Efficiency 95%, 99% and 99.9% normal distribution efficiency Optimal and bisquare rho t-stats change but conclusions don t change! 47

48 5. USE IN FUNDAMENTAL FACTOR MODELS Axioma has responded to the need for robust regression in fundamental factor models. Outliers abound in returns and in factor exposures, more so in the latter than one may think Price paid for using LS is more volatile factor returns and crosssection correlation in residuals. The former can result in overstating the factor contribution to risks. The following two slides illustrate the last point. 48

49 Robust versus Classical Factor Returns Three factors: size, E/P, B/M, monthly returns Times Series of Factor Returns Classical Robust LOG.MARKET.CAP.MM EARN2PRICE BOOK2MARKET.MM Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q

50 Residuals Cross-Section Correlations Densities of residual correlations Classical Robust Density residual correlations 50

51 6. OPEN QUESTIONS & TAKE-AWAY Connection with low-vol anomaly? - Blitz & van Vliet, 20017, Baker et al., 2011) Outliers and Asness et al. (2015) Quality-Junk factor? Life-time and other properties of positive outliers? What is the full story about the negative beta relationship? Financially meaningful arguments for the size-beta interaction model? Main Take-Away: Empirical asset pricing studies can benefit considerably by using robust regression (and other robust statistics) as a complement to LS (and other classical statistics). Furthermore: Fundamental factor model construction for portfolio optimization and risk management could similarly benefit. 51

52 Appendix 1: lmrobdetmm() in RobStatTM MM use a highly robust initial estimator that consists of a fast first-step initial estimator, followed by secondstep initial S-estimator with lower efficiency but small maximum bias, and then uses a fast IRWLS to find the nearest local minimum to the M-estimator equation. det : Special fast deterministic first-step estimator due to Pena and Yohai (1999). Much better than previous resampling method. See MMYS Section Very important: A 99% normal distribution efficiency optimal bias robust regression has very small maximum bias over Tukey-Huber model distributions. 52

53 M-Estimator for Scale and S-Estimators M-scale estimator n i= 1 ( r ) σ 1 i n ρ = b Regression S-estimator: 1 n n i= 1 ρ ( r ) i x β σ i =.5 ˆ σ( β) βˆ = arg min β ˆ σ ( β) 53

54 Appendix 2. lmrobdetdcml() in RobStatTM For details, see Section of MMYS. Distance constrained maximum-likelihood (DCML) β ˆ 0 : a highly robust estimator, typically an MM - estimator βˆ = arg min L( β r,r,,r ) subject to d( βˆ, β) δ β 1 2 n 0 For linear regression with normal errors, DCML uses the Kullback-Leibler (KL) distance estimate: ˆ ˆ 1 ˆ = β β = β β V β βˆ VX X 2 ˆ σ 0 ( ) ˆ ( ) ˆ d KL,V ( 0, ) 0 X 0 robust estimate

55 The DCML optimization is: n i= 1 2 min ( ) subject to ( ˆ β ri β d β, β) δ Maronna and Yohai (2015) show that: KL,Vˆ 0 x 1. This leads to: βˆ = t βˆ + (1 t) βˆ LS 0 where t = min 1, δ ˆV X δ = δpn, = 0.3 p n 2. The DCML estimator is asymptotically fully efficient, and best finite-sample efficiency and MSE. 55

56 VHI data lmrobdetdcml() fit vs. lmrobdetmm() Modifying the code on slide 21 as shown below gives the results comparative lmrobdetmm() and lmrobdetdcml() results: > x=(retvhi[,2]-retvhi [,3])*100 > y=(retvhi[,1]-retvhi [,3])*100 > ctrl=lmrobdet.control(efficiency=0.99,family="optimal") > fit.dcml = lmrobdetdcml(y~x,control = ctrl) > fit.mm = lmrobdetmm(y~x,control = ctrl) > round(summary(fit.dcml)[9]$coefficients[2,1:2],3) Estimate Std. Error > round(summary(fit.mm)[9]$coefficients[2,1:2],3) Estimate Std. Error

Lecture 12 Robust Estimation

Lecture 12 Robust Estimation Lecture 12 Robust Estimation Prof. Dr. Svetlozar Rachev Institute for Statistics and Mathematical Economics University of Karlsruhe Financial Econometrics, Summer Semester 2007 Copyright These lecture-notes

More information

9. Robust regression

9. Robust regression 9. Robust regression Least squares regression........................................................ 2 Problems with LS regression..................................................... 3 Robust regression............................................................

More information

Copyright 2017 Christopher George Green

Copyright 2017 Christopher George Green Copyright 2017 Christopher George Green Applications of Robust Statistical Methods in Quantitative Finance Christopher George Green A dissertation submitted in partial fulfillment of the requirements for

More information

GMM - Generalized method of moments

GMM - Generalized method of moments GMM - Generalized method of moments GMM Intuition: Matching moments You want to estimate properties of a data set {x t } T t=1. You assume that x t has a constant mean and variance. x t (µ 0, σ 2 ) Consider

More information

Heteroscedasticity and Autocorrelation

Heteroscedasticity and Autocorrelation Heteroscedasticity and Autocorrelation Carlo Favero Favero () Heteroscedasticity and Autocorrelation 1 / 17 Heteroscedasticity, Autocorrelation, and the GLS estimator Let us reconsider the single equation

More information

Regression Analysis for Data Containing Outliers and High Leverage Points

Regression Analysis for Data Containing Outliers and High Leverage Points Alabama Journal of Mathematics 39 (2015) ISSN 2373-0404 Regression Analysis for Data Containing Outliers and High Leverage Points Asim Kumer Dey Department of Mathematics Lamar University Md. Amir Hossain

More information

Model Mis-specification

Model Mis-specification Model Mis-specification Carlo Favero Favero () Model Mis-specification 1 / 28 Model Mis-specification Each specification can be interpreted of the result of a reduction process, what happens if the reduction

More information

Definitions of ψ-functions Available in Robustbase

Definitions of ψ-functions Available in Robustbase Definitions of ψ-functions Available in Robustbase Manuel Koller and Martin Mächler July 18, 2018 Contents 1 Monotone ψ-functions 2 1.1 Huber.......................................... 3 2 Redescenders

More information

Introduction Robust regression Examples Conclusion. Robust regression. Jiří Franc

Introduction Robust regression Examples Conclusion. Robust regression. Jiří Franc Robust regression Robust estimation of regression coefficients in linear regression model Jiří Franc Czech Technical University Faculty of Nuclear Sciences and Physical Engineering Department of Mathematics

More information

Stat 5100 Handout #26: Variations on OLS Linear Regression (Ch. 11, 13)

Stat 5100 Handout #26: Variations on OLS Linear Regression (Ch. 11, 13) Stat 5100 Handout #26: Variations on OLS Linear Regression (Ch. 11, 13) 1. Weighted Least Squares (textbook 11.1) Recall regression model Y = β 0 + β 1 X 1 +... + β p 1 X p 1 + ε in matrix form: (Ch. 5,

More information

Computing Robust Regression Estimators: Developments since Dutter (1977)

Computing Robust Regression Estimators: Developments since Dutter (1977) AUSTRIAN JOURNAL OF STATISTICS Volume 41 (2012), Number 1, 45 58 Computing Robust Regression Estimators: Developments since Dutter (1977) Moritz Gschwandtner and Peter Filzmoser Vienna University of Technology,

More information

The Slow Convergence of OLS Estimators of α, β and Portfolio. β and Portfolio Weights under Long Memory Stochastic Volatility

The Slow Convergence of OLS Estimators of α, β and Portfolio. β and Portfolio Weights under Long Memory Stochastic Volatility The Slow Convergence of OLS Estimators of α, β and Portfolio Weights under Long Memory Stochastic Volatility New York University Stern School of Business June 21, 2018 Introduction Bivariate long memory

More information

A Guide to Modern Econometric:

A Guide to Modern Econometric: A Guide to Modern Econometric: 4th edition Marno Verbeek Rotterdam School of Management, Erasmus University, Rotterdam B 379887 )WILEY A John Wiley & Sons, Ltd., Publication Contents Preface xiii 1 Introduction

More information

Regression: Ordinary Least Squares

Regression: Ordinary Least Squares Regression: Ordinary Least Squares Mark Hendricks Autumn 2017 FINM Intro: Regression Outline Regression OLS Mathematics Linear Projection Hendricks, Autumn 2017 FINM Intro: Regression: Lecture 2/32 Regression

More information

ASSET PRICING MODELS

ASSET PRICING MODELS ASSE PRICING MODELS [1] CAPM (1) Some notation: R it = (gross) return on asset i at time t. R mt = (gross) return on the market portfolio at time t. R ft = return on risk-free asset at time t. X it = R

More information

Leverage effects on Robust Regression Estimators

Leverage effects on Robust Regression Estimators Leverage effects on Robust Regression Estimators David Adedia 1 Atinuke Adebanji 2 Simon Kojo Appiah 2 1. Department of Basic Sciences, School of Basic and Biomedical Sciences, University of Health and

More information

KANSAS STATE UNIVERSITY Manhattan, Kansas

KANSAS STATE UNIVERSITY Manhattan, Kansas ROBUST MIXTURE MODELING by CHUN YU M.S., Kansas State University, 2008 AN ABSTRACT OF A DISSERTATION submitted in partial fulfillment of the requirements for the degree Doctor of Philosophy Department

More information

Predictive Regression and Robust Hypothesis Testing: Predictability Hidden by Anomalous Observations

Predictive Regression and Robust Hypothesis Testing: Predictability Hidden by Anomalous Observations Predictive Regression and Robust Hypothesis Testing: Predictability Hidden by Anomalous Observations Fabio Trojani University of Lugano and Swiss Finance Institute fabio.trojani@usi.ch Joint work with

More information

Econometrics - 30C00200

Econometrics - 30C00200 Econometrics - 30C00200 Lecture 11: Heteroskedasticity Antti Saastamoinen VATT Institute for Economic Research Fall 2015 30C00200 Lecture 11: Heteroskedasticity 12.10.2015 Aalto University School of Business

More information

Indian Statistical Institute

Indian Statistical Institute Indian Statistical Institute Introductory Computer programming Robust Regression methods with high breakdown point Author: Roll No: MD1701 February 24, 2018 Contents 1 Introduction 2 2 Criteria for evaluating

More information

Financial Econometrics Return Predictability

Financial Econometrics Return Predictability Financial Econometrics Return Predictability Eric Zivot March 30, 2011 Lecture Outline Market Efficiency The Forms of the Random Walk Hypothesis Testing the Random Walk Hypothesis Reading FMUND, chapter

More information

Minimum Regularized Covariance Determinant Estimator

Minimum Regularized Covariance Determinant Estimator Minimum Regularized Covariance Determinant Estimator Honey, we shrunk the data and the covariance matrix Kris Boudt (joint with: P. Rousseeuw, S. Vanduffel and T. Verdonck) Vrije Universiteit Brussel/Amsterdam

More information

KANSAS STATE UNIVERSITY

KANSAS STATE UNIVERSITY ROBUST MIXTURES OF REGRESSION MODELS by XIUQIN BAI M.S., Kansas State University, USA, 2010 AN ABSTRACT OF A DISSERTATION submitted in partial fulfillment of the requirements for the degree DOCTOR OF PHILOSOPHY

More information

Robust high-dimensional linear regression: A statistical perspective

Robust high-dimensional linear regression: A statistical perspective Robust high-dimensional linear regression: A statistical perspective Po-Ling Loh University of Wisconsin - Madison Departments of ECE & Statistics STOC workshop on robustness and nonconvexity Montreal,

More information

R = µ + Bf Arbitrage Pricing Model, APM

R = µ + Bf Arbitrage Pricing Model, APM 4.2 Arbitrage Pricing Model, APM Empirical evidence indicates that the CAPM beta does not completely explain the cross section of expected asset returns. This suggests that additional factors may be required.

More information

Cross-Sectional Regression after Factor Analysis: Two Applications

Cross-Sectional Regression after Factor Analysis: Two Applications al Regression after Factor Analysis: Two Applications Joint work with Jingshu, Trevor, Art; Yang Song (GSB) May 7, 2016 Overview 1 2 3 4 1 / 27 Outline 1 2 3 4 2 / 27 Data matrix Y R n p Panel data. Transposable

More information

Heteroskedasticity. y i = β 0 + β 1 x 1i + β 2 x 2i β k x ki + e i. where E(e i. ) σ 2, non-constant variance.

Heteroskedasticity. y i = β 0 + β 1 x 1i + β 2 x 2i β k x ki + e i. where E(e i. ) σ 2, non-constant variance. Heteroskedasticity y i = β + β x i + β x i +... + β k x ki + e i where E(e i ) σ, non-constant variance. Common problem with samples over individuals. ê i e ˆi x k x k AREC-ECON 535 Lec F Suppose y i =

More information

Robust model selection criteria for robust S and LT S estimators

Robust model selection criteria for robust S and LT S estimators Hacettepe Journal of Mathematics and Statistics Volume 45 (1) (2016), 153 164 Robust model selection criteria for robust S and LT S estimators Meral Çetin Abstract Outliers and multi-collinearity often

More information

IMPROVING THE SMALL-SAMPLE EFFICIENCY OF A ROBUST CORRELATION MATRIX: A NOTE

IMPROVING THE SMALL-SAMPLE EFFICIENCY OF A ROBUST CORRELATION MATRIX: A NOTE IMPROVING THE SMALL-SAMPLE EFFICIENCY OF A ROBUST CORRELATION MATRIX: A NOTE Eric Blankmeyer Department of Finance and Economics McCoy College of Business Administration Texas State University San Marcos

More information

Robust control charts for time series data

Robust control charts for time series data Robust control charts for time series data Christophe Croux K.U. Leuven & Tilburg University Sarah Gelper Erasmus University Rotterdam Koen Mahieu K.U. Leuven Abstract This article presents a control chart

More information

Econometrics. 9) Heteroscedasticity and autocorrelation

Econometrics. 9) Heteroscedasticity and autocorrelation 30C00200 Econometrics 9) Heteroscedasticity and autocorrelation Timo Kuosmanen Professor, Ph.D. http://nomepre.net/index.php/timokuosmanen Today s topics Heteroscedasticity Possible causes Testing for

More information

The Bond Pricing Implications of Rating-Based Capital Requirements. Internet Appendix. This Version: December Abstract

The Bond Pricing Implications of Rating-Based Capital Requirements. Internet Appendix. This Version: December Abstract The Bond Pricing Implications of Rating-Based Capital Requirements Internet Appendix This Version: December 2017 Abstract This Internet Appendix examines the robustness of our main results and presents

More information

Regression Models - Introduction

Regression Models - Introduction Regression Models - Introduction In regression models there are two types of variables that are studied: A dependent variable, Y, also called response variable. It is modeled as random. An independent

More information

Introduction to Robust Statistics. Elvezio Ronchetti. Department of Econometrics University of Geneva Switzerland.

Introduction to Robust Statistics. Elvezio Ronchetti. Department of Econometrics University of Geneva Switzerland. Introduction to Robust Statistics Elvezio Ronchetti Department of Econometrics University of Geneva Switzerland Elvezio.Ronchetti@metri.unige.ch http://www.unige.ch/ses/metri/ronchetti/ 1 Outline Introduction

More information

A Comparison of Robust Estimators Based on Two Types of Trimming

A Comparison of Robust Estimators Based on Two Types of Trimming Submitted to the Bernoulli A Comparison of Robust Estimators Based on Two Types of Trimming SUBHRA SANKAR DHAR 1, and PROBAL CHAUDHURI 1, 1 Theoretical Statistics and Mathematics Unit, Indian Statistical

More information

Inference based on robust estimators Part 2

Inference based on robust estimators Part 2 Inference based on robust estimators Part 2 Matias Salibian-Barrera 1 Department of Statistics University of British Columbia ECARES - Dec 2007 Matias Salibian-Barrera (UBC) Robust inference (2) ECARES

More information

Bootstrap and Linear Regression Spring You should have downloaded studio12.zip and unzipped it into your working directory.

Bootstrap and Linear Regression Spring You should have downloaded studio12.zip and unzipped it into your working directory. Bootstrap and Linear Regression 18.05 Spring 2014 You should have downloaded studio12.zip and unzipped it into your 18.05 working directory. January 2, 2017 2 / 14 Review: Computing a bootstrap confidence

More information

Regression I: Mean Squared Error and Measuring Quality of Fit

Regression I: Mean Squared Error and Measuring Quality of Fit Regression I: Mean Squared Error and Measuring Quality of Fit -Applied Multivariate Analysis- Lecturer: Darren Homrighausen, PhD 1 The Setup Suppose there is a scientific problem we are interested in solving

More information

Forecasting the term structure interest rate of government bond yields

Forecasting the term structure interest rate of government bond yields Forecasting the term structure interest rate of government bond yields Bachelor Thesis Econometrics & Operational Research Joost van Esch (419617) Erasmus School of Economics, Erasmus University Rotterdam

More information

Time Series Models for Measuring Market Risk

Time Series Models for Measuring Market Risk Time Series Models for Measuring Market Risk José Miguel Hernández Lobato Universidad Autónoma de Madrid, Computer Science Department June 28, 2007 1/ 32 Outline 1 Introduction 2 Competitive and collaborative

More information

Financial Econometrics

Financial Econometrics Financial Econometrics Estimation and Inference Gerald P. Dwyer Trinity College, Dublin January 2013 Who am I? Visiting Professor and BB&T Scholar at Clemson University Federal Reserve Bank of Atlanta

More information

Empirical Market Microstructure Analysis (EMMA)

Empirical Market Microstructure Analysis (EMMA) Empirical Market Microstructure Analysis (EMMA) Lecture 3: Statistical Building Blocks and Econometric Basics Prof. Dr. Michael Stein michael.stein@vwl.uni-freiburg.de Albert-Ludwigs-University of Freiburg

More information

ROBUST ESTIMATION OF A CORRELATION COEFFICIENT: AN ATTEMPT OF SURVEY

ROBUST ESTIMATION OF A CORRELATION COEFFICIENT: AN ATTEMPT OF SURVEY ROBUST ESTIMATION OF A CORRELATION COEFFICIENT: AN ATTEMPT OF SURVEY G.L. Shevlyakov, P.O. Smirnov St. Petersburg State Polytechnic University St.Petersburg, RUSSIA E-mail: Georgy.Shevlyakov@gmail.com

More information

Backtesting Marginal Expected Shortfall and Related Systemic Risk Measures

Backtesting Marginal Expected Shortfall and Related Systemic Risk Measures Backtesting Marginal Expected Shortfall and Related Systemic Risk Measures Denisa Banulescu 1 Christophe Hurlin 1 Jérémy Leymarie 1 Olivier Scaillet 2 1 University of Orleans 2 University of Geneva & Swiss

More information

Financial Econometrics Short Course Lecture 3 Multifactor Pricing Model

Financial Econometrics Short Course Lecture 3 Multifactor Pricing Model Financial Econometrics Short Course Lecture 3 Multifactor Pricing Model Oliver Linton obl20@cam.ac.uk Renmin University Financial Econometrics Short Course Lecture 3 MultifactorRenmin Pricing University

More information

STATISTICS 110/201 PRACTICE FINAL EXAM

STATISTICS 110/201 PRACTICE FINAL EXAM STATISTICS 110/201 PRACTICE FINAL EXAM Questions 1 to 5: There is a downloadable Stata package that produces sequential sums of squares for regression. In other words, the SS is built up as each variable

More information

ISQS 5349 Final Exam, Spring 2017.

ISQS 5349 Final Exam, Spring 2017. ISQS 5349 Final Exam, Spring 7. Instructions: Put all answers on paper other than this exam. If you do not have paper, some will be provided to you. The exam is OPEN BOOKS, OPEN NOTES, but NO ELECTRONIC

More information

COMPARISON OF THE ESTIMATORS OF THE LOCATION AND SCALE PARAMETERS UNDER THE MIXTURE AND OUTLIER MODELS VIA SIMULATION

COMPARISON OF THE ESTIMATORS OF THE LOCATION AND SCALE PARAMETERS UNDER THE MIXTURE AND OUTLIER MODELS VIA SIMULATION (REFEREED RESEARCH) COMPARISON OF THE ESTIMATORS OF THE LOCATION AND SCALE PARAMETERS UNDER THE MIXTURE AND OUTLIER MODELS VIA SIMULATION Hakan S. Sazak 1, *, Hülya Yılmaz 2 1 Ege University, Department

More information

MS&E 226: Small Data. Lecture 11: Maximum likelihood (v2) Ramesh Johari

MS&E 226: Small Data. Lecture 11: Maximum likelihood (v2) Ramesh Johari MS&E 226: Small Data Lecture 11: Maximum likelihood (v2) Ramesh Johari ramesh.johari@stanford.edu 1 / 18 The likelihood function 2 / 18 Estimating the parameter This lecture develops the methodology behind

More information

Forecasting Seasonal Time Series 1. Introduction. Philip Hans Franses Econometric Institute Erasmus University Rotterdam

Forecasting Seasonal Time Series 1. Introduction. Philip Hans Franses Econometric Institute Erasmus University Rotterdam Forecasting Seasonal Time Series 1. Introduction Philip Hans Franses Econometric Institute Erasmus University Rotterdam SMU and NUS, Singapore, April-May 2004 1 Outline of tutorial lectures 1 Introduction

More information

Unit 10: Simple Linear Regression and Correlation

Unit 10: Simple Linear Regression and Correlation Unit 10: Simple Linear Regression and Correlation Statistics 571: Statistical Methods Ramón V. León 6/28/2004 Unit 10 - Stat 571 - Ramón V. León 1 Introductory Remarks Regression analysis is a method for

More information

Uniform Inference for Conditional Factor Models with Instrumental and Idiosyncratic Betas

Uniform Inference for Conditional Factor Models with Instrumental and Idiosyncratic Betas Uniform Inference for Conditional Factor Models with Instrumental and Idiosyncratic Betas Yuan Xiye Yang Rutgers University Dec 27 Greater NY Econometrics Overview main results Introduction Consider a

More information

Robust regression in Stata

Robust regression in Stata The Stata Journal (2009) 9, Number 3, pp. 439 453 Robust regression in Stata Vincenzo Verardi 1 University of Namur (CRED) and Université Libre de Bruxelles (ECARES and CKE) Rempart de la Vierge 8, B-5000

More information

Robust regression in R. Eva Cantoni

Robust regression in R. Eva Cantoni Robust regression in R Eva Cantoni Research Center for Statistics and Geneva School of Economics and Management, University of Geneva, Switzerland April 4th, 2017 1 Robust statistics philosopy 2 Robust

More information

Robust Variable Selection Through MAVE

Robust Variable Selection Through MAVE Robust Variable Selection Through MAVE Weixin Yao and Qin Wang Abstract Dimension reduction and variable selection play important roles in high dimensional data analysis. Wang and Yin (2008) proposed sparse

More information

Econometrics. Week 4. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague

Econometrics. Week 4. Fall Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Econometrics Week 4 Institute of Economic Studies Faculty of Social Sciences Charles University in Prague Fall 2012 1 / 23 Recommended Reading For the today Serial correlation and heteroskedasticity in

More information

Econ671 Factor Models: Principal Components

Econ671 Factor Models: Principal Components Econ671 Factor Models: Principal Components Jun YU April 8, 2016 Jun YU () Econ671 Factor Models: Principal Components April 8, 2016 1 / 59 Factor Models: Principal Components Learning Objectives 1. Show

More information

robust estimation and forecasting

robust estimation and forecasting Non-linear processes for electricity prices: robust estimation and forecasting Luigi Grossi and Fany Nan University of Verona Emails: luigi.grossi@univr.it and fany.nan@univr.it Abstract In this paper

More information

Robust Standard Errors for Robust Estimators

Robust Standard Errors for Robust Estimators Robust Standard Errors for Robust Estimators Christophe Croux K.U.Leuven Geert Dhaene K.U.Leuven Dirk Hoorelbeke K.U.Leuven Abstract A regression estimator is said to be robust if it is still reliable

More information

Gaussian Slug Simple Nonlinearity Enhancement to the 1-Factor and Gaussian Copula Models in Finance, with Parametric Estimation and Goodness-of-Fit

Gaussian Slug Simple Nonlinearity Enhancement to the 1-Factor and Gaussian Copula Models in Finance, with Parametric Estimation and Goodness-of-Fit Gaussian Slug Simple Nonlinearity Enhancement to the 1-Factor and Gaussian Copula Models in Finance, with Parametric Estimation and Goodness-of-Fit Tests on US and Thai Equity Data 22 nd Australasian Finance

More information

Influential Observations and Inference in Accounting Research

Influential Observations and Inference in Accounting Research Influential Observations and Inference in Accounting Research Andrew J. Leone University Miami Miguel Minutti-Meza University of Miami Charles Wasley University of Rochester Very Preliminary April 2012

More information

Quantile methods. Class Notes Manuel Arellano December 1, Let F (r) =Pr(Y r). Forτ (0, 1), theτth population quantile of Y is defined to be

Quantile methods. Class Notes Manuel Arellano December 1, Let F (r) =Pr(Y r). Forτ (0, 1), theτth population quantile of Y is defined to be Quantile methods Class Notes Manuel Arellano December 1, 2009 1 Unconditional quantiles Let F (r) =Pr(Y r). Forτ (0, 1), theτth population quantile of Y is defined to be Q τ (Y ) q τ F 1 (τ) =inf{r : F

More information

Linear Regression 9/23/17. Simple linear regression. Advertising sales: Variance changes based on # of TVs. Advertising sales: Normal error?

Linear Regression 9/23/17. Simple linear regression. Advertising sales: Variance changes based on # of TVs. Advertising sales: Normal error? Simple linear regression Linear Regression Nicole Beckage y " = β % + β ' x " + ε so y* " = β+ % + β+ ' x " Method to assess and evaluate the correlation between two (continuous) variables. The slope of

More information

Lecture 4: Heteroskedasticity

Lecture 4: Heteroskedasticity Lecture 4: Heteroskedasticity Econometric Methods Warsaw School of Economics (4) Heteroskedasticity 1 / 24 Outline 1 What is heteroskedasticity? 2 Testing for heteroskedasticity White Goldfeld-Quandt Breusch-Pagan

More information

Robust estimation of scale and covariance with P n and its application to precision matrix estimation

Robust estimation of scale and covariance with P n and its application to precision matrix estimation Robust estimation of scale and covariance with P n and its application to precision matrix estimation Garth Tarr, Samuel Müller and Neville Weber USYD 2013 School of Mathematics and Statistics THE UNIVERSITY

More information

Introduction to Linear regression analysis. Part 2. Model comparisons

Introduction to Linear regression analysis. Part 2. Model comparisons Introduction to Linear regression analysis Part Model comparisons 1 ANOVA for regression Total variation in Y SS Total = Variation explained by regression with X SS Regression + Residual variation SS Residual

More information

Economics 582 Random Effects Estimation

Economics 582 Random Effects Estimation Economics 582 Random Effects Estimation Eric Zivot May 29, 2013 Random Effects Model Hence, the model can be re-written as = x 0 β + + [x ] = 0 (no endogeneity) [ x ] = = + x 0 β + + [x ] = 0 [ x ] = 0

More information

Volatility. Gerald P. Dwyer. February Clemson University

Volatility. Gerald P. Dwyer. February Clemson University Volatility Gerald P. Dwyer Clemson University February 2016 Outline 1 Volatility Characteristics of Time Series Heteroskedasticity Simpler Estimation Strategies Exponentially Weighted Moving Average Use

More information

Econometrics of Panel Data

Econometrics of Panel Data Econometrics of Panel Data Jakub Mućk Meeting # 6 Jakub Mućk Econometrics of Panel Data Meeting # 6 1 / 36 Outline 1 The First-Difference (FD) estimator 2 Dynamic panel data models 3 The Anderson and Hsiao

More information

ECON2228 Notes 10. Christopher F Baum. Boston College Economics. cfb (BC Econ) ECON2228 Notes / 48

ECON2228 Notes 10. Christopher F Baum. Boston College Economics. cfb (BC Econ) ECON2228 Notes / 48 ECON2228 Notes 10 Christopher F Baum Boston College Economics 2014 2015 cfb (BC Econ) ECON2228 Notes 10 2014 2015 1 / 48 Serial correlation and heteroskedasticity in time series regressions Chapter 12:

More information

Predictive Regression and Robust Hypothesis Testing: Predictability Hidden by Anomalous Observations

Predictive Regression and Robust Hypothesis Testing: Predictability Hidden by Anomalous Observations Predictive Regression and Robust Hypothesis Testing: Predictability Hidden by Anomalous Observations Lorenzo Camponovo Olivier Scaillet Fabio Trojani Discussion by Grigory Vilkov 23-27 July 2012 European

More information

Simple Linear Regression

Simple Linear Regression Simple Linear Regression Christopher Ting Christopher Ting : christophert@smu.edu.sg : 688 0364 : LKCSB 5036 January 7, 017 Web Site: http://www.mysmu.edu/faculty/christophert/ Christopher Ting QF 30 Week

More information

Solutions to Problem Set 5 (Due December 4) Maximum number of points for Problem set 5 is: 62. Problem 9.C3

Solutions to Problem Set 5 (Due December 4) Maximum number of points for Problem set 5 is: 62. Problem 9.C3 Solutions to Problem Set 5 (Due December 4) EC 228 01, Fall 2013 Prof. Baum, Mr. Lim Maximum number of points for Problem set 5 is: 62 Problem 9.C3 (i) (1 pt) If the grants were awarded to firms based

More information

Introduction to Econometrics

Introduction to Econometrics Introduction to Econometrics STAT-S-301 Introduction to Time Series Regression and Forecasting (2016/2017) Lecturer: Yves Dominicy Teaching Assistant: Elise Petit 1 Introduction to Time Series Regression

More information

A Modified M-estimator for the Detection of Outliers

A Modified M-estimator for the Detection of Outliers A Modified M-estimator for the Detection of Outliers Asad Ali Department of Statistics, University of Peshawar NWFP, Pakistan Email: asad_yousafzay@yahoo.com Muhammad F. Qadir Department of Statistics,

More information

Financial Econometrics

Financial Econometrics Financial Econometrics Multivariate Time Series Analysis: VAR Gerald P. Dwyer Trinity College, Dublin January 2013 GPD (TCD) VAR 01/13 1 / 25 Structural equations Suppose have simultaneous system for supply

More information

Remedial Measures for Multiple Linear Regression Models

Remedial Measures for Multiple Linear Regression Models Remedial Measures for Multiple Linear Regression Models Yang Feng http://www.stat.columbia.edu/~yangfeng Yang Feng (Columbia University) Remedial Measures for Multiple Linear Regression Models 1 / 25 Outline

More information

Financial Econometrics Lecture 6: Testing the CAPM model

Financial Econometrics Lecture 6: Testing the CAPM model Financial Econometrics Lecture 6: Testing the CAPM model Richard G. Pierse 1 Introduction The capital asset pricing model has some strong implications which are testable. The restrictions that can be tested

More information

Practical High Breakdown Regression

Practical High Breakdown Regression Practical High Breakdown Regression David J. Olive and Douglas M. Hawkins Southern Illinois University and University of Minnesota February 8, 2011 Abstract This paper shows that practical high breakdown

More information

Multiple Regression Analysis

Multiple Regression Analysis 1 OUTLINE Analysis of Data and Model Hypothesis Testing Dummy Variables Research in Finance 2 ANALYSIS: Types of Data Time Series data Cross-Sectional data Panel data Trend Seasonal Variation Cyclical

More information

WEIGHTED LIKELIHOOD NEGATIVE BINOMIAL REGRESSION

WEIGHTED LIKELIHOOD NEGATIVE BINOMIAL REGRESSION WEIGHTED LIKELIHOOD NEGATIVE BINOMIAL REGRESSION Michael Amiguet 1, Alfio Marazzi 1, Victor Yohai 2 1 - University of Lausanne, Institute for Social and Preventive Medicine, Lausanne, Switzerland 2 - University

More information

Econ 423 Lecture Notes: Additional Topics in Time Series 1

Econ 423 Lecture Notes: Additional Topics in Time Series 1 Econ 423 Lecture Notes: Additional Topics in Time Series 1 John C. Chao April 25, 2017 1 These notes are based in large part on Chapter 16 of Stock and Watson (2011). They are for instructional purposes

More information

A Non-Parametric Approach of Heteroskedasticity Robust Estimation of Vector-Autoregressive (VAR) Models

A Non-Parametric Approach of Heteroskedasticity Robust Estimation of Vector-Autoregressive (VAR) Models Journal of Finance and Investment Analysis, vol.1, no.1, 2012, 55-67 ISSN: 2241-0988 (print version), 2241-0996 (online) International Scientific Press, 2012 A Non-Parametric Approach of Heteroskedasticity

More information

Stat 5102 Final Exam May 14, 2015

Stat 5102 Final Exam May 14, 2015 Stat 5102 Final Exam May 14, 2015 Name Student ID The exam is closed book and closed notes. You may use three 8 1 11 2 sheets of paper with formulas, etc. You may also use the handouts on brand name distributions

More information

7. Integrated Processes

7. Integrated Processes 7. Integrated Processes Up to now: Analysis of stationary processes (stationary ARMA(p, q) processes) Problem: Many economic time series exhibit non-stationary patterns over time 226 Example: We consider

More information

Deep Learning in Asset Pricing

Deep Learning in Asset Pricing Deep Learning in Asset Pricing Luyang Chen 1 Markus Pelger 1 Jason Zhu 1 1 Stanford University November 17th 2018 Western Mathematical Finance Conference 2018 Motivation Hype: Machine Learning in Investment

More information

Linear Regression In God we trust, all others bring data. William Edwards Deming

Linear Regression In God we trust, all others bring data. William Edwards Deming Linear Regression ddebarr@uw.edu 2017-01-19 In God we trust, all others bring data. William Edwards Deming Course Outline 1. Introduction to Statistical Learning 2. Linear Regression 3. Classification

More information

Inference in Regression Analysis

Inference in Regression Analysis ECNS 561 Inference Inference in Regression Analysis Up to this point 1.) OLS is unbiased 2.) OLS is BLUE (best linear unbiased estimator i.e., the variance is smallest among linear unbiased estimators)

More information

FNCE 926 Empirical Methods in CF

FNCE 926 Empirical Methods in CF FNCE 926 Empirical Methods in CF Lecture 2 Linear Regression II Professor Todd Gormley Today's Agenda n Quick review n Finish discussion of linear regression q Hypothesis testing n n Standard errors Robustness,

More information

A new test on the conditional capital asset pricing model

A new test on the conditional capital asset pricing model Appl. Math. J. Chinese Univ. 2015, 30(2): 163-186 A new test on the conditional capital asset pricing model LI Xia-fei 1 CAI Zong-wu 2,1 REN Yu 1, Abstract. Testing the validity of the conditional capital

More information

Chapter 11: Robust & Quantile regression

Chapter 11: Robust & Quantile regression Chapter 11: Robust & Adapted from Timothy Hanson Department of Statistics, University of South Carolina Stat 704: Data Analysis I 1 / 13 11.3: Robust regression Leverages h ii and deleted residuals t i

More information

Half-Day 1: Introduction to Robust Estimation Techniques

Half-Day 1: Introduction to Robust Estimation Techniques Zurich University of Applied Sciences School of Engineering IDP Institute of Data Analysis and Process Design Half-Day 1: Introduction to Robust Estimation Techniques Andreas Ruckstuhl Institut fr Datenanalyse

More information

Estimating Global Bank Network Connectedness

Estimating Global Bank Network Connectedness Estimating Global Bank Network Connectedness Mert Demirer (MIT) Francis X. Diebold (Penn) Laura Liu (Penn) Kamil Yılmaz (Koç) September 22, 2016 1 / 27 Financial and Macroeconomic Connectedness Market

More information

Estimating σ 2. We can do simple prediction of Y and estimation of the mean of Y at any value of X.

Estimating σ 2. We can do simple prediction of Y and estimation of the mean of Y at any value of X. Estimating σ 2 We can do simple prediction of Y and estimation of the mean of Y at any value of X. To perform inferences about our regression line, we must estimate σ 2, the variance of the error term.

More information

Christopher Dougherty London School of Economics and Political Science

Christopher Dougherty London School of Economics and Political Science Introduction to Econometrics FIFTH EDITION Christopher Dougherty London School of Economics and Political Science OXFORD UNIVERSITY PRESS Contents INTRODU CTION 1 Why study econometrics? 1 Aim of this

More information

Outline. Nature of the Problem. Nature of the Problem. Basic Econometrics in Transportation. Autocorrelation

Outline. Nature of the Problem. Nature of the Problem. Basic Econometrics in Transportation. Autocorrelation 1/30 Outline Basic Econometrics in Transportation Autocorrelation Amir Samimi What is the nature of autocorrelation? What are the theoretical and practical consequences of autocorrelation? Since the assumption

More information

Lecture Notes in Empirical Finance (PhD): Linear Factor Models

Lecture Notes in Empirical Finance (PhD): Linear Factor Models Contents Lecture Notes in Empirical Finance (PhD): Linear Factor Models Paul Söderlind 8 June 26 University of St Gallen Address: s/bf-hsg, Rosenbergstrasse 52, CH-9 St Gallen, Switzerland E-mail: PaulSoderlind@unisgch

More information

GMM and SMM. 1. Hansen, L Large Sample Properties of Generalized Method of Moments Estimators, Econometrica, 50, p

GMM and SMM. 1. Hansen, L Large Sample Properties of Generalized Method of Moments Estimators, Econometrica, 50, p GMM and SMM Some useful references: 1. Hansen, L. 1982. Large Sample Properties of Generalized Method of Moments Estimators, Econometrica, 50, p. 1029-54. 2. Lee, B.S. and B. Ingram. 1991 Simulation estimation

More information

7. Integrated Processes

7. Integrated Processes 7. Integrated Processes Up to now: Analysis of stationary processes (stationary ARMA(p, q) processes) Problem: Many economic time series exhibit non-stationary patterns over time 226 Example: We consider

More information

Nonparametric Methods

Nonparametric Methods Nonparametric Methods Michael R. Roberts Department of Finance The Wharton School University of Pennsylvania July 28, 2009 Michael R. Roberts Nonparametric Methods 1/42 Overview Great for data analysis

More information