Five Things You Should Know About Quantile Regression

Size: px
Start display at page:

Download "Five Things You Should Know About Quantile Regression"

Transcription

1 Five Things You Should Know About Quantile Regression Robert N. Rodriguez and Yonggang Yao SAS Institute #analyticsx Copyright 2016, SAS Institute Inc. All rights reserved.

2 Quantile regression brings the familiar concept of a percentile into the framework of linear models Goal Interpretability and accurate prediction y i = β 0 + β 1 x i1 + + β p x ip + ε i, i = 1,, n Outline Basic concepts Fitting and building quantile regression models Application to business performance ranking Application to risk management

3 Basic Concepts of Quantile Regression

4 How do you fit a predictive model when your data look like this?

5 How do you fit a predictive model when your data look like this?

6 Standard linear regression assumes a constant variance, which is often not the case

7 and applying a log transformation does not often stabilize the variance

8 Regression models for percentiles capture the entire conditional distribution 90 th percentile 50 th percentile 10 th percentile

9 The term quantile is used in place of percentile, but it has the same meaning 0.9 quantile 0.5 quantile 0.1 quantile

10 and the Greek symbol τ is used for the probability level associated with the quantile 0.9 quantile (τ=0.9) 0.5 quantile (τ=0.5) 0.1 quantile (τ=0.1)

11 How does quantile regression compare with standard linear regression? Linear Regression Predicts conditional mean Applies with limited n Assumes normality Is sensitive to outliers Is computationally inexpensive Quantile Regression Predicts conditional distribution Needs sufficient data in tails Is distribution agnostic Is robust to outliers Is computationally intensive

12 Fitting Quantile Regression Models

13 The coefficient estimates for standard regression minimize a sum of squares The regression model for the average response is E(y i ) = β 0 + β 1 x i1 + + β p x ip, i = 1,, n and the β j s are estimated as arg min β 0,,β p n i=1 y i β 0 p j=1 x ij β j 2

14 In contrast, the coefficient estimates for quantile regression minimize a sum of check losses The regression model for the τ-th quantile of the response is Q τ (y i ) = β 0 (τ) + β 1 (τ)x i1 + + β p (τ)x ip, i = 1,, n and the β j τ s are estimated as arg min β 0,, β p n i=1 ρ τ y i β 0 p j=1 x ij β j where ρ τ (r) = τ max(0, r) + (1 τ) max(0, r) For each quantile level τ, there is a distinct set of regression coefficients.

15 The QUANTREG procedure fits quantile regression models and performs statistical inference Example Modeling the 10 th, 50 th, and 90 th percentiles of customer lifetime value Goal Target customers with low, medium, and high value after adjusting for 15 covariates such as Maximum balance Average overdraft Total credit card amount used proc quantreg data=clv ci=sparsity; model CLV = X1-X15 / quantile = ; run;

16 Quantile regression produces a distinct set of parameter estimates and predictions for each quantile level 10 th Percentile 90 th Percentile

17 The QUANTREG procedure provides extensive features for statistical inference Simplex, interior point, and smooth algorithms for estimation Sparsity and bootstrap resampling methods for confidence limits Wald, likelihood ratio, and rank-score tests Quantile process regression, which fits a model for all values of τ in (0,1)

18 Quantile process plots display the effects of predictors on different parts of the response distribution X15 positively affects the upper tail of the distribution

19 Quantile process plots display the effects of predictors on different parts of the response distribution X5 positively affects the lower tail of the distribution

20 Paneled process plots help you identify which predictors are associated with different parts of the response distribution

21 Building Quantile Regression Models

22 Example: Which variables differentiate high-performing stores from low-performing stores? Response: close rate for 500 stores Candidate predictors Store descriptors (X1 X20) Promotion (P1 P6) Layout (L1 L6) Approach 1. Build parsimonious regression models for the 10 th, 50 th, 90 th percentiles 2. Compare the variables selected for each model

23 The QUANTSELECT procedure selects effects in quantile regression models Features Provides forward, backward, stepwise, and lasso selection methods Provides extensive control over the selection Builds models for specified quantiles or the entire quantile process proc quantselect data=store plots=coefficients; model Close_Rate = X1-X20 L1-L6 P1-P6 / quantile= selection=lasso(sh=3); partition fraction(validate=0.3); run;

24 Coefficient progression plots show how the model fit evolves during variable selection

25 The layout variables L2, L3, and L5 are selected only in the model for the 90 th percentile of close rates 10 th Percentile 50 th Percentile 90 th Percentile

26 Quantile regression gives you insights that would be difficult to obtain with standard regression methods P2 positively affects the lower half of the close rate distribution

27 The QUANTSELECT procedure is a versatile tool for model building Models can contain main effects consisting of continuous and classification variables, and their interactions. Models can contain constructed effects, such as splines. Each level of a CLASS variable can be treated as an individual effect. Data can be partitioned to avoid overfitting. Syntax and functionality resemble those of the GLMSELECT procedure.

28 Application to Business Performance Ranking

29 You can rank observations according to their percentile levels by using quantile regression to adjust for covariates Quantile regression can predict the conditional quantiles of a response distribution for a grid of quantile levels. From the predicted quantiles, you can compute the quantile (percentile) levels for specified observations. This works because the quantile and cumulative distribution functions are inverses of each other.

30 How do you rank the weekly sales for different stores, after adjusting for advertising cost? Yao (2015)

31 Where do Stores 1, 1001, and 2001 fall within the distributions of stores with the same advertising costs?

32 What are the quantile levels of Stores 1, 1001, and 2001 within the distributions of stores with the same advertising costs?

33 You can estimate the conditional distributions using quantile regression

34 Begin by predicting the conditional quantiles of sales for a fine grid of quantile levels

35 Note that the conditional distributions of sales have different shapes, which depend on advertising cost

36 The distribution functions of sales for specified advertising costs can be computed from the predicted quantiles

37 You can obtain the quantile levels (ranks) for the three stores from the distributions for stores with their costs

38 You can obtain the quantile levels (ranks) for the three stores from the distributions for stores with their costs

39 How do the three stores rank before and after accounting for advertising cost?

40 Application to Risk Management

41 Quantile regression provides a robust approach for estimating value at risk (VaR) VaR measures market risk by how much a portfolio can lose within a given time period, for a confidence level (1 τ ) VaR is a conditional quantile of future portfolio values Pr[ y t < -VaR t = Ω t ] = τ where Ω t is the information at time t, and {y t } is the series of portfolio returns Methods for measuring VaR include GARCH models, which estimate the volatility of the portfolio and assume normality for financial returns

42 Example: weekly return rates of the S&P 500 Index

43 You can use PROC VARMAX to predict VaR with a GARCH(1,1) model, which assumes normality

44 Alternatively, you can use PROC QUANTREG to predict VaR by conditioning on lagged standard errors estimated by PROC VARMAX proc varmax data=sp500; model Rate / p=1; garch form=ccc subform=garch q=6; output out=stderr lead=1; id date interval=week; run; proc quantreg data=stderr; model Rate = std1-std7 / quantile=0.05; output out=qr p=var; id date; run; Xiao, Guo, and Lam (2015)

45 Quantile regression offers robustness in situations where market returns display negative skewness and excess kurtosis Xiao, Guo, and Lam (2015)

46 Wrap-Up

47 Five things you should remember about quantile regression 1. Quantile regression gives a complete picture of the conditional response distribution if there is sufficient data in the tails. 2. The QUANTREG and QUANTSELECT procedures provide versatile tools for fitting and building quantile regression models. 3. Quantile process plots reveal effects of predictors on different parts of the response distribution. 4. Quantile regression ranks observations by estimating their conditional percentile levels. 5. Quantile regression yields major insights when the most valuable information lies in the tails.

48 Learn more at Sign up for e-newsletter Watch short videos Download overview papers

49 Five Things You Should Know About Quantile Regression Robert N. Rodriguez and Yonggang Yao SAS Institute #analyticsx Copyright 2016, SAS Institute Inc. All rights reserved.

Quantile Regression. By Luyang Fu, Ph. D., FCAS, State Auto Insurance Company Cheng-sheng Peter Wu, FCAS, ASA, MAAA, Deloitte Consulting

Quantile Regression. By Luyang Fu, Ph. D., FCAS, State Auto Insurance Company Cheng-sheng Peter Wu, FCAS, ASA, MAAA, Deloitte Consulting Quantile Regression By Luyang Fu, Ph. D., FCAS, State Auto Insurance Company Cheng-sheng Peter Wu, FCAS, ASA, MAAA, Deloitte Consulting Agenda Overview of Predictive Modeling for P&C Applications Quantile

More information

Window Width Selection for L 2 Adjusted Quantile Regression

Window Width Selection for L 2 Adjusted Quantile Regression Window Width Selection for L 2 Adjusted Quantile Regression Yoonsuh Jung, The Ohio State University Steven N. MacEachern, The Ohio State University Yoonkyung Lee, The Ohio State University Technical Report

More information

WC-5 Just How Credible Is That Employer? Exploring GLMs and Multilevel Modeling for NCCI s Excess Loss Factor Methodology

WC-5 Just How Credible Is That Employer? Exploring GLMs and Multilevel Modeling for NCCI s Excess Loss Factor Methodology Antitrust Notice The Casualty Actuarial Society is committed to adhering strictly to the letter and spirit of the antitrust laws. Seminars conducted under the auspices of the CAS are designed solely to

More information

Environmental samples below the limits of detection comparing regression methods to predict environmental concentrations ABSTRACT INTRODUCTION

Environmental samples below the limits of detection comparing regression methods to predict environmental concentrations ABSTRACT INTRODUCTION Environmental samples below the limits of detection comparing regression methods to predict environmental concentrations Daniel Smith, Elana Silver, Martha Harnly Environmental Health Investigations Branch,

More information

Wage Determinants Analysis by Quantile Regression Tree

Wage Determinants Analysis by Quantile Regression Tree Communications of the Korean Statistical Society 2012, Vol. 19, No. 2, 293 301 DOI: http://dx.doi.org/10.5351/ckss.2012.19.2.293 Wage Determinants Analysis by Quantile Regression Tree Youngjae Chang 1,a

More information

Statistics and Finance

Statistics and Finance David Ruppert Statistics and Finance An Introduction Springer Notation... xxi 1 Introduction... 1 1.1 References... 5 2 Probability and Statistical Models... 7 2.1 Introduction... 7 2.2 Axioms of Probability...

More information

Statistical Case Estimation Modelling

Statistical Case Estimation Modelling Statistical Case Estimation Modelling - An Overview of the NSW WorkCover Model Presented by Richard Brookes and Mitchell Prevett Presented to the Institute of Actuaries of Australia Accident Compensation

More information

Model Construction & Forecast Based Portfolio Allocation:

Model Construction & Forecast Based Portfolio Allocation: QBUS6830 Financial Time Series and Forecasting Model Construction & Forecast Based Portfolio Allocation: Is Quantitative Method Worth It? Members: Bowei Li (303083) Wenjian Xu (308077237) Xiaoyun Lu (3295347)

More information

Topic 8: Model Diagnostics

Topic 8: Model Diagnostics Topic 8: Model Diagnostics Outline Diagnostics to check model assumptions Diagnostics concerning X Diagnostics using the residuals Diagnostics and remedial measures Diagnostics: look at the data to diagnose

More information

Quantile Regression due to Skewness. and Outliers

Quantile Regression due to Skewness. and Outliers Applied Mathematical Sciences, Vol. 5, 2011, no. 39, 1947-1951 Quantile Regression due to Skewness and Outliers Neda Jalali and Manoochehr Babanezhad Department of Statistics Faculty of Sciences Golestan

More information

Subject CS1 Actuarial Statistics 1 Core Principles. Syllabus. for the 2019 exams. 1 June 2018

Subject CS1 Actuarial Statistics 1 Core Principles. Syllabus. for the 2019 exams. 1 June 2018 ` Subject CS1 Actuarial Statistics 1 Core Principles Syllabus for the 2019 exams 1 June 2018 Copyright in this Core Reading is the property of the Institute and Faculty of Actuaries who are the sole distributors.

More information

Financial Econometrics Jeffrey R. Russell. Midterm 2014 Suggested Solutions. TA: B. B. Deng

Financial Econometrics Jeffrey R. Russell. Midterm 2014 Suggested Solutions. TA: B. B. Deng Financial Econometrics Jeffrey R. Russell Midterm 2014 Suggested Solutions TA: B. B. Deng Unless otherwise stated, e t is iid N(0,s 2 ) 1. (12 points) Consider the three series y1, y2, y3, and y4. Match

More information

Financial Time Series Analysis (FTSA)

Financial Time Series Analysis (FTSA) Financial Time Series Analysis (FTSA) Lecture 6: Conditional Heteroscedastic Models Few models are capable of generating the type of ARCH one sees in the data.... Most of these studies are best summarized

More information

To be two or not be two, that is a LOGISTIC question

To be two or not be two, that is a LOGISTIC question MWSUG 2016 - Paper AA18 To be two or not be two, that is a LOGISTIC question Robert G. Downer, Grand Valley State University, Allendale, MI ABSTRACT A binary response is very common in logistic regression

More information

Analyzing Oil Futures with a Dynamic Nelson-Siegel Model

Analyzing Oil Futures with a Dynamic Nelson-Siegel Model Analyzing Oil Futures with a Dynamic Nelson-Siegel Model NIELS STRANGE HANSEN & ASGER LUNDE DEPARTMENT OF ECONOMICS AND BUSINESS, BUSINESS AND SOCIAL SCIENCES, AARHUS UNIVERSITY AND CENTER FOR RESEARCH

More information

Quantile Regression in Survival Analysis

Quantile Regression in Survival Analysis Quantile Regression in Survival Analysis Andrea Bellavia Unit of Biostatistics, Institute of Environmental Medicine Karolinska Institutet, Stockholm http://www.imm.ki.se/biostatistics andrea.bellavia@ki.se

More information

Lasso and Ridge Quantile Regression using Cross Validation to Estimate Extreme Rainfall

Lasso and Ridge Quantile Regression using Cross Validation to Estimate Extreme Rainfall Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 12, Number 3 (2016), pp. 3305 3314 Research India Publications http://www.ripublication.com/gjpam.htm Lasso and Ridge Quantile Regression

More information

The Great Moderation Flattens Fat Tails: Disappearing Leptokurtosis

The Great Moderation Flattens Fat Tails: Disappearing Leptokurtosis The Great Moderation Flattens Fat Tails: Disappearing Leptokurtosis WenShwo Fang Department of Economics Feng Chia University 100 WenHwa Road, Taichung, TAIWAN Stephen M. Miller* College of Business University

More information

Models of Patterns. Lecture 3, SMMD 2005 Bob Stine

Models of Patterns. Lecture 3, SMMD 2005 Bob Stine Models of Patterns Lecture 3, SMMD 2005 Bob Stine Review Speculative investing and portfolios Risk and variance Volatility adjusted return Volatility drag Dependence Covariance Review Example Stock and

More information

Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing

Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing C. Olivia Rud, President, OptiMine Consulting, West Chester, PA ABSTRACT Data Mining is a new term for the

More information

Small Sample Performance of Instrumental Variables Probit Estimators: A Monte Carlo Investigation

Small Sample Performance of Instrumental Variables Probit Estimators: A Monte Carlo Investigation Small Sample Performance of Instrumental Variables Probit : A Monte Carlo Investigation July 31, 2008 LIML Newey Small Sample Performance? Goals Equations Regressors and Errors Parameters Reduced Form

More information

9. Logit and Probit Models For Dichotomous Data

9. Logit and Probit Models For Dichotomous Data Sociology 740 John Fox Lecture Notes 9. Logit and Probit Models For Dichotomous Data Copyright 2014 by John Fox Logit and Probit Models for Dichotomous Responses 1 1. Goals: I To show how models similar

More information

Multiple Regression. Review of Regression with One Predictor

Multiple Regression. Review of Regression with One Predictor Fall Semester, 2001 Statistics 621 Lecture 4 Robert Stine 1 Preliminaries Multiple Regression Grading on this and other assignments Assignment will get placed in folder of first member of Learning Team.

More information

The Comovements Along the Term Structure of Oil Forwards in Periods of High and Low Volatility: How Tight Are They?

The Comovements Along the Term Structure of Oil Forwards in Periods of High and Low Volatility: How Tight Are They? The Comovements Along the Term Structure of Oil Forwards in Periods of High and Low Volatility: How Tight Are They? Massimiliano Marzo and Paolo Zagaglia This version: January 6, 29 Preliminary: comments

More information

Analysis of Variance in Matrix form

Analysis of Variance in Matrix form Analysis of Variance in Matrix form The ANOVA table sums of squares, SSTO, SSR and SSE can all be expressed in matrix form as follows. week 9 Multiple Regression A multiple regression model is a model

More information

Maximum Likelihood Estimation

Maximum Likelihood Estimation Maximum Likelihood Estimation EPSY 905: Fundamentals of Multivariate Modeling Online Lecture #6 EPSY 905: Maximum Likelihood In This Lecture The basics of maximum likelihood estimation Ø The engine that

More information

Empirical Asset Pricing for Tactical Asset Allocation

Empirical Asset Pricing for Tactical Asset Allocation Introduction Process Model Conclusion Department of Finance The University of Connecticut School of Business stephen.r.rush@gmail.com May 10, 2012 Background Portfolio Managers Want to justify fees with

More information

Lecture 8: Markov and Regime

Lecture 8: Markov and Regime Lecture 8: Markov and Regime Switching Models Prof. Massimo Guidolin 20192 Financial Econometrics Spring 2016 Overview Motivation Deterministic vs. Endogeneous, Stochastic Switching Dummy Regressiom Switching

More information

Cross-Sectional Distribution of GARCH Coefficients across S&P 500 Constituents : Time-Variation over the Period

Cross-Sectional Distribution of GARCH Coefficients across S&P 500 Constituents : Time-Variation over the Period Cahier de recherche/working Paper 13-13 Cross-Sectional Distribution of GARCH Coefficients across S&P 500 Constituents : Time-Variation over the Period 2000-2012 David Ardia Lennart F. Hoogerheide Mai/May

More information

Chapter 6 Part 3 October 21, Bootstrapping

Chapter 6 Part 3 October 21, Bootstrapping Chapter 6 Part 3 October 21, 2008 Bootstrapping From the internet: The bootstrap involves repeated re-estimation of a parameter using random samples with replacement from the original data. Because the

More information

Hierarchical Generalized Linear Models. Measurement Incorporated Hierarchical Linear Models Workshop

Hierarchical Generalized Linear Models. Measurement Incorporated Hierarchical Linear Models Workshop Hierarchical Generalized Linear Models Measurement Incorporated Hierarchical Linear Models Workshop Hierarchical Generalized Linear Models So now we are moving on to the more advanced type topics. To begin

More information

Midterm Exam. b. What are the continuously compounded returns for the two stocks?

Midterm Exam. b. What are the continuously compounded returns for the two stocks? University of Washington Fall 004 Department of Economics Eric Zivot Economics 483 Midterm Exam This is a closed book and closed note exam. However, you are allowed one page of notes (double-sided). Answer

More information

Quantile regression with PROC QUANTREG Peter L. Flom, Peter Flom Consulting, New York, NY

Quantile regression with PROC QUANTREG Peter L. Flom, Peter Flom Consulting, New York, NY ABSTRACT Quantile regression with PROC QUANTREG Peter L. Flom, Peter Flom Consulting, New York, NY In ordinary least squares (OLS) regression, we model the conditional mean of the response or dependent

More information

Lecture 9: Markov and Regime

Lecture 9: Markov and Regime Lecture 9: Markov and Regime Switching Models Prof. Massimo Guidolin 20192 Financial Econometrics Spring 2017 Overview Motivation Deterministic vs. Endogeneous, Stochastic Switching Dummy Regressiom Switching

More information

Lecture notes on risk management, public policy, and the financial system. Credit portfolios. Allan M. Malz. Columbia University

Lecture notes on risk management, public policy, and the financial system. Credit portfolios. Allan M. Malz. Columbia University Lecture notes on risk management, public policy, and the financial system Allan M. Malz Columbia University 2018 Allan M. Malz Last updated: June 8, 2018 2 / 23 Outline Overview of credit portfolio risk

More information

Internet Appendix for Asymmetry in Stock Comovements: An Entropy Approach

Internet Appendix for Asymmetry in Stock Comovements: An Entropy Approach Internet Appendix for Asymmetry in Stock Comovements: An Entropy Approach Lei Jiang Tsinghua University Ke Wu Renmin University of China Guofu Zhou Washington University in St. Louis August 2017 Jiang,

More information

Two Hours. Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER. 22 January :00 16:00

Two Hours. Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER. 22 January :00 16:00 Two Hours MATH38191 Mathematical formula books and statistical tables are to be provided THE UNIVERSITY OF MANCHESTER STATISTICAL MODELLING IN FINANCE 22 January 2015 14:00 16:00 Answer ALL TWO questions

More information

Regression Review and Robust Regression. Slides prepared by Elizabeth Newton (MIT)

Regression Review and Robust Regression. Slides prepared by Elizabeth Newton (MIT) Regression Review and Robust Regression Slides prepared by Elizabeth Newton (MIT) S-Plus Oil City Data Frame Monthly Excess Returns of Oil City Petroleum, Inc. Stocks and the Market SUMMARY: The oilcity

More information

Numerical Descriptions of Data

Numerical Descriptions of Data Numerical Descriptions of Data Measures of Center Mean x = x i n Excel: = average ( ) Weighted mean x = (x i w i ) w i x = data values x i = i th data value w i = weight of the i th data value Median =

More information

ก ก ก ก ก ก ก. ก (Food Safety Risk Assessment Workshop) 1 : Fundamental ( ก ( NAC 2010)) 2 3 : Excel and Statistics Simulation Software\

ก ก ก ก ก ก ก. ก (Food Safety Risk Assessment Workshop) 1 : Fundamental ( ก ( NAC 2010)) 2 3 : Excel and Statistics Simulation Software\ ก ก ก ก (Food Safety Risk Assessment Workshop) ก ก ก ก ก ก ก ก 5 1 : Fundamental ( ก 29-30.. 53 ( NAC 2010)) 2 3 : Excel and Statistics Simulation Software\ 1 4 2553 4 5 : Quantitative Risk Modeling Microbial

More information

SAS Simple Linear Regression Example

SAS Simple Linear Regression Example SAS Simple Linear Regression Example This handout gives examples of how to use SAS to generate a simple linear regression plot, check the correlation between two variables, fit a simple linear regression

More information

Stat 328, Summer 2005

Stat 328, Summer 2005 Stat 328, Summer 2005 Exam #2, 6/18/05 Name (print) UnivID I have neither given nor received any unauthorized aid in completing this exam. Signed Answer each question completely showing your work where

More information

PARAMETRIC AND NON-PARAMETRIC BOOTSTRAP: A SIMULATION STUDY FOR A LINEAR REGRESSION WITH RESIDUALS FROM A MIXTURE OF LAPLACE DISTRIBUTIONS

PARAMETRIC AND NON-PARAMETRIC BOOTSTRAP: A SIMULATION STUDY FOR A LINEAR REGRESSION WITH RESIDUALS FROM A MIXTURE OF LAPLACE DISTRIBUTIONS PARAMETRIC AND NON-PARAMETRIC BOOTSTRAP: A SIMULATION STUDY FOR A LINEAR REGRESSION WITH RESIDUALS FROM A MIXTURE OF LAPLACE DISTRIBUTIONS Melfi Alrasheedi School of Business, King Faisal University, Saudi

More information

Are Market Neutral Hedge Funds Really Market Neutral?

Are Market Neutral Hedge Funds Really Market Neutral? Are Market Neutral Hedge Funds Really Market Neutral? Andrew Patton London School of Economics June 2005 1 Background The hedge fund industry has grown from about $50 billion in 1990 to $1 trillion in

More information

Gamma Distribution Fitting

Gamma Distribution Fitting Chapter 552 Gamma Distribution Fitting Introduction This module fits the gamma probability distributions to a complete or censored set of individual or grouped data values. It outputs various statistics

More information

Lecture 5a: ARCH Models

Lecture 5a: ARCH Models Lecture 5a: ARCH Models 1 2 Big Picture 1. We use ARMA model for the conditional mean 2. We use ARCH model for the conditional variance 3. ARMA and ARCH model can be used together to describe both conditional

More information

Jaime Frade Dr. Niu Interest rate modeling

Jaime Frade Dr. Niu Interest rate modeling Interest rate modeling Abstract In this paper, three models were used to forecast short term interest rates for the 3 month LIBOR. Each of the models, regression time series, GARCH, and Cox, Ingersoll,

More information

EVA Tutorial #1 BLOCK MAXIMA APPROACH IN HYDROLOGIC/CLIMATE APPLICATIONS. Rick Katz

EVA Tutorial #1 BLOCK MAXIMA APPROACH IN HYDROLOGIC/CLIMATE APPLICATIONS. Rick Katz 1 EVA Tutorial #1 BLOCK MAXIMA APPROACH IN HYDROLOGIC/CLIMATE APPLICATIONS Rick Katz Institute for Mathematics Applied to Geosciences National Center for Atmospheric Research Boulder, CO USA email: rwk@ucar.edu

More information

GARCH Models. Instructor: G. William Schwert

GARCH Models. Instructor: G. William Schwert APS 425 Fall 2015 GARCH Models Instructor: G. William Schwert 585-275-2470 schwert@schwert.ssb.rochester.edu Autocorrelated Heteroskedasticity Suppose you have regression residuals Mean = 0, not autocorrelated

More information

Bayesian Multinomial Model for Ordinal Data

Bayesian Multinomial Model for Ordinal Data Bayesian Multinomial Model for Ordinal Data Overview This example illustrates how to fit a Bayesian multinomial model by using the built-in mutinomial density function (MULTINOM) in the MCMC procedure

More information

Some estimates of the height of the podium

Some estimates of the height of the podium Some estimates of the height of the podium 24 36 40 40 40 41 42 44 46 48 50 53 65 98 1 5 number summary Inter quartile range (IQR) range = max min 2 1.5 IQR outlier rule 3 make a boxplot 24 36 40 40 40

More information

Optimal Portfolio Choice under Decision-Based Model Combinations

Optimal Portfolio Choice under Decision-Based Model Combinations Optimal Portfolio Choice under Decision-Based Model Combinations Davide Pettenuzzo Brandeis University Francesco Ravazzolo Norges Bank BI Norwegian Business School November 13, 2014 Pettenuzzo Ravazzolo

More information

**BEGINNING OF EXAMINATION** A random sample of five observations from a population is:

**BEGINNING OF EXAMINATION** A random sample of five observations from a population is: **BEGINNING OF EXAMINATION** 1. You are given: (i) A random sample of five observations from a population is: 0.2 0.7 0.9 1.1 1.3 (ii) You use the Kolmogorov-Smirnov test for testing the null hypothesis,

More information

Consistent estimators for multilevel generalised linear models using an iterated bootstrap

Consistent estimators for multilevel generalised linear models using an iterated bootstrap Multilevel Models Project Working Paper December, 98 Consistent estimators for multilevel generalised linear models using an iterated bootstrap by Harvey Goldstein hgoldstn@ioe.ac.uk Introduction Several

More information

Chapter 3. Numerical Descriptive Measures. Copyright 2016 Pearson Education, Ltd. Chapter 3, Slide 1

Chapter 3. Numerical Descriptive Measures. Copyright 2016 Pearson Education, Ltd. Chapter 3, Slide 1 Chapter 3 Numerical Descriptive Measures Copyright 2016 Pearson Education, Ltd. Chapter 3, Slide 1 Objectives In this chapter, you learn to: Describe the properties of central tendency, variation, and

More information

Quantile regression and surroundings using SAS

Quantile regression and surroundings using SAS Appendix B Quantile regression and surroundings using SAS Introduction This appendix is devoted to the presentation of the main commands available in SAS for carrying out a complete data analysis, that

More information

Discussion The Changing Relationship Between Commodity Prices and Prices of Other Assets with Global Market Integration by Barbara Rossi

Discussion The Changing Relationship Between Commodity Prices and Prices of Other Assets with Global Market Integration by Barbara Rossi Discussion The Changing Relationship Between Commodity Prices and Prices of Other Assets with Global Market Integration by Barbara Rossi Domenico Giannone Université libre de Bruxelles, ECARES and CEPR

More information

Descriptive Statistics

Descriptive Statistics Petra Petrovics Descriptive Statistics 2 nd seminar DESCRIPTIVE STATISTICS Definition: Descriptive statistics is concerned only with collecting and describing data Methods: - statistical tables and graphs

More information

Introduction to Computational Finance and Financial Econometrics Descriptive Statistics

Introduction to Computational Finance and Financial Econometrics Descriptive Statistics You can t see this text! Introduction to Computational Finance and Financial Econometrics Descriptive Statistics Eric Zivot Summer 2015 Eric Zivot (Copyright 2015) Descriptive Statistics 1 / 28 Outline

More information

DATA SUMMARIZATION AND VISUALIZATION

DATA SUMMARIZATION AND VISUALIZATION APPENDIX DATA SUMMARIZATION AND VISUALIZATION PART 1 SUMMARIZATION 1: BUILDING BLOCKS OF DATA ANALYSIS 294 PART 2 PART 3 PART 4 VISUALIZATION: GRAPHS AND TABLES FOR SUMMARIZING AND ORGANIZING DATA 296

More information

1. You are given the following information about a stationary AR(2) model:

1. You are given the following information about a stationary AR(2) model: Fall 2003 Society of Actuaries **BEGINNING OF EXAMINATION** 1. You are given the following information about a stationary AR(2) model: (i) ρ 1 = 05. (ii) ρ 2 = 01. Determine φ 2. (A) 0.2 (B) 0.1 (C) 0.4

More information

Monetary Economics Measuring Asset Returns. Gerald P. Dwyer Fall 2015

Monetary Economics Measuring Asset Returns. Gerald P. Dwyer Fall 2015 Monetary Economics Measuring Asset Returns Gerald P. Dwyer Fall 2015 WSJ Readings Readings this lecture, Cuthbertson Ch. 9 Readings next lecture, Cuthbertson, Chs. 10 13 Measuring Asset Returns Outline

More information

Assessing the performance of Bartlett-Lewis model on the simulation of Athens rainfall

Assessing the performance of Bartlett-Lewis model on the simulation of Athens rainfall European Geosciences Union General Assembly 2015 Vienna, Austria, 12-17 April 2015 Session HS7.7/NP3.8: Hydroclimatic and hydrometeorologic stochastics Assessing the performance of Bartlett-Lewis model

More information

Logit Models for Binary Data

Logit Models for Binary Data Chapter 3 Logit Models for Binary Data We now turn our attention to regression models for dichotomous data, including logistic regression and probit analysis These models are appropriate when the response

More information

Idiosyncratic risk, insurance, and aggregate consumption dynamics: a likelihood perspective

Idiosyncratic risk, insurance, and aggregate consumption dynamics: a likelihood perspective Idiosyncratic risk, insurance, and aggregate consumption dynamics: a likelihood perspective Alisdair McKay Boston University June 2013 Microeconomic evidence on insurance - Consumption responds to idiosyncratic

More information

Financial Econometrics Notes. Kevin Sheppard University of Oxford

Financial Econometrics Notes. Kevin Sheppard University of Oxford Financial Econometrics Notes Kevin Sheppard University of Oxford Monday 15 th January, 2018 2 This version: 22:52, Monday 15 th January, 2018 2018 Kevin Sheppard ii Contents 1 Probability, Random Variables

More information

is the bandwidth and controls the level of smoothing of the estimator, n is the sample size and

is the bandwidth and controls the level of smoothing of the estimator, n is the sample size and Paper PH100 Relationship between Total charges and Reimbursements in Outpatient Visits Using SAS GLIMMIX Chakib Battioui, University of Louisville, Louisville, KY ABSTRACT The purpose of this paper is

More information

STATISTICAL DISTRIBUTIONS AND THE CALCULATOR

STATISTICAL DISTRIBUTIONS AND THE CALCULATOR STATISTICAL DISTRIBUTIONS AND THE CALCULATOR 1. Basic data sets a. Measures of Center - Mean ( ): average of all values. Characteristic: non-resistant is affected by skew and outliers. - Median: Either

More information

ONLINE APPENDIX (NOT FOR PUBLICATION) Appendix A: Appendix Figures and Tables

ONLINE APPENDIX (NOT FOR PUBLICATION) Appendix A: Appendix Figures and Tables ONLINE APPENDIX (NOT FOR PUBLICATION) Appendix A: Appendix Figures and Tables 34 Figure A.1: First Page of the Standard Layout 35 Figure A.2: Second Page of the Credit Card Statement 36 Figure A.3: First

More information

Linda Allen, Jacob Boudoukh and Anthony Saunders, Understanding Market, Credit and Operational Risk: The Value at Risk Approach

Linda Allen, Jacob Boudoukh and Anthony Saunders, Understanding Market, Credit and Operational Risk: The Value at Risk Approach P1.T4. Valuation & Risk Models Linda Allen, Jacob Boudoukh and Anthony Saunders, Understanding Market, Credit and Operational Risk: The Value at Risk Approach Bionic Turtle FRM Study Notes Reading 26 By

More information

1. Distinguish three missing data mechanisms:

1. Distinguish three missing data mechanisms: 1 DATA SCREENING I. Preliminary inspection of the raw data make sure that there are no obvious coding errors (e.g., all values for the observed variables are in the admissible range) and that all variables

More information

Beating the market, using linear regression to outperform the market average

Beating the market, using linear regression to outperform the market average Radboud University Bachelor Thesis Artificial Intelligence department Beating the market, using linear regression to outperform the market average Author: Jelle Verstegen Supervisors: Marcel van Gerven

More information

Economics 424/Applied Mathematics 540. Final Exam Solutions

Economics 424/Applied Mathematics 540. Final Exam Solutions University of Washington Summer 01 Department of Economics Eric Zivot Economics 44/Applied Mathematics 540 Final Exam Solutions I. Matrix Algebra and Portfolio Math (30 points, 5 points each) Let R i denote

More information

Properties of the estimated five-factor model

Properties of the estimated five-factor model Informationin(andnotin)thetermstructure Appendix. Additional results Greg Duffee Johns Hopkins This draft: October 8, Properties of the estimated five-factor model No stationary term structure model is

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay. Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay. Solutions to Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (40 points) Answer briefly the following questions. 1. Consider

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay. Solutions to Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay. Solutions to Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay Solutions to Midterm Problem A: (30 pts) Answer briefly the following questions. Each question has

More information

Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay

Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay Seasonal Time Series: TS with periodic patterns and useful in predicting quarterly earnings pricing weather-related derivatives

More information

DECOMPOSITION OF THE CONDITIONAL ASSET RETURN DISTRIBUTION

DECOMPOSITION OF THE CONDITIONAL ASSET RETURN DISTRIBUTION DECOMPOSITION OF THE CONDITIONAL ASSET RETURN DISTRIBUTION Evangelia N. Mitrodima, Jim E. Griffin, and Jaideep S. Oberoi School of Mathematics, Statistics & Actuarial Science, University of Kent, Cornwallis

More information

Intro to GLM Day 2: GLM and Maximum Likelihood

Intro to GLM Day 2: GLM and Maximum Likelihood Intro to GLM Day 2: GLM and Maximum Likelihood Federico Vegetti Central European University ECPR Summer School in Methods and Techniques 1 / 32 Generalized Linear Modeling 3 steps of GLM 1. Specify the

More information

Computational Statistics Handbook with MATLAB

Computational Statistics Handbook with MATLAB «H Computer Science and Data Analysis Series Computational Statistics Handbook with MATLAB Second Edition Wendy L. Martinez The Office of Naval Research Arlington, Virginia, U.S.A. Angel R. Martinez Naval

More information

Variance clustering. Two motivations, volatility clustering, and implied volatility

Variance clustering. Two motivations, volatility clustering, and implied volatility Variance modelling The simplest assumption for time series is that variance is constant. Unfortunately that assumption is often violated in actual data. In this lecture we look at the implications of time

More information

University of Zürich, Switzerland

University of Zürich, Switzerland University of Zürich, Switzerland RE - general asset features The inclusion of real estate assets in a portfolio has proven to bring diversification benefits both for homeowners [Mahieu, Van Bussel 1996]

More information

A Quantile Regression Approach to the Multiple Period Value at Risk Estimation

A Quantile Regression Approach to the Multiple Period Value at Risk Estimation Journal of Economics and Management, 2016, Vol. 12, No. 1, 1-35 A Quantile Regression Approach to the Multiple Period Value at Risk Estimation Chi Ming Wong School of Mathematical and Physical Sciences,

More information

Copyright 2011 Pearson Education, Inc. Publishing as Addison-Wesley.

Copyright 2011 Pearson Education, Inc. Publishing as Addison-Wesley. Appendix: Statistics in Action Part I Financial Time Series 1. These data show the effects of stock splits. If you investigate further, you ll find that most of these splits (such as in May 1970) are 3-for-1

More information

Prediction errors in credit loss forecasting models based on macroeconomic data

Prediction errors in credit loss forecasting models based on macroeconomic data Prediction errors in credit loss forecasting models based on macroeconomic data Eric McVittie Experian Decision Analytics Credit Scoring & Credit Control XIII August 2013 University of Edinburgh Business

More information

Analyzing the Determinants of Project Success: A Probit Regression Approach

Analyzing the Determinants of Project Success: A Probit Regression Approach 2016 Annual Evaluation Review, Linked Document D 1 Analyzing the Determinants of Project Success: A Probit Regression Approach 1. This regression analysis aims to ascertain the factors that determine development

More information

The histogram should resemble the uniform density, the mean should be close to 0.5, and the standard deviation should be close to 1/ 12 =

The histogram should resemble the uniform density, the mean should be close to 0.5, and the standard deviation should be close to 1/ 12 = Chapter 19 Monte Carlo Valuation Question 19.1 The histogram should resemble the uniform density, the mean should be close to.5, and the standard deviation should be close to 1/ 1 =.887. Question 19. The

More information

John Hull, Risk Management and Financial Institutions, 4th Edition

John Hull, Risk Management and Financial Institutions, 4th Edition P1.T2. Quantitative Analysis John Hull, Risk Management and Financial Institutions, 4th Edition Bionic Turtle FRM Video Tutorials By David Harper, CFA FRM 1 Chapter 10: Volatility (Learning objectives)

More information

Study 2: data analysis. Example analysis using R

Study 2: data analysis. Example analysis using R Study 2: data analysis Example analysis using R Steps for data analysis Install software on your computer or locate computer with software (e.g., R, systat, SPSS) Prepare data for analysis Subjects (rows)

More information

AP STATISTICS FALL SEMESTSER FINAL EXAM STUDY GUIDE

AP STATISTICS FALL SEMESTSER FINAL EXAM STUDY GUIDE AP STATISTICS Name: FALL SEMESTSER FINAL EXAM STUDY GUIDE Period: *Go over Vocabulary Notecards! *This is not a comprehensive review you still should look over your past notes, homework/practice, Quizzes,

More information

Indian Sovereign Yield Curve using Nelson-Siegel-Svensson Model

Indian Sovereign Yield Curve using Nelson-Siegel-Svensson Model Indian Sovereign Yield Curve using Nelson-Siegel-Svensson Model Of the three methods of valuing a Fixed Income Security Current Yield, YTM and the Coupon, the most common method followed is the Yield To

More information

Longitudinal Modeling of Insurance Company Expenses

Longitudinal Modeling of Insurance Company Expenses Longitudinal of Insurance Company Expenses Peng Shi University of Wisconsin-Madison joint work with Edward W. (Jed) Frees - University of Wisconsin-Madison July 31, 1 / 20 I. : Motivation and Objective

More information

Percentiles, STATA, Box Plots, Standardizing, and Other Transformations

Percentiles, STATA, Box Plots, Standardizing, and Other Transformations Percentiles, STATA, Box Plots, Standardizing, and Other Transformations Lecture 3 Reading: Sections 5.7 54 Remember, when you finish a chapter make sure not to miss the last couple of boxes: What Can Go

More information

Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez

Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez Modeling Panel Data: Choosing the Correct Strategy Roberto G. Gutierrez 2 / 25 #analyticsx Overview Panel data are ubiquitous in not only economics, but in all fields Panel data have intrinsic modeling

More information

Portfolio Optimization. Prof. Daniel P. Palomar

Portfolio Optimization. Prof. Daniel P. Palomar Portfolio Optimization Prof. Daniel P. Palomar The Hong Kong University of Science and Technology (HKUST) MAFS6010R- Portfolio Optimization with R MSc in Financial Mathematics Fall 2018-19, HKUST, Hong

More information

2.4 STATISTICAL FOUNDATIONS

2.4 STATISTICAL FOUNDATIONS 2.4 STATISTICAL FOUNDATIONS Characteristics of Return Distributions Moments of Return Distribution Correlation Standard Deviation & Variance Test for Normality of Distributions Time Series Return Volatility

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay. Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay. Solutions to Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (40 points) Answer briefly the following questions. 1. Describe

More information

Some Characteristics of Data

Some Characteristics of Data Some Characteristics of Data Not all data is the same, and depending on some characteristics of a particular dataset, there are some limitations as to what can and cannot be done with that data. Some key

More information

VaR vs CVaR in Risk Management and Optimization

VaR vs CVaR in Risk Management and Optimization VaR vs CVaR in Risk Management and Optimization Stan Uryasev Joint presentation with Sergey Sarykalin, Gaia Serraino and Konstantin Kalinchenko Risk Management and Financial Engineering Lab, University

More information

R. Kerry 1, M. A. Oliver 2. Telephone: +1 (801) Fax: +1 (801)

R. Kerry 1, M. A. Oliver 2. Telephone: +1 (801) Fax: +1 (801) The Effects of Underlying Asymmetry and Outliers in data on the Residual Maximum Likelihood Variogram: A Comparison with the Method of Moments Variogram R. Kerry 1, M. A. Oliver 2 1 Department of Geography,

More information