7. Analysis of Variance (ANOVA)

Size: px
Start display at page:

Download "7. Analysis of Variance (ANOVA)"

Transcription

1 1 7. Analyss of Varance (ANOVA) An overvew of ANOVA

2 What s ANOVA? 3 ANOVA refers to statstcal models and assocated procedures, n whch the observed varance s parttoned nto components due to dfferent explanatory varables. ANOVA was frst developed by R. A. Fsher n the 1920s and 1930s. Thus, t s also known as Fsher's analyss of varance, or Fsher's ANOVA. What does ANOVA do? 4 It provdes a statstcal test concernng f the means of several groups are all equal. In ts smplest form, ANOVA s equvalent to Student's t-test when only two groups are nvolved.

3 Types of ANOVA 5 One-way ANOVA --- nvolves only a sngle factor n the experment. two-way/multple-way ANOVA --- two or more factors are relevant. Factoral ANOVA --- there s replcaton at each combnaton of levels n a two way/mult-way ANOVA. Mxed-desgn ANOVA --- a factoral mxeddesgn, n whch one factor s a between-subjects varable and the other s wthn-subjects varable. Multvarate analyss of varance (MANOVA) --- more than one dependent varable nvolved n the analyss. Basc Assumptons 6 Independence cases are ndependent. Normalty data are normally dstrbuted n each of the groups. Homogenety of varances varance of data are the same n all the groups (Homoscedastcty). The above form the common assumpton that the errors are ndependently, dentcally, and normally dstrbuted for fxed-effect models.

4 LOGIC OF ANOVA (1) 7 The fundamental technque of ANOVA s to partton the total sum of squares nto components related to the effects nvolved n the model. SSY = SSA + SSE dfy = dfa + dfe MSA = SSA/dfA; MSE = SSE/dfE LOGIC OF ANOVA (2) 8 MSE s the pooled varance obtaned by combnng the ndvdual group varance, and thus t provdes an estmate of the populaton varance. MSA s also an estmate of n the absence of true group effects, but t ncludes a term related to dfferences between group means when there are group effects. Thus, a test for sgnfcant dfference between the group means can be performed by comparng the two varance estmates, that s, F = MSA/MSE

5 LOGIC OF ANOVA (3) 9 Under the null hypothess of dentcal means, the value of the F statstc s deally 1, but t s expected to have some varaton around that value. Statstcally, t s an F dstrbuton wth (k-1, n-k) degrees of freedom, assumng that all group means are equal. FOLLOW UP TESTS 10 If a statstcally sgnfcant effect s found n ANOVA, one or more tests of approprate knds wll follow up, n order to assess whch groups are dfferent from whch other groups or to test varous other focused hypotheses. For example, Tukey's test most commonly compare every group mean wth every other group mean and typcally ncorporate some methods to control Type I errors.

6 One-way ANOVA The data model 12 ( ) ( ) y = y + y y + y y j j y j = µ + α+ εj 2 where εj ~ N( 0, σ )

7 Decomposton of the total sum of squares 13 2 ( yj y) = n( y y) + ( yj y) 2 2 j j SSY = SSA + SSE Degrees of freedom 14 n 1 = ( k 1) + ( n k) dfy = dfa+ dfe

8 Mean squares and F statstc 15 SSA MSA= = dfa ( ) 2 n y y k 1 SSE MSE= = dfe ( y ) 2 j y j n k F = MSA MSE Example 16 The red cell folate data, descrbed by Altman (1991, p208) 22 observatons, a numerc varable folate and a factor ventlaton. Three level of ventlaton: N2Q+O2,24h, N2O+O2,op, and O2,24h. > attach(red.cell.folate) > str(red.cell.folate) 'data.frame': 22 obs. of 2 varables: $ folate : num $ ventlaton: Factor w/ 3 levels "N2O+O2,24h","N2O+O2,op",..:

9 ANOVA usng anova and lm 17 > anova(lm(folate~ventlaton)) Analyss of Varance Table Response: folate Df Sum Sq Mean Sq F value Pr(>F) ventlaton * Resduals Sgnf. codes: 0 *** ** 0.01 * Interpretaton of regresson coeffcents 18 The regresson coeffcents for a factor varable do not have the usual meanng as the slope of a regresson analyss wth a numerc explanatory varable. > summary(lm(folate~ventlaton)) Coeffcents: Estmate Std. Error t value Pr(> t ) (Intercept) e-14 *** ventlatonn2o+o2,op * ventlatono2,24h

10 Multple test problem 19 Consder k ndependent tests, T1, T2,, Tk, each wth a sgnfcance probablty, say, Pr(T) = α. The probablty that at least one of them comes out sgnfcant s Pr(T1+T2+ +Tk) Pr(T1) + Pr(T2) + + Pr(Tk) = nα. Suppose α=0.05, then the chance of havng at least one postve result n 10 test s up to 50%. Thus, the p-values tend to be exaggerated. Bonferron correcton 20 The Bonferron correcton s a method used to address the problem of multple comparsons by dvdng the sgnfcance level by the number of tests, or, equvalently, by multplyng the p- values by the number of test Let Pr(T1+T2+ +Tk) = α, where α s the sgnfcance level for the entre seres of tests. Let Pr(T1) = Pr(T2) = = Pr(Tk) = β. Then, α kβ, or β α / k.

11 Multple comparson 21 The functon parwse.t.test s avalable to carry out all possble two-group comparsons, and meanwhle makng adjustments for multple comparsons, e.g., va Bonferron correcton > parwse.t.test(folate,ventlaton, p.adj="bonferron") Parwse comparsons usng t tests wth pooled SD data: folate and ventlaton N2O+O2,24h N2O+O2,op N2O+O2,op O2,24h P value adjustment method: bonferron Interpretaton of results by plots N2O+O2,24h N2O+O2,op O2,24h

12 Testng of homogenety of varance (1) 23 > bartlett.test(folate~ventlaton) Bartlett test of homogenety of varances data: folate by ventlaton Bartlett's K-squared = , df = 2, p-value = > flgner.test(folate~ventlaton) Flgner-Klleen test of homogenety of varances data: folate by ventlaton Flgner-Klleen:med ch-squared = , df = 2, p-value = The Levene s test (1) 24 Insenstve to non-normalty; more approprate for testng of homogenety of varance. Compute the absolute values of the resduals from the orgnal lnear regresson analyss; Ft a lnear model by regressng these absolute resduals on the same set of explanatory varables; Sgnfcant group effects are ndcatve of volaton of the homoscedastcty assumpton.

13 The Levene s test (2) 25 > g<-lm(folate~ventlaton) > summary(lm(abs(g$res)~ventlaton)) Coeffcents: Estmate Std. Error t value Pr(> t ) (Intercept) e-07 *** ventlatonn2o+o2,op * ventlatono2,24h * Dagnostcs of normalty 26 Normal Q-Q Plot Sample Quantles Theoretcal Quantles

14 Two-way ANOVA The data model 28 ( ) ( ) ( ) y j = µ + α+ βj + εj y = y + y y + y y + y y y + y j j j j

15 Decomposton of total sum of squares 29 SSY ( y ) 2 j y = j 2 ( ) ( j ) ( yj y yj y) j j 2 2 = n y y + m y y + + = SSA+ SSB+ SSE n y y SSA MSA= = dfa ( ) 2 m ( y ) 2 j y SSB j m 1 MSB= = dfb n 1 Mean squares & F statstc 30 SSA MSA= = dfa ( ) 2 n y y m 1 F = MSA/MSE ( ) 2 j j m y y SSB MSB= = dfb n 1 F = MSB/MSE SSE MSE= = dfe ( yj y y j+ y ) j ( m 1)( n 1) 2

16 Example --- data 31 > heart.rate <- data.frame( + hr = c(96,110,89,95,128,100,72,79,100, + 92,106,86,78,124,98,68,75,106, + 86,108,85,78,118,100,67,74,104, + 92,114,83,83,118,94,71,74,102), + subj=gl(9,1,36), + tme=gl(4,9,36,labels=c(0,30,60,120))) > str(heart.rate) 'data.frame': 36 obs. of 3 varables: $ hr : num $ subj: Factor w/ 9 levels "1","2","3","4",..: $ tme: Factor w/ 4 levels "0","30","60",..: Two-way ANOVA 32 > anova(lm(hr~subj + tme)) Analyss of Varance Table Response: hr Df Sum Sq Mean Sq F value Pr(>F) subj e-16 *** tme * Resduals Sgnf. codes: 0 *** ** 0.01 *

17 ANOVA n regresson analyss Sum of squares 34 ( y y ) 2 SSY = SSM ( y y ) 2 = ˆ ( y yˆ ) 2 SSR=

18 Example 35 > attach(thuesen) > lm.thuesen <- lm(short.velocty~blood.glucose) > anova(lm.thuesen) Analyss of Varance Table Response: short.velocty Df Sum Sq Mean Sq F value Pr(>F) blood.glucose * Resduals Sgnf. codes: 0 *** ** 0.01 * ANOVA for model selecton

19 Models & null hypothess 37 Full model: y= Xβ+ ε Reduced model: y= 1µ + ε Null hypothess: 0 1 βk 1 H : β =... = = 0 Sum of squares 38 SSY = ( y y) '( y y) ( ˆ) '( ˆ) SSR = εˆ ' εˆ = y Xβ y Xβ SSM = SSY - SSR

20 ANOVA table 39 Full model vs. reduced model 40 > gft4<-lm(speces~elevaton+nearest+scruz+adjacent,data=gala) > y<-as.vector(gala$speces) > SYY<-sum((y-mean(y))^2) > SYY [1] > RSS<-sum(gft4$res^2) > RSS [1] > F<-((SYY-RSS)/4)/(RSS/25) > F [1] > 1-pf(F,4,25) [1] e-07

21 Comparng two models 41 > gft2<-lm(speces~elevaton+nearest,data=gala) > anova(gft4,gft2) Analyss of Varance Table Model 1: Speces ~ Elevaton + Nearest + Scruz + Adjacent Model 2: Speces ~ Elevaton + Nearest Res.Df RSS Df Sum of Sq F Pr(>F) *** --- Sgnf. codes: 0 *** ** 0.01 *

PSYCHOLOGICAL RESEARCH (PYC 304-C) Lecture 12

PSYCHOLOGICAL RESEARCH (PYC 304-C) Lecture 12 14 The Ch-squared dstrbuton PSYCHOLOGICAL RESEARCH (PYC 304-C) Lecture 1 If a normal varable X, havng mean µ and varance σ, s standardsed, the new varable Z has a mean 0 and varance 1. When ths standardsed

More information

STATISTICAL DATA ANALYSIS IN EXCEL

STATISTICAL DATA ANALYSIS IN EXCEL Mcroarray Center STATISTICAL DATA ANALYSIS IN EXCEL Lecture 6 Some Advanced Topcs Dr. Petr Nazarov 14-01-013 petr.nazarov@crp-sante.lu Statstcal data analyss n Ecel. 6. Some advanced topcs Correcton for

More information

Causal, Explanatory Forecasting. Analysis. Regression Analysis. Simple Linear Regression. Which is Independent? Forecasting

Causal, Explanatory Forecasting. Analysis. Regression Analysis. Simple Linear Regression. Which is Independent? Forecasting Causal, Explanatory Forecastng Assumes cause-and-effect relatonshp between system nputs and ts output Forecastng wth Regresson Analyss Rchard S. Barr Inputs System Cause + Effect Relatonshp The job of

More information

THE METHOD OF LEAST SQUARES THE METHOD OF LEAST SQUARES

THE METHOD OF LEAST SQUARES THE METHOD OF LEAST SQUARES The goal: to measure (determne) an unknown quantty x (the value of a RV X) Realsaton: n results: y 1, y 2,..., y j,..., y n, (the measured values of Y 1, Y 2,..., Y j,..., Y n ) every result s encumbered

More information

SIMPLE LINEAR CORRELATION

SIMPLE LINEAR CORRELATION SIMPLE LINEAR CORRELATION Smple lnear correlaton s a measure of the degree to whch two varables vary together, or a measure of the ntensty of the assocaton between two varables. Correlaton often s abused.

More information

CHAPTER 14 MORE ABOUT REGRESSION

CHAPTER 14 MORE ABOUT REGRESSION CHAPTER 14 MORE ABOUT REGRESSION We learned n Chapter 5 that often a straght lne descrbes the pattern of a relatonshp between two quanttatve varables. For nstance, n Example 5.1 we explored the relatonshp

More information

CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol

CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK Sample Stablty Protocol Background The Cholesterol Reference Method Laboratory Network (CRMLN) developed certfcaton protocols for total cholesterol, HDL

More information

Economic Interpretation of Regression. Theory and Applications

Economic Interpretation of Regression. Theory and Applications Economc Interpretaton of Regresson Theor and Applcatons Classcal and Baesan Econometrc Methods Applcaton of mathematcal statstcs to economc data for emprcal support Economc theor postulates a qualtatve

More information

NPAR TESTS. One-Sample Chi-Square Test. Cell Specification. Observed Frequencies 1O i 6. Expected Frequencies 1EXP i 6

NPAR TESTS. One-Sample Chi-Square Test. Cell Specification. Observed Frequencies 1O i 6. Expected Frequencies 1EXP i 6 PAR TESTS If a WEIGHT varable s specfed, t s used to replcate a case as many tmes as ndcated by the weght value rounded to the nearest nteger. If the workspace requrements are exceeded and samplng has

More information

How To Calculate The Accountng Perod Of Nequalty

How To Calculate The Accountng Perod Of Nequalty Inequalty and The Accountng Perod Quentn Wodon and Shlomo Ytzha World Ban and Hebrew Unversty September Abstract Income nequalty typcally declnes wth the length of tme taen nto account for measurement.

More information

Testing The Torah Code Hypothesis: The Experimental Protocol

Testing The Torah Code Hypothesis: The Experimental Protocol Testng The Torah Code Hypothess: The Expermental Protocol Robert M. Haralck Computer Scence, Graduate Center Cty Unversty of New York 365 Ffth Avenue New York, NY 10016 Abstract Ths s the second part of

More information

Analysis of Premium Liabilities for Australian Lines of Business

Analysis of Premium Liabilities for Australian Lines of Business Summary of Analyss of Premum Labltes for Australan Lnes of Busness Emly Tao Honours Research Paper, The Unversty of Melbourne Emly Tao Acknowledgements I am grateful to the Australan Prudental Regulaton

More information

1 De nitions and Censoring

1 De nitions and Censoring De ntons and Censorng. Survval Analyss We begn by consderng smple analyses but we wll lead up to and take a look at regresson on explanatory factors., as n lnear regresson part A. The mportant d erence

More information

Exhaustive Regression. An Exploration of Regression-Based Data Mining Techniques Using Super Computation

Exhaustive Regression. An Exploration of Regression-Based Data Mining Techniques Using Super Computation Exhaustve Regresson An Exploraton of Regresson-Based Data Mnng Technques Usng Super Computaton Antony Daves, Ph.D. Assocate Professor of Economcs Duquesne Unversty Pttsburgh, PA 58 Research Fellow The

More information

N-Way Analysis of Variance

N-Way Analysis of Variance N-Way Analysis of Variance 1 Introduction A good example when to use a n-way ANOVA is for a factorial design. A factorial design is an efficient way to conduct an experiment. Each observation has data

More information

Evaluating credit risk models: A critique and a new proposal

Evaluating credit risk models: A critique and a new proposal Evaluatng credt rsk models: A crtque and a new proposal Hergen Frerchs* Gunter Löffler Unversty of Frankfurt (Man) February 14, 2001 Abstract Evaluatng the qualty of credt portfolo rsk models s an mportant

More information

Can Auto Liability Insurance Purchases Signal Risk Attitude?

Can Auto Liability Insurance Purchases Signal Risk Attitude? Internatonal Journal of Busness and Economcs, 2011, Vol. 10, No. 2, 159-164 Can Auto Lablty Insurance Purchases Sgnal Rsk Atttude? Chu-Shu L Department of Internatonal Busness, Asa Unversty, Tawan Sheng-Chang

More information

Part 1: quick summary 5. Part 2: understanding the basics of ANOVA 8

Part 1: quick summary 5. Part 2: understanding the basics of ANOVA 8 Statstcs Rudolf N. Cardnal Graduate-level statstcs for psychology and neuroscence NOV n practce, and complex NOV desgns Verson of May 4 Part : quck summary 5. Overvew of ths document 5. Background knowledge

More information

CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES

CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES CHAPTER 5 RELATIONSHIPS BETWEEN QUANTITATIVE VARIABLES In ths chapter, we wll learn how to descrbe the relatonshp between two quanttatve varables. Remember (from Chapter 2) that the terms quanttatve varable

More information

Latent Class Regression. Statistics for Psychosocial Research II: Structural Models December 4 and 6, 2006

Latent Class Regression. Statistics for Psychosocial Research II: Structural Models December 4 and 6, 2006 Latent Class Regresson Statstcs for Psychosocal Research II: Structural Models December 4 and 6, 2006 Latent Class Regresson (LCR) What s t and when do we use t? Recall the standard latent class model

More information

Psicológica Universidad de Valencia psicologica@uv.es ISSN (Versión impresa): 0211-2159 ISSN (Versión en línea): 1576-8597 ESPAÑA

Psicológica Universidad de Valencia psicologica@uv.es ISSN (Versión impresa): 0211-2159 ISSN (Versión en línea): 1576-8597 ESPAÑA Pscológca Unversdad de Valenca pscologca@uv.es ISSN (Versón mpresa): 02-259 ISSN (Versón en línea): 576-8597 ESPAÑA 2000 Vcenta Serra / Vcenç Quera / Anton Solanas AUTOCORRELATION EFFECT ON TYPE I ERROR

More information

CS 2750 Machine Learning. Lecture 3. Density estimation. CS 2750 Machine Learning. Announcements

CS 2750 Machine Learning. Lecture 3. Density estimation. CS 2750 Machine Learning. Announcements Lecture 3 Densty estmaton Mlos Hauskrecht mlos@cs.ptt.edu 5329 Sennott Square Next lecture: Matlab tutoral Announcements Rules for attendng the class: Regstered for credt Regstered for audt (only f there

More information

PRACTICE 1: MUTUAL FUNDS EVALUATION USING MATLAB.

PRACTICE 1: MUTUAL FUNDS EVALUATION USING MATLAB. PRACTICE 1: MUTUAL FUNDS EVALUATION USING MATLAB. INDEX 1. Load data usng the Edtor wndow and m-fle 2. Learnng to save results from the Edtor wndow. 3. Computng the Sharpe Rato 4. Obtanng the Treynor Rato

More information

Statistical Methods to Develop Rating Models

Statistical Methods to Develop Rating Models Statstcal Methods to Develop Ratng Models [Evelyn Hayden and Danel Porath, Österrechsche Natonalbank and Unversty of Appled Scences at Manz] Source: The Basel II Rsk Parameters Estmaton, Valdaton, and

More information

14.74 Lecture 5: Health (2)

14.74 Lecture 5: Health (2) 14.74 Lecture 5: Health (2) Esther Duflo February 17, 2004 1 Possble Interventons Last tme we dscussed possble nterventons. Let s take one: provdng ron supplements to people, for example. From the data,

More information

Calculation of Sampling Weights

Calculation of Sampling Weights Perre Foy Statstcs Canada 4 Calculaton of Samplng Weghts 4.1 OVERVIEW The basc sample desgn used n TIMSS Populatons 1 and 2 was a two-stage stratfed cluster desgn. 1 The frst stage conssted of a sample

More information

1. Measuring association using correlation and regression

1. Measuring association using correlation and regression How to measure assocaton I: Correlaton. 1. Measurng assocaton usng correlaton and regresson We often would lke to know how one varable, such as a mother's weght, s related to another varable, such as a

More information

Chapter XX More advanced approaches to the analysis of survey data. Gad Nathan Hebrew University Jerusalem, Israel. Abstract

Chapter XX More advanced approaches to the analysis of survey data. Gad Nathan Hebrew University Jerusalem, Israel. Abstract Household Sample Surveys n Developng and Transton Countres Chapter More advanced approaches to the analyss of survey data Gad Nathan Hebrew Unversty Jerusalem, Israel Abstract In the present chapter, we

More information

L10: Linear discriminants analysis

L10: Linear discriminants analysis L0: Lnear dscrmnants analyss Lnear dscrmnant analyss, two classes Lnear dscrmnant analyss, C classes LDA vs. PCA Lmtatons of LDA Varants of LDA Other dmensonalty reducton methods CSCE 666 Pattern Analyss

More information

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ).

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ). REVIEW OF RISK MANAGEMENT CONCEPTS LOSS DISTRIBUTIONS AND INSURANCE Loss and nsurance: When someone s subject to the rsk of ncurrng a fnancal loss, the loss s generally modeled usng a random varable or

More information

An Alternative Way to Measure Private Equity Performance

An Alternative Way to Measure Private Equity Performance An Alternatve Way to Measure Prvate Equty Performance Peter Todd Parlux Investment Technology LLC Summary Internal Rate of Return (IRR) s probably the most common way to measure the performance of prvate

More information

Quantization Effects in Digital Filters

Quantization Effects in Digital Filters Quantzaton Effects n Dgtal Flters Dstrbuton of Truncaton Errors In two's complement representaton an exact number would have nfntely many bts (n general). When we lmt the number of bts to some fnte value

More information

7 ANALYSIS OF VARIANCE (ANOVA)

7 ANALYSIS OF VARIANCE (ANOVA) 7 ANALYSIS OF VARIANCE (ANOVA) Chapter 7 Analyss of Varance (Anova) Objectves After studyng ths chapter you should apprecate the need for analysng data from more than two samples; understand the underlyng

More information

International University of Japan Public Management & Policy Analysis Program

International University of Japan Public Management & Policy Analysis Program Internatonal Unversty of Japan Publc Management & Polcy Analyss Program Practcal Gudes To Panel Data Modelng: A Step by Step Analyss Usng Stata * Hun Myoung Park, Ph.D. kucc65@uj.ac.jp 1. Introducton.

More information

Meta-Analysis of Hazard Ratios

Meta-Analysis of Hazard Ratios NCSS Statstcal Softare Chapter 458 Meta-Analyss of Hazard Ratos Introducton Ths module performs a meta-analyss on a set of to-group, tme to event (survval), studes n hch some data may be censored. These

More information

Survival analysis methods in Insurance Applications in car insurance contracts

Survival analysis methods in Insurance Applications in car insurance contracts Survval analyss methods n Insurance Applcatons n car nsurance contracts Abder OULIDI 1 Jean-Mare MARION 2 Hervé GANACHAUD 3 Abstract In ths wor, we are nterested n survval models and ther applcatons on

More information

Risk-based Fatigue Estimate of Deep Water Risers -- Course Project for EM388F: Fracture Mechanics, Spring 2008

Risk-based Fatigue Estimate of Deep Water Risers -- Course Project for EM388F: Fracture Mechanics, Spring 2008 Rsk-based Fatgue Estmate of Deep Water Rsers -- Course Project for EM388F: Fracture Mechancs, Sprng 2008 Chen Sh Department of Cvl, Archtectural, and Envronmental Engneerng The Unversty of Texas at Austn

More information

Is There A Tradeoff between Employer-Provided Health Insurance and Wages?

Is There A Tradeoff between Employer-Provided Health Insurance and Wages? Is There A Tradeoff between Employer-Provded Health Insurance and Wages? Lye Zhu, Southern Methodst Unversty October 2005 Abstract Though most of the lterature n health nsurance and the labor market assumes

More information

Single and multiple stage classifiers implementing logistic discrimination

Single and multiple stage classifiers implementing logistic discrimination Sngle and multple stage classfers mplementng logstc dscrmnaton Hélo Radke Bttencourt 1 Dens Alter de Olvera Moraes 2 Vctor Haertel 2 1 Pontfíca Unversdade Católca do Ro Grande do Sul - PUCRS Av. Ipranga,

More information

Diagnostic Tests of Cross Section Independence for Nonlinear Panel Data Models

Diagnostic Tests of Cross Section Independence for Nonlinear Panel Data Models DISCUSSION PAPER SERIES IZA DP No. 2756 Dagnostc ests of Cross Secton Independence for Nonlnear Panel Data Models Cheng Hsao M. Hashem Pesaran Andreas Pck Aprl 2007 Forschungsnsttut zur Zukunft der Arbet

More information

Binomial Link Functions. Lori Murray, Phil Munz

Binomial Link Functions. Lori Murray, Phil Munz Bnomal Lnk Functons Lor Murray, Phl Munz Bnomal Lnk Functons Logt Lnk functon: ( p) p ln 1 p Probt Lnk functon: ( p) 1 ( p) Complentary Log Log functon: ( p) ln( ln(1 p)) Motvatng Example A researcher

More information

Learning from Large Distributed Data: A Scaling Down Sampling Scheme for Efficient Data Processing

Learning from Large Distributed Data: A Scaling Down Sampling Scheme for Efficient Data Processing Internatonal Journal of Machne Learnng and Computng, Vol. 4, No. 3, June 04 Learnng from Large Dstrbuted Data: A Scalng Down Samplng Scheme for Effcent Data Processng Che Ngufor and Janusz Wojtusak part

More information

Brigid Mullany, Ph.D University of North Carolina, Charlotte

Brigid Mullany, Ph.D University of North Carolina, Charlotte Evaluaton And Comparson Of The Dfferent Standards Used To Defne The Postonal Accuracy And Repeatablty Of Numercally Controlled Machnng Center Axes Brgd Mullany, Ph.D Unversty of North Carolna, Charlotte

More information

Although ordinary least-squares (OLS) regression

Although ordinary least-squares (OLS) regression egresson through the Orgn Blackwell Oxford, TEST 0141-98X 003 5 31000 Orgnal Joseph Teachng G. UK Artcle Publshng Esenhauer through Statstcs the Ltd Trust Orgn 001 KEYWODS: Teachng; egresson; Analyss of

More information

What is Candidate Sampling

What is Candidate Sampling What s Canddate Samplng Say we have a multclass or mult label problem where each tranng example ( x, T ) conssts of a context x a small (mult)set of target classes T out of a large unverse L of possble

More information

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by 6 CHAPTER 8 COMPLEX VECTOR SPACES 5. Fnd the kernel of the lnear transformaton gven n Exercse 5. In Exercses 55 and 56, fnd the mage of v, for the ndcated composton, where and are gven by the followng

More information

Marginal Returns to Education For Teachers

Marginal Returns to Education For Teachers The Onlne Journal of New Horzons n Educaton Volume 4, Issue 3 MargnalReturnstoEducatonForTeachers RamleeIsmal,MarnahAwang ABSTRACT FacultyofManagementand Economcs UnverstPenddkanSultan Idrs ramlee@fpe.ups.edu.my

More information

Statistical algorithms in Review Manager 5

Statistical algorithms in Review Manager 5 Statstcal algorthms n Reve Manager 5 Jonathan J Deeks and Julan PT Hggns on behalf of the Statstcal Methods Group of The Cochrane Collaboraton August 00 Data structure Consder a meta-analyss of k studes

More information

ENVIRONMENTAL MONITORING Vol. II - Statistical Analysis and Quality Assurance of Monitoring Data - Iris Yeung

ENVIRONMENTAL MONITORING Vol. II - Statistical Analysis and Quality Assurance of Monitoring Data - Iris Yeung STATISTICAL ANALYSIS AND QUALITY ASSURANCE OF MONITORING DATA Irs Yeung Cty Unversty of Hong Kong, Kowloon, Hong Kong Keywords: AIC, ARIMA model, BIC, cluster analyss, dscrmnant analyss, factor analyss,

More information

Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur

Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur Module LOSSLESS IMAGE COMPRESSION SYSTEMS Lesson 3 Lossless Compresson: Huffman Codng Instructonal Objectves At the end of ths lesson, the students should be able to:. Defne and measure source entropy..

More information

Evaluating the generalizability of an RCT using electronic health records data

Evaluating the generalizability of an RCT using electronic health records data Evaluatng the generalzablty of an RCT usng electronc health records data 3 nterestng questons Is our RCT representatve? How can we generalze RCT results? Can we use EHR* data as a control group? *) Electronc

More information

Approximating Cross-validatory Predictive Evaluation in Bayesian Latent Variables Models with Integrated IS and WAIC

Approximating Cross-validatory Predictive Evaluation in Bayesian Latent Variables Models with Integrated IS and WAIC Approxmatng Cross-valdatory Predctve Evaluaton n Bayesan Latent Varables Models wth Integrated IS and WAIC Longha L Department of Mathematcs and Statstcs Unversty of Saskatchewan Saskatoon, SK, CANADA

More information

1.2 DISTRIBUTIONS FOR CATEGORICAL DATA

1.2 DISTRIBUTIONS FOR CATEGORICAL DATA DISTRIBUTIONS FOR CATEGORICAL DATA 5 present models for a categorcal response wth matched pars; these apply, for nstance, wth a categorcal response measured for the same subjects at two tmes. Chapter 11

More information

World currency options market efficiency

World currency options market efficiency Arful Hoque (Australa) World optons market effcency Abstract The World Currency Optons (WCO) maket began tradng n July 2007 on the Phladelpha Stock Exchange (PHLX) wth the new features. These optons are

More information

Regression Models for a Binary Response Using EXCEL and JMP

Regression Models for a Binary Response Using EXCEL and JMP SEMATECH 997 Statstcal Methods Symposum Austn Regresson Models for a Bnary Response Usng EXCEL and JMP Davd C. Trndade, Ph.D. STAT-TECH Consultng and Tranng n Appled Statstcs San Jose, CA Topcs Practcal

More information

= 6degrees of freedom, if the test statistic value f = 4.53, then P-value =.

= 6degrees of freedom, if the test statistic value f = 4.53, then P-value =. Sectn 9.5 4. In testng H : σ = σ versus Ha : σ > σ wth ν = 4 and ν = 6degrees f freedm, f the test statstc value f = 4.53, then P-value =..05 75. The sample standard devatn f sdum cncentratn n whle bld

More information

Richard W. Andrews and William C. Birdsall, University of Michigan Richard W. Andrews, Michigan Business School, Ann Arbor, MI 48109-1234.

Richard W. Andrews and William C. Birdsall, University of Michigan Richard W. Andrews, Michigan Business School, Ann Arbor, MI 48109-1234. SIMULTANEOUS CONFIDENCE INTERVALS: A COMPARISON UNDER COMPLEX SAMPLING Rchard W. Andrews and Wllam C. Brdsall, Unversty of Mchgan Rchard W. Andrews, Mchgan Busness School, Ann Arbor, MI 48109-1234 EY WORDS:

More information

Data Visualization by Pairwise Distortion Minimization

Data Visualization by Pairwise Distortion Minimization Communcatons n Statstcs, Theory and Methods 34 (6), 005 Data Vsualzaton by Parwse Dstorton Mnmzaton By Marc Sobel, and Longn Jan Lateck* Department of Statstcs and Department of Computer and Informaton

More information

Transition Matrix Models of Consumer Credit Ratings

Transition Matrix Models of Consumer Credit Ratings Transton Matrx Models of Consumer Credt Ratngs Abstract Although the corporate credt rsk lterature has many studes modellng the change n the credt rsk of corporate bonds over tme, there s far less analyss

More information

Course outline. Financial Time Series Analysis. Overview. Data analysis. Predictive signal. Trading strategy

Course outline. Financial Time Series Analysis. Overview. Data analysis. Predictive signal. Trading strategy Fnancal Tme Seres Analyss Patrck McSharry patrck@mcsharry.net www.mcsharry.net Trnty Term 2014 Mathematcal Insttute Unversty of Oxford Course outlne 1. Data analyss, probablty, correlatons, vsualsaton

More information

Recurrence. 1 Definitions and main statements

Recurrence. 1 Definitions and main statements Recurrence 1 Defntons and man statements Let X n, n = 0, 1, 2,... be a MC wth the state space S = (1, 2,...), transton probabltes p j = P {X n+1 = j X n = }, and the transton matrx P = (p j ),j S def.

More information

Forecasting the Direction and Strength of Stock Market Movement

Forecasting the Direction and Strength of Stock Market Movement Forecastng the Drecton and Strength of Stock Market Movement Jngwe Chen Mng Chen Nan Ye cjngwe@stanford.edu mchen5@stanford.edu nanye@stanford.edu Abstract - Stock market s one of the most complcated systems

More information

DEFINING %COMPLETE IN MICROSOFT PROJECT

DEFINING %COMPLETE IN MICROSOFT PROJECT CelersSystems DEFINING %COMPLETE IN MICROSOFT PROJECT PREPARED BY James E Aksel, PMP, PMI-SP, MVP For Addtonal Informaton about Earned Value Management Systems and reportng, please contact: CelersSystems,

More information

Traffic-light a stress test for life insurance provisions

Traffic-light a stress test for life insurance provisions MEMORANDUM Date 006-09-7 Authors Bengt von Bahr, Göran Ronge Traffc-lght a stress test for lfe nsurance provsons Fnansnspetonen P.O. Box 6750 SE-113 85 Stocholm [Sveavägen 167] Tel +46 8 787 80 00 Fax

More information

Media Mix Modeling vs. ANCOVA. An Analytical Debate

Media Mix Modeling vs. ANCOVA. An Analytical Debate Meda M Modelng vs. ANCOVA An Analytcal Debate What s the best way to measure ncremental sales, or lft, generated from marketng nvestment dollars? 2 Measurng ROI From Promotonal Spend Where possble to mplement,

More information

4 Hypothesis testing in the multiple regression model

4 Hypothesis testing in the multiple regression model 4 Hypothess testng n the multple regresson model Ezequel Urel Unversdad de Valenca Verson: 9-13 4.1 Hypothess testng: an overvew 1 4.1.1 Formulaton of the null hypothess and the alternatve hypothess 4.1.

More information

Financial Instability and Life Insurance Demand + Mahito Okura *

Financial Instability and Life Insurance Demand + Mahito Okura * Fnancal Instablty and Lfe Insurance Demand + Mahto Okura * Norhro Kasuga ** Abstract Ths paper estmates prvate lfe nsurance and Kampo demand functons usng household-level data provded by the Postal Servces

More information

Adaptive Clinical Trials Incorporating Treatment Selection and Evaluation: Methodology and Applications in Multiple Sclerosis

Adaptive Clinical Trials Incorporating Treatment Selection and Evaluation: Methodology and Applications in Multiple Sclerosis Adaptve Clncal Trals Incorporatng Treatment electon and Evaluaton: Methodology and Applcatons n Multple cleross usan Todd, Tm Frede, Ngel tallard, Ncholas Parsons, Elsa Valdés-Márquez, Jeremy Chataway

More information

Conceptual and Practical Issues in the Statistical Design and Analysis of Usability Tests

Conceptual and Practical Issues in the Statistical Design and Analysis of Usability Tests Conceptual and Practcal Issues n the Statstcal Desgn and Analyss of Usablty Tests John J. Bosley (Bosley_J@bls.gov), BLS, John L. Eltnge (Eltnge_J@bls.gov), BLS, Jean E. Fox (Fox_J@bls.gov), BLS, Scott

More information

BERNSTEIN POLYNOMIALS

BERNSTEIN POLYNOMIALS On-Lne Geometrc Modelng Notes BERNSTEIN POLYNOMIALS Kenneth I. Joy Vsualzaton and Graphcs Research Group Department of Computer Scence Unversty of Calforna, Davs Overvew Polynomals are ncredbly useful

More information

Sketching Sampled Data Streams

Sketching Sampled Data Streams Sketchng Sampled Data Streams Florn Rusu, Aln Dobra CISE Department Unversty of Florda Ganesvlle, FL, USA frusu@cse.ufl.edu adobra@cse.ufl.edu Abstract Samplng s used as a unversal method to reduce the

More information

RECENT DEVELOPMENTS IN QUANTITATIVE COMPARATIVE METHODOLOGY:

RECENT DEVELOPMENTS IN QUANTITATIVE COMPARATIVE METHODOLOGY: Federco Podestà RECENT DEVELOPMENTS IN QUANTITATIVE COMPARATIVE METHODOLOGY: THE CASE OF POOLED TIME SERIES CROSS-SECTION ANALYSIS DSS PAPERS SOC 3-02 INDICE 1. Advantages and Dsadvantages of Pooled Analyss...

More information

General Iteration Algorithm for Classification Ratemaking

General Iteration Algorithm for Classification Ratemaking General Iteraton Algorthm for Classfcaton Ratemakng by Luyang Fu and Cheng-sheng eter Wu ABSTRACT In ths study, we propose a flexble and comprehensve teraton algorthm called general teraton algorthm (GIA)

More information

Realistic Image Synthesis

Realistic Image Synthesis Realstc Image Synthess - Combned Samplng and Path Tracng - Phlpp Slusallek Karol Myszkowsk Vncent Pegoraro Overvew: Today Combned Samplng (Multple Importance Samplng) Renderng and Measurng Equaton Random

More information

5 Multiple regression analysis with qualitative information

5 Multiple regression analysis with qualitative information 5 Multple regresson analyss wth qualtatve nformaton Ezequel Urel Unversty of Valenca Verson: 9-13 5.1 Introducton of qualtatve nformaton n econometrc models. 1 5. A sngle dummy ndependent varable 5.3 Multple

More information

Chapter 5 Analysis of variance SPSS Analysis of variance

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,

More information

PRIVATE SCHOOL CHOICE: THE EFFECTS OF RELIGIOUS AFFILIATION AND PARTICIPATION

PRIVATE SCHOOL CHOICE: THE EFFECTS OF RELIGIOUS AFFILIATION AND PARTICIPATION PRIVATE SCHOOL CHOICE: THE EFFECTS OF RELIIOUS AFFILIATION AND PARTICIPATION Danny Cohen-Zada Department of Economcs, Ben-uron Unversty, Beer-Sheva 84105, Israel Wllam Sander Department of Economcs, DePaul

More information

Microarray data normalization and transformation

Microarray data normalization and transformation revew Mcroarray data normalzaton and transformaton John Quackenbush do:38/ng3 Nature Publshng Group http://wwwnaturecom/naturegenetcs Underlyng every mcroarray experment s an expermental queston that one

More information

Stress test for measuring insurance risks in non-life insurance

Stress test for measuring insurance risks in non-life insurance PROMEMORIA Datum June 01 Fnansnspektonen Författare Bengt von Bahr, Younes Elonq and Erk Elvers Stress test for measurng nsurance rsks n non-lfe nsurance Summary Ths memo descrbes stress testng of nsurance

More information

Multiple Linear Regression

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

More information

Quantification of qualitative data: the case of the Central Bank of Armenia

Quantification of qualitative data: the case of the Central Bank of Armenia Quantfcaton of qualtatve data: the case of the Central Bank of Armena Martn Galstyan 1 and Vahe Movssyan 2 Overvew The effect of non-fnancal organsatons and consumers atttudes on economc actvty s a subject

More information

Wage inequality and returns to schooling in Europe: a semi-parametric approach using EU-SILC data

Wage inequality and returns to schooling in Europe: a semi-parametric approach using EU-SILC data MPRA Munch Personal RePEc Archve Wage nequalty and returns to schoolng n Europe: a sem-parametrc approach usng EU-SILC data Marco Bagett and Sergo Sccchtano Unversty La Sapenza Rome, Mnstry of Economc

More information

The announcement effect on mean and variance for underwritten and non-underwritten SEOs

The announcement effect on mean and variance for underwritten and non-underwritten SEOs The announcement effect on mean and varance for underwrtten and non-underwrtten SEOs Bachelor Essay n Fnancal Economcs Department of Economcs Sprng 013 Marcus Wkner and Joel Anehem Ulvenäs Supervsor: Professor

More information

World Economic Vulnerability Monitor (WEVUM) Trade shock analysis

World Economic Vulnerability Monitor (WEVUM) Trade shock analysis World Economc Vulnerablty Montor (WEVUM) Trade shock analyss Measurng the mpact of the global shocks on trade balances va prce and demand effects Alex Izureta and Rob Vos UN DESA 1. Non-techncal descrpton

More information

The Application of Fractional Brownian Motion in Option Pricing

The Application of Fractional Brownian Motion in Option Pricing Vol. 0, No. (05), pp. 73-8 http://dx.do.org/0.457/jmue.05.0..6 The Applcaton of Fractonal Brownan Moton n Opton Prcng Qng-xn Zhou School of Basc Scence,arbn Unversty of Commerce,arbn zhouqngxn98@6.com

More information

Method for assessment of companies' credit rating (AJPES S.BON model) Short description of the methodology

Method for assessment of companies' credit rating (AJPES S.BON model) Short description of the methodology Method for assessment of companes' credt ratng (AJPES S.BON model) Short descrpton of the methodology Ljubljana, May 2011 ABSTRACT Assessng Slovenan companes' credt ratng scores usng the AJPES S.BON model

More information

Meta-analysis in Psychological Research.

Meta-analysis in Psychological Research. Internatonal Journal of Psychologcal Research, 010. Vol. 3. No. 1. ISSN mpresa (prnted 011-084 ISSN electrónca (electronc 011-079 Sánchez-Meca, J., Marín-Martínez, F., (010. Meta-analyss n Psychologcal

More information

Logistic Regression. Lecture 4: More classifiers and classes. Logistic regression. Adaboost. Optimization. Multiple class classification

Logistic Regression. Lecture 4: More classifiers and classes. Logistic regression. Adaboost. Optimization. Multiple class classification Lecture 4: More classfers and classes C4B Machne Learnng Hlary 20 A. Zsserman Logstc regresson Loss functons revsted Adaboost Loss functons revsted Optmzaton Multple class classfcaton Logstc Regresson

More information

Online Appendix Supplemental Material for Market Microstructure Invariance: Empirical Hypotheses

Online Appendix Supplemental Material for Market Microstructure Invariance: Empirical Hypotheses Onlne Appendx Supplemental Materal for Market Mcrostructure Invarance: Emprcal Hypotheses Albert S. Kyle Unversty of Maryland akyle@rhsmth.umd.edu Anna A. Obzhaeva New Economc School aobzhaeva@nes.ru Table

More information

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis The Development of Web Log Mnng Based on Improve-K-Means Clusterng Analyss TngZhong Wang * College of Informaton Technology, Luoyang Normal Unversty, Luoyang, 471022, Chna wangtngzhong2@sna.cn Abstract.

More information

Robust Design of Public Storage Warehouses. Yeming (Yale) Gong EMLYON Business School

Robust Design of Public Storage Warehouses. Yeming (Yale) Gong EMLYON Business School Robust Desgn of Publc Storage Warehouses Yemng (Yale) Gong EMLYON Busness School Rene de Koster Rotterdam school of management, Erasmus Unversty Abstract We apply robust optmzaton and revenue management

More information

Calibration and Linear Regression Analysis: A Self-Guided Tutorial

Calibration and Linear Regression Analysis: A Self-Guided Tutorial Calbraton and Lnear Regresson Analyss: A Self-Guded Tutoral Part The Calbraton Curve, Correlaton Coeffcent and Confdence Lmts CHM314 Instrumental Analyss Department of Chemstry, Unversty of Toronto Dr.

More information

ADVERSE SELECTION IN INSURANCE MARKETS: POLICYHOLDER EVIDENCE FROM THE U.K. ANNUITY MARKET *

ADVERSE SELECTION IN INSURANCE MARKETS: POLICYHOLDER EVIDENCE FROM THE U.K. ANNUITY MARKET * ADVERSE SELECTION IN INSURANCE MARKETS: POLICYHOLDER EVIDENCE FROM THE U.K. ANNUITY MARKET * Amy Fnkelsten Harvard Unversty and NBER James Poterba MIT and NBER * We are grateful to Jeffrey Brown, Perre-Andre

More information

ANOVA Notes Page 1. Analysis of Variance for a One-Way Classification of Data

ANOVA Notes Page 1. Analysis of Variance for a One-Way Classification of Data ANOVA Notes Page Aalss of Varace for a Oe-Wa Classfcato of Data Cosder a sgle factor or treatmet doe at levels (e, there are,, 3, dfferet varatos o the prescrbed treatmet) Wth a gve treatmet level there

More information

) of the Cell class is created containing information about events associated with the cell. Events are added to the Cell instance

) of the Cell class is created containing information about events associated with the cell. Events are added to the Cell instance Calbraton Method Instances of the Cell class (one nstance for each FMS cell) contan ADC raw data and methods assocated wth each partcular FMS cell. The calbraton method ncludes event selecton (Class Cell

More information

A Practitioner's Guide to Generalized Linear Models

A Practitioner's Guide to Generalized Linear Models A Practtoner's Gude to Generalzed Lnear Models A CAS Study Note Duncan Anderson, FIA Sholom Feldblum, FCAS Claudne Modln, FCAS Dors Schrmacher, FCAS Ernesto Schrmacher, ASA Neeza Thand, FCAS Thrd Edton

More information

Design and Analysis of Benchmarking Experiments for Distributed Internet Services

Design and Analysis of Benchmarking Experiments for Distributed Internet Services Desgn and Analyss of Benchmarkng Experments for Dstrbuted Internet Servces Eytan Bakshy Facebook Menlo Park, CA eytan@fb.com Etan Frachtenberg Facebook Menlo Park, CA etan@frachtenberg.org ABSTRACT The

More information

Forecasting and Stress Testing Credit Card Default using Dynamic Models

Forecasting and Stress Testing Credit Card Default using Dynamic Models Forecastng and Stress Testng Credt Card Default usng Dynamc Models Tony Bellott and Jonathan Crook Credt Research Centre Unversty of Ednburgh Busness School Verson 4.5 Abstract Typcally models of credt

More information

Risk Model of Long-Term Production Scheduling in Open Pit Gold Mining

Risk Model of Long-Term Production Scheduling in Open Pit Gold Mining Rsk Model of Long-Term Producton Schedulng n Open Pt Gold Mnng R Halatchev 1 and P Lever 2 ABSTRACT Open pt gold mnng s an mportant sector of the Australan mnng ndustry. It uses large amounts of nvestments,

More information

HÜCKEL MOLECULAR ORBITAL THEORY

HÜCKEL MOLECULAR ORBITAL THEORY 1 HÜCKEL MOLECULAR ORBITAL THEORY In general, the vast maorty polyatomc molecules can be thought of as consstng of a collecton of two electron bonds between pars of atoms. So the qualtatve pcture of σ

More information