Implementing a Class of Structural Change Tests: An Econometric Computing Approach
|
|
|
- Randolph Stafford
- 10 years ago
- Views:
Transcription
1 Implementing a Class of Structural Change Tests: An Econometric Computing Approach Achim Zeileis
2 Contents Why should we want to do tests for structural change, econometric computing? Generalized M-fluctuation tests Empirical fluctuation processes: gefp Functionals for testing: efpfunctional Applications Austrian National Guest Survey
3 Structural change tests Structural change has been receiving a lot of attention in econometrics and statistics, particularly in time series econometrics. Aim: to learn if, when and how the structure underlying a set of observations changes. In a parametric model with parameter θ i for n totally ordered observations Y i test the null hypothesis of parameter constancy against changes over time. H 0 : θ i = θ 0 (i = 1,..., n).
4 Econometric computing Econometrics & computing: Computational econometrics: methods requiring substantial computations (bootstrap or Monte Carlo methods), Econometric computing: translating econometric ideas into software. To transport methodology to the users and apply new methods to data software is needed.
5 Econometric computing Desirable features of an implementation: easy to use, numerically reliable, computationally efficient, flexible and extensible, reusable components, open source, object oriented, reflect features of the conceptual method. Undesirable: single monolithic functions. Also important: software delivery.
6 Econometric computing All methods implemented in the R system for statistical computing and graphics in the contributed package strucchange. Both are available under the GPL (General Public Licence) from the Comprehensive R Archive Network (CRAN):
7 Guest Survey Austria Data from the Austrian National Guest Survey about the summer seasons 1994 and Here: use logistic regression model response: cycling as a vacation activity (done/not done), available regressors: age (in years), household income (in ATS/month), gender and year (as a factors/dummies), fit model for the subset of male tourists (6256 observations), (log-)income is not significant. R> gsa.fm <- glm(cycle ~ poly(age, 2) + Year, data = gsa, family = binomial) But: Maybe there are instabilities in the model for increasing income?
8 M-fluctuation tests fit model compute empirical fluctuation process reflecting fluctuation in residuals coefficient estimates M-scores (including OLS or ML scores etc.) theoretical limiting process is known choose boundaries which are crossed by the limiting process (or some functional of it) only with a known probability α. if the empirical fluctuation process crosses the theoretical boundaries the fluctuation is improbably large reject the null hypothesis.
9 Empirical fluctuation processes Model fitting: parameters can often be estimated based on a score function or estimating equation ψ with E[ψ(Y i, θ i )] = 0. Under parameter stability estimate θ 0 by: n i=1 ψ(y i, ˆθ) = 0. Includes: OLS, ML, Quasi-ML, robust M-estimation, IV, GMM, GEE. Available in R: linear models lm, GLMs, logit, probit models glm, robust regression rlm, etc.
10 Empirical fluctuation processes Test idea: if θ is not constant the scores ψ should fluctuate and systematically deviate from 0. Capture fluctuations by partial sums: nt efp(t) = Ĵ 1/2 n 1/2 i=1 and scale by covariance matrix estimate Ĵ. ψ(y i, ˆθ).
11 Empirical fluctuation processes Test idea: if θ is not constant the scores ψ should fluctuate and systematically deviate from 0. Capture fluctuations by partial sums: nt efp(t) = Ĵ 1/2 n 1/2 i=1 and scale by covariance matrix estimate Ĵ. ψ(y i, ˆθ). Functional central limit theorem: empirical fluctuation process converges to a Brownian bridge efp( ) d W 0 ( )
12 Empirical fluctuation processes Implementation idea: don t reinvent the wheel: use existing model fitting functions and just extract the scores or estimating functions, also allow plug-in of HC and HAC covariance matrix estimators, provide infrastructure for computing processes.
13 Empirical fluctuation processes Implementation idea: don t reinvent the wheel: use existing model fitting functions and just extract the scores or estimating functions, also allow plug-in of HC and HAC covariance matrix estimators, provide infrastructure for computing processes. gefp(..., fit = glm, scores = estfun, vcov = NULL, order.by = NULL)
14 Empirical fluctuation processes For Austrian guest survey data: R> gsa.efp <- gefp(cycle ~ poly(age, 2) + Year, family = binomial, data = gsa, order.by = ~ log(hhincome), parm = 1:3)
15 Empirical fluctuation processes poly(age, 2)2 poly(age, 2)1 (Intercept) log(household Income)
16 Functionals The empirical fluctuation process can be aggregated to a scalar test statistic by a functional λ( ) λ ( ( )) i efp j, n where j = 1,..., k and i = 1,... n. λ can usually be split into two components: λ time and λ comp. Typical choices for λ time : L (absolute maximum), mean, range. Typical choice for λ comp : L, L 2. can identify component and/or timing of shift.
17 Functionals Double maximum statistic: max max i=1,...,n j=1,...,k efp j (i/n) b(i/n), typically with b(t) = 1. Cramér-von Mises statistic: n 1 n i=1 efp j (i/n) 2 2, Critical values can easily be obtained by simulation of λ(w 0 ). In certain special cases, closed form solutions are known.
18 Functionals Implementation idea: specify functional (and boundary function) simulate critical values (or use closed form solution) combine all information about a functional in a single object: process visualization, computation of test statistic, computation of p values, provide infrastructure which can be used by the methods of the generic functions plot for visualization and sctest for significance testing. For the double maximum and the Cramér-von Mises functionals such objects are available in strucchange: maxbb, meanl2bb.
19 Functionals R> plot(gsa.efp, functional = maxbb) M fluctuation test empirical fluctuation process Time
20 Functionals R> plot(gsa.efp, functional = maxbb, aggregate = FALSE) M fluctuation test poly(age, 2)2 poly(age, 2)1 (Intercept) Time
21 Functionals R> plot(gsa.efp, functional = meanl2bb) M fluctuation test empirical fluctuation process Time
22 Functionals R> sctest(gsa.efp, functional = maxbb) M-fluctuation test data: gsa.efp f(efp) = , p-value = R> sctest(gsa.efp, functional = meanl2bb) M-fluctuation test data: gsa.efp f(efp) = , p-value = 0.005
23 Functionals New functionals can be easily generated with efpfunctional( functional = list(comp = function(x) max(abs(x)), time = max), boundary = function(x) rep(1, length(x)), computepval = NULL, computecritval = NULL, nobs = 10000, nrep = 50000, nproc = 1:20) An object created by efpfunctional has slots with functions plotprocess computestatistic computepval that are defined based on lexical scoping.
24 Functionals Use functional similar to double max functional, but with boundary function b(t) = t (1 t) , which is proportional to the standard deviation of the process plus an offset. myfun1 <- efpfunctional( functional = list(comp = function(x) max(abs(x)), time = max), boundary = function(x) sqrt(x * (1-x)) , nobs = 10000, nrep = 50000, nproc = NULL)
25 Functionals R> plot(gsa.efp, functional = myfun1) M fluctuation test empirical fluctuation process Time
26 Functionals Use standard double max functional but aggregate over time first. Leads to the same test statistic and p value, but the aggregated process looks different. myfun2 <- efpfunctional( functional = list(time = function(x) max(abs(x)), comp = max), computepval = maxbb$computepval)
27 Functionals R> plot(gsa.efp, functional = myfun2) M fluctuation test Statistic (Intercept) poly(age, 2)1 poly(age, 2)2 Component
28 Functionals R> sctest(gsa.efp, functional = myfun1) M-fluctuation test data: gsa.efp f(efp) = , p-value = < 2.2e-16 R> sctest(gsa.efp, functional = myfun2) M-fluctuation test data: gsa.efp f(efp) = , p-value =
29 Conclusions The general class of M-fluctuation tests is implemented in strucchange: gefp computation of empirical fluctuation processes from (possibly user-defined) estimation functions, efpfunctional aggregation of empirical fluctuation processes to test statistics, automatic tabulation of critical values, plot and sctest methods for visualization and significance testing based on empirical fluctuation processes and corresponding functionals.
30 See more at... The 1st R user conference Vienna, May 20 22,
Testing, Monitoring, and Dating Structural Changes in Exchange Rate Regimes
Testing, Monitoring, and Dating Structural Changes in Exchange Rate Regimes Achim Zeileis http://eeecon.uibk.ac.at/~zeileis/ Overview Motivation Exchange rate regimes Exchange rate regression What is the
A Unified Approach to Structural Change Tests Based on ML Scores, F Statistics, and OLS Residuals
A Unified Approach to Structural Change Tests Based on ML Scores, F Statistics, and OLS Residuals Achim Zeileis Wirtschaftsuniversität Wien Abstract Three classes of structural change tests (or tests for
Monitoring Structural Change in Dynamic Econometric Models
Monitoring Structural Change in Dynamic Econometric Models Achim Zeileis Friedrich Leisch Christian Kleiber Kurt Hornik http://www.ci.tuwien.ac.at/~zeileis/ Contents Model frame Generalized fluctuation
Model-Based Recursive Partitioning for Detecting Interaction Effects in Subgroups
Model-Based Recursive Partitioning for Detecting Interaction Effects in Subgroups Achim Zeileis, Torsten Hothorn, Kurt Hornik http://eeecon.uibk.ac.at/~zeileis/ Overview Motivation: Trees, leaves, and
Generalized M-Fluctuation Tests for Parameter Instability
Generalized M-Fluctuation Tests for Parameter Instability Achim Zeileis Kurt Hornik Department of Statistics and Mathematics, Wirtschaftsuniversität Wien Abstract A general class of fluctuation tests for
Exchange Rate Regime Analysis for the Chinese Yuan
Exchange Rate Regime Analysis for the Chinese Yuan Achim Zeileis Ajay Shah Ila Patnaik Abstract We investigate the Chinese exchange rate regime after China gave up on a fixed exchange rate to the US dollar
From the help desk: Bootstrapped standard errors
The Stata Journal (2003) 3, Number 1, pp. 71 80 From the help desk: Bootstrapped standard errors Weihua Guan Stata Corporation Abstract. Bootstrapping is a nonparametric approach for evaluating the distribution
Generalized Linear Models
Generalized Linear Models We have previously worked with regression models where the response variable is quantitative and normally distributed. Now we turn our attention to two types of models where the
Calculating the Probability of Returning a Loan with Binary Probability Models
Calculating the Probability of Returning a Loan with Binary Probability Models Associate Professor PhD Julian VASILEV (e-mail: [email protected]) Varna University of Economics, Bulgaria ABSTRACT The
Implementing Panel-Corrected Standard Errors in R: The pcse Package
Implementing Panel-Corrected Standard Errors in R: The pcse Package Delia Bailey YouGov Polimetrix Jonathan N. Katz California Institute of Technology Abstract This introduction to the R package pcse is
STATISTICA Formula Guide: Logistic Regression. Table of Contents
: Table of Contents... 1 Overview of Model... 1 Dispersion... 2 Parameterization... 3 Sigma-Restricted Model... 3 Overparameterized Model... 4 Reference Coding... 4 Model Summary (Summary Tab)... 5 Summary
Simple Linear Regression Inference
Simple Linear Regression Inference 1 Inference requirements The Normality assumption of the stochastic term e is needed for inference even if it is not a OLS requirement. Therefore we have: Interpretation
On Reproducible Econometric Research
On Reproducible Econometric Research Achim Zeileis http://eeecon.uibk.ac.at/~zeileis/ Overview Joint work with Roger Koenker (University of Urbana-Champaign). Koenker R, Zeileis A (2009). On Reproducible
Chapter 5: Bivariate Cointegration Analysis
Chapter 5: Bivariate Cointegration Analysis 1 Contents: Lehrstuhl für Department Empirische of Wirtschaftsforschung Empirical Research and und Econometrics Ökonometrie V. Bivariate Cointegration Analysis...
Multiple Linear Regression
Multiple Linear Regression A regression with two or more explanatory variables is called a multiple regression. Rather than modeling the mean response as a straight line, as in simple regression, it is
Time Series Analysis
Time Series Analysis Identifying possible ARIMA models Andrés M. Alonso Carolina García-Martos Universidad Carlos III de Madrid Universidad Politécnica de Madrid June July, 2012 Alonso and García-Martos
Factors affecting online sales
Factors affecting online sales Table of contents Summary... 1 Research questions... 1 The dataset... 2 Descriptive statistics: The exploratory stage... 3 Confidence intervals... 4 Hypothesis tests... 4
Online Appendix to Are Risk Preferences Stable Across Contexts? Evidence from Insurance Data
Online Appendix to Are Risk Preferences Stable Across Contexts? Evidence from Insurance Data By LEVON BARSEGHYAN, JEFFREY PRINCE, AND JOSHUA C. TEITELBAUM I. Empty Test Intervals Here we discuss the conditions
SAS Software to Fit the Generalized Linear Model
SAS Software to Fit the Generalized Linear Model Gordon Johnston, SAS Institute Inc., Cary, NC Abstract In recent years, the class of generalized linear models has gained popularity as a statistical modeling
Financial Risk Models in R: Factor Models for Asset Returns. Workshop Overview
Financial Risk Models in R: Factor Models for Asset Returns and Interest Rate Models Scottish Financial Risk Academy, March 15, 2011 Eric Zivot Robert Richards Chaired Professor of Economics Adjunct Professor,
CHAPTER 12 EXAMPLES: MONTE CARLO SIMULATION STUDIES
Examples: Monte Carlo Simulation Studies CHAPTER 12 EXAMPLES: MONTE CARLO SIMULATION STUDIES Monte Carlo simulation studies are often used for methodological investigations of the performance of statistical
Online Appendices to the Corporate Propensity to Save
Online Appendices to the Corporate Propensity to Save Appendix A: Monte Carlo Experiments In order to allay skepticism of empirical results that have been produced by unusual estimators on fairly small
No More Weekend Effect
No More Weekend Effect Russell P. Robins 1 and Geoffrey Peter Smith 2 1 AB Freeman School of Business, Tulane University 2 WP Carey School of Business, Arizona State University Abstract Before 1975, the
Solución del Examen Tipo: 1
Solución del Examen Tipo: 1 Universidad Carlos III de Madrid ECONOMETRICS Academic year 2009/10 FINAL EXAM May 17, 2010 DURATION: 2 HOURS 1. Assume that model (III) verifies the assumptions of the classical
MONT 107N Understanding Randomness Solutions For Final Examination May 11, 2010
MONT 07N Understanding Randomness Solutions For Final Examination May, 00 Short Answer (a) (0) How are the EV and SE for the sum of n draws with replacement from a box computed? Solution: The EV is n times
Please follow the directions once you locate the Stata software in your computer. Room 114 (Business Lab) has computers with Stata software
STATA Tutorial Professor Erdinç Please follow the directions once you locate the Stata software in your computer. Room 114 (Business Lab) has computers with Stata software 1.Wald Test Wald Test is used
ECLT5810 E-Commerce Data Mining Technique SAS Enterprise Miner -- Regression Model I. Regression Node
Enterprise Miner - Regression 1 ECLT5810 E-Commerce Data Mining Technique SAS Enterprise Miner -- Regression Model I. Regression Node 1. Some background: Linear attempts to predict the value of a continuous
R: A Free Software Project in Statistical Computing
R: A Free Software Project in Statistical Computing Achim Zeileis http://statmath.wu-wien.ac.at/ zeileis/ [email protected] Overview A short introduction to some letters of interest R, S, Z Statistics
2013 MBA Jump Start Program. Statistics Module Part 3
2013 MBA Jump Start Program Module 1: Statistics Thomas Gilbert Part 3 Statistics Module Part 3 Hypothesis Testing (Inference) Regressions 2 1 Making an Investment Decision A researcher in your firm just
Linda K. Muthén Bengt Muthén. Copyright 2008 Muthén & Muthén www.statmodel.com. Table Of Contents
Mplus Short Courses Topic 2 Regression Analysis, Eploratory Factor Analysis, Confirmatory Factor Analysis, And Structural Equation Modeling For Categorical, Censored, And Count Outcomes Linda K. Muthén
Chapter 7: Simple linear regression Learning Objectives
Chapter 7: Simple linear regression Learning Objectives Reading: Section 7.1 of OpenIntro Statistics Video: Correlation vs. causation, YouTube (2:19) Video: Intro to Linear Regression, YouTube (5:18) -
partykit: A Toolkit for Recursive Partytioning
partykit: A Toolkit for Recursive Partytioning Achim Zeileis, Torsten Hothorn http://eeecon.uibk.ac.at/~zeileis/ Overview Status quo: R software for tree models New package: partykit Unified infrastructure
Multivariate Logistic Regression
1 Multivariate Logistic Regression As in univariate logistic regression, let π(x) represent the probability of an event that depends on p covariates or independent variables. Then, using an inv.logit formulation
Package dsmodellingclient
Package dsmodellingclient Maintainer Author Version 4.1.0 License GPL-3 August 20, 2015 Title DataSHIELD client site functions for statistical modelling DataSHIELD
Audit Analytics. --An innovative course at Rutgers. Qi Liu. Roman Chinchila
Audit Analytics --An innovative course at Rutgers Qi Liu Roman Chinchila A new certificate in Analytic Auditing Tentative courses: Audit Analytics Special Topics in Audit Analytics Forensic Accounting
R: A Free Software Project in Statistical Computing
R: A Free Software Project in Statistical Computing Achim Zeileis Institut für Statistik & Wahrscheinlichkeitstheorie http://www.ci.tuwien.ac.at/~zeileis/ Acknowledgments Thanks: Alex Smola & Machine Learning
Examining a Fitted Logistic Model
STAT 536 Lecture 16 1 Examining a Fitted Logistic Model Deviance Test for Lack of Fit The data below describes the male birth fraction male births/total births over the years 1931 to 1990. A simple logistic
Logistic Regression (a type of Generalized Linear Model)
Logistic Regression (a type of Generalized Linear Model) 1/36 Today Review of GLMs Logistic Regression 2/36 How do we find patterns in data? We begin with a model of how the world works We use our knowledge
430 Statistics and Financial Mathematics for Business
Prescription: 430 Statistics and Financial Mathematics for Business Elective prescription Level 4 Credit 20 Version 2 Aim Students will be able to summarise, analyse, interpret and present data, make predictions
Service courses for graduate students in degree programs other than the MS or PhD programs in Biostatistics.
Course Catalog In order to be assured that all prerequisites are met, students must acquire a permission number from the education coordinator prior to enrolling in any Biostatistics course. Courses are
Chicago Booth BUSINESS STATISTICS 41000 Final Exam Fall 2011
Chicago Booth BUSINESS STATISTICS 41000 Final Exam Fall 2011 Name: Section: I pledge my honor that I have not violated the Honor Code Signature: This exam has 34 pages. You have 3 hours to complete this
Bootstrapping Big Data
Bootstrapping Big Data Ariel Kleiner Ameet Talwalkar Purnamrita Sarkar Michael I. Jordan Computer Science Division University of California, Berkeley {akleiner, ameet, psarkar, jordan}@eecs.berkeley.edu
What s New in Econometrics? Lecture 8 Cluster and Stratified Sampling
What s New in Econometrics? Lecture 8 Cluster and Stratified Sampling Jeff Wooldridge NBER Summer Institute, 2007 1. The Linear Model with Cluster Effects 2. Estimation with a Small Number of Groups and
Lecture 6: Poisson regression
Lecture 6: Poisson regression Claudia Czado TU München c (Claudia Czado, TU Munich) ZFS/IMS Göttingen 2004 0 Overview Introduction EDA for Poisson regression Estimation and testing in Poisson regression
Simple Methods and Procedures Used in Forecasting
Simple Methods and Procedures Used in Forecasting The project prepared by : Sven Gingelmaier Michael Richter Under direction of the Maria Jadamus-Hacura What Is Forecasting? Prediction of future events
Chapter 5 Analysis of variance SPSS Analysis of variance
Chapter 5 Analysis of variance SPSS Analysis of variance Data file used: gss.sav How to get there: Analyze Compare Means One-way ANOVA To test the null hypothesis that several population means are equal,
HLM software has been one of the leading statistical packages for hierarchical
Introductory Guide to HLM With HLM 7 Software 3 G. David Garson HLM software has been one of the leading statistical packages for hierarchical linear modeling due to the pioneering work of Stephen Raudenbush
Regression Modeling Strategies
Frank E. Harrell, Jr. Regression Modeling Strategies With Applications to Linear Models, Logistic Regression, and Survival Analysis With 141 Figures Springer Contents Preface Typographical Conventions
CHAPTER 3 EXAMPLES: REGRESSION AND PATH ANALYSIS
Examples: Regression And Path Analysis CHAPTER 3 EXAMPLES: REGRESSION AND PATH ANALYSIS Regression analysis with univariate or multivariate dependent variables is a standard procedure for modeling relationships
THE IMPACT OF EXCHANGE RATE VOLATILITY ON BRAZILIAN MANUFACTURED EXPORTS
THE IMPACT OF EXCHANGE RATE VOLATILITY ON BRAZILIAN MANUFACTURED EXPORTS ANTONIO AGUIRRE UFMG / Department of Economics CEPE (Centre for Research in International Economics) Rua Curitiba, 832 Belo Horizonte
Cross Validation techniques in R: A brief overview of some methods, packages, and functions for assessing prediction models.
Cross Validation techniques in R: A brief overview of some methods, packages, and functions for assessing prediction models. Dr. Jon Starkweather, Research and Statistical Support consultant This month
Business Statistics. Successful completion of Introductory and/or Intermediate Algebra courses is recommended before taking Business Statistics.
Business Course Text Bowerman, Bruce L., Richard T. O'Connell, J. B. Orris, and Dawn C. Porter. Essentials of Business, 2nd edition, McGraw-Hill/Irwin, 2008, ISBN: 978-0-07-331988-9. Required Computing
Regression Analysis (Spring, 2000)
Regression Analysis (Spring, 2000) By Wonjae Purposes: a. Explaining the relationship between Y and X variables with a model (Explain a variable Y in terms of Xs) b. Estimating and testing the intensity
We extended the additive model in two variables to the interaction model by adding a third term to the equation.
Quadratic Models We extended the additive model in two variables to the interaction model by adding a third term to the equation. Similarly, we can extend the linear model in one variable to the quadratic
Online Appendix Assessing the Incidence and Efficiency of a Prominent Place Based Policy
Online Appendix Assessing the Incidence and Efficiency of a Prominent Place Based Policy By MATIAS BUSSO, JESSE GREGORY, AND PATRICK KLINE This document is a Supplemental Online Appendix of Assessing the
ASSESSING FINANCIAL EDUCATION: EVIDENCE FROM BOOTCAMP. William Skimmyhorn. Online Appendix
ASSESSING FINANCIAL EDUCATION: EVIDENCE FROM BOOTCAMP William Skimmyhorn Online Appendix Appendix Table 1. Treatment Variable Imputation Procedure Step Description Percent 1 Using administrative data,
Data Mining and Data Warehousing. Henryk Maciejewski. Data Mining Predictive modelling: regression
Data Mining and Data Warehousing Henryk Maciejewski Data Mining Predictive modelling: regression Algorithms for Predictive Modelling Contents Regression Classification Auxiliary topics: Estimation of prediction
Regression III: Advanced Methods
Lecture 16: Generalized Additive Models Regression III: Advanced Methods Bill Jacoby Michigan State University http://polisci.msu.edu/jacoby/icpsr/regress3 Goals of the Lecture Introduce Additive Models
Model-based Recursive Partitioning
Model-based Recursive Partitioning Achim Zeileis Wirtschaftsuniversität Wien Torsten Hothorn Ludwig-Maximilians-Universität München Kurt Hornik Wirtschaftsuniversität Wien Abstract Recursive partitioning
Using R for Linear Regression
Using R for Linear Regression In the following handout words and symbols in bold are R functions and words and symbols in italics are entries supplied by the user; underlined words and symbols are optional
Statistics Graduate Courses
Statistics Graduate Courses STAT 7002--Topics in Statistics-Biological/Physical/Mathematics (cr.arr.).organized study of selected topics. Subjects and earnable credit may vary from semester to semester.
Simple Predictive Analytics Curtis Seare
Using Excel to Solve Business Problems: Simple Predictive Analytics Curtis Seare Copyright: Vault Analytics July 2010 Contents Section I: Background Information Why use Predictive Analytics? How to use
GLM I An Introduction to Generalized Linear Models
GLM I An Introduction to Generalized Linear Models CAS Ratemaking and Product Management Seminar March 2009 Presented by: Tanya D. Havlicek, Actuarial Assistant 0 ANTITRUST Notice The Casualty Actuarial
Vector Time Series Model Representations and Analysis with XploRe
0-1 Vector Time Series Model Representations and Analysis with plore Julius Mungo CASE - Center for Applied Statistics and Economics Humboldt-Universität zu Berlin [email protected] plore MulTi Motivation
Correlation and Simple Linear Regression
Correlation and Simple Linear Regression We are often interested in studying the relationship among variables to determine whether they are associated with one another. When we think that changes in a
Package neuralnet. February 20, 2015
Type Package Title Training of neural networks Version 1.32 Date 2012-09-19 Package neuralnet February 20, 2015 Author Stefan Fritsch, Frauke Guenther , following earlier work
Testing for Granger causality between stock prices and economic growth
MPRA Munich Personal RePEc Archive Testing for Granger causality between stock prices and economic growth Pasquale Foresti 2006 Online at http://mpra.ub.uni-muenchen.de/2962/ MPRA Paper No. 2962, posted
Overview of Violations of the Basic Assumptions in the Classical Normal Linear Regression Model
Overview of Violations of the Basic Assumptions in the Classical Normal Linear Regression Model 1 September 004 A. Introduction and assumptions The classical normal linear regression model can be written
Additional sources Compilation of sources: http://lrs.ed.uiuc.edu/tseportal/datacollectionmethodologies/jin-tselink/tselink.htm
Mgt 540 Research Methods Data Analysis 1 Additional sources Compilation of sources: http://lrs.ed.uiuc.edu/tseportal/datacollectionmethodologies/jin-tselink/tselink.htm http://web.utk.edu/~dap/random/order/start.htm
Implementations of tests on the exogeneity of selected. variables and their Performance in practice ACADEMISCH PROEFSCHRIFT
Implementations of tests on the exogeneity of selected variables and their Performance in practice ACADEMISCH PROEFSCHRIFT ter verkrijging van de graad van doctor aan de Universiteit van Amsterdam op gezag
Course Text. Required Computing Software. Course Description. Course Objectives. StraighterLine. Business Statistics
Course Text Business Statistics Lind, Douglas A., Marchal, William A. and Samuel A. Wathen. Basic Statistics for Business and Economics, 7th edition, McGraw-Hill/Irwin, 2010, ISBN: 9780077384470 [This
Chicago Insurance Redlining - a complete example
Chapter 12 Chicago Insurance Redlining - a complete example In a study of insurance availability in Chicago, the U.S. Commission on Civil Rights attempted to examine charges by several community organizations
Package empiricalfdr.deseq2
Type Package Package empiricalfdr.deseq2 May 27, 2015 Title Simulation-Based False Discovery Rate in RNA-Seq Version 1.0.3 Date 2015-05-26 Author Mikhail V. Matz Maintainer Mikhail V. Matz
Example: Credit card default, we may be more interested in predicting the probabilty of a default than classifying individuals as default or not.
Statistical Learning: Chapter 4 Classification 4.1 Introduction Supervised learning with a categorical (Qualitative) response Notation: - Feature vector X, - qualitative response Y, taking values in C
A Handbook of Statistical Analyses Using R. Brian S. Everitt and Torsten Hothorn
A Handbook of Statistical Analyses Using R Brian S. Everitt and Torsten Hothorn CHAPTER 6 Logistic Regression and Generalised Linear Models: Blood Screening, Women s Role in Society, and Colonic Polyps
Introduction to General and Generalized Linear Models
Introduction to General and Generalized Linear Models General Linear Models - part I Henrik Madsen Poul Thyregod Informatics and Mathematical Modelling Technical University of Denmark DK-2800 Kgs. Lyngby
High Performance Predictive Analytics in R and Hadoop:
High Performance Predictive Analytics in R and Hadoop: Achieving Big Data Big Analytics Presented by: Mario E. Inchiosa, Ph.D. US Chief Scientist August 27, 2013 1 Polling Questions 1 & 2 2 Agenda Revolution
SYSTEMS OF REGRESSION EQUATIONS
SYSTEMS OF REGRESSION EQUATIONS 1. MULTIPLE EQUATIONS y nt = x nt n + u nt, n = 1,...,N, t = 1,...,T, x nt is 1 k, and n is k 1. This is a version of the standard regression model where the observations
Statistical Models in R
Statistical Models in R Some Examples Steven Buechler Department of Mathematics 276B Hurley Hall; 1-6233 Fall, 2007 Outline Statistical Models Linear Models in R Regression Regression analysis is the appropriate
Discussion Section 4 ECON 139/239 2010 Summer Term II
Discussion Section 4 ECON 139/239 2010 Summer Term II 1. Let s use the CollegeDistance.csv data again. (a) An education advocacy group argues that, on average, a person s educational attainment would increase
Review Jeopardy. Blue vs. Orange. Review Jeopardy
Review Jeopardy Blue vs. Orange Review Jeopardy Jeopardy Round Lectures 0-3 Jeopardy Round $200 How could I measure how far apart (i.e. how different) two observations, y 1 and y 2, are from each other?
1. What is the critical value for this 95% confidence interval? CV = z.025 = invnorm(0.025) = 1.96
1 Final Review 2 Review 2.1 CI 1-propZint Scenario 1 A TV manufacturer claims in its warranty brochure that in the past not more than 10 percent of its TV sets needed any repair during the first two years
Introduction to Regression and Data Analysis
Statlab Workshop Introduction to Regression and Data Analysis with Dan Campbell and Sherlock Campbell October 28, 2008 I. The basics A. Types of variables Your variables may take several forms, and it
Why Taking This Course? Course Introduction, Descriptive Statistics and Data Visualization. Learning Goals. GENOME 560, Spring 2012
Why Taking This Course? Course Introduction, Descriptive Statistics and Data Visualization GENOME 560, Spring 2012 Data are interesting because they help us understand the world Genomics: Massive Amounts
Quantitative Methods for Finance
Quantitative Methods for Finance Module 1: The Time Value of Money 1 Learning how to interpret interest rates as required rates of return, discount rates, or opportunity costs. 2 Learning how to explain
BayesX - Software for Bayesian Inference in Structured Additive Regression
BayesX - Software for Bayesian Inference in Structured Additive Regression Thomas Kneib Faculty of Mathematics and Economics, University of Ulm Department of Statistics, Ludwig-Maximilians-University Munich
Time Series Analysis: Basic Forecasting.
Time Series Analysis: Basic Forecasting. As published in Benchmarks RSS Matters, April 2015 http://web3.unt.edu/benchmarks/issues/2015/04/rss-matters Jon Starkweather, PhD 1 Jon Starkweather, PhD [email protected]
Advanced Forecasting Techniques and Models: ARIMA
Advanced Forecasting Techniques and Models: ARIMA Short Examples Series using Risk Simulator For more information please visit: www.realoptionsvaluation.com or contact us at: [email protected]
Section 6: Model Selection, Logistic Regression and more...
Section 6: Model Selection, Logistic Regression and more... Carlos M. Carvalho The University of Texas McCombs School of Business http://faculty.mccombs.utexas.edu/carlos.carvalho/teaching/ 1 Model Building
Corporate Defaults and Large Macroeconomic Shocks
Corporate Defaults and Large Macroeconomic Shocks Mathias Drehmann Bank of England Andrew Patton London School of Economics and Bank of England Steffen Sorensen Bank of England The presentation expresses
Institute of Actuaries of India Subject CT3 Probability and Mathematical Statistics
Institute of Actuaries of India Subject CT3 Probability and Mathematical Statistics For 2015 Examinations Aim The aim of the Probability and Mathematical Statistics subject is to provide a grounding in
