Application of Ghosh, Grizzle and Sen s Nonparametric Methods in. Longitudinal Studies Using SAS PROC GLM

Size: px
Start display at page:

Download "Application of Ghosh, Grizzle and Sen s Nonparametric Methods in. Longitudinal Studies Using SAS PROC GLM"

Transcription

1 Application of Ghosh, Grizzle and Sen s Nonparametric Methods in Longitudinal Studies Using SAS PROC GLM Chan Zeng and Gary O. Zerbe Department of Preventive Medicine and Biometrics University of Colorado Health Sciences Center Denver, Colorado, U.S.A. Abstract. The 973 paper Nonparametric methods in longitudinal studies by Ghosh, Grizzle and Sen provides a very useful nonparametric approach to the statistical analysis of longitudinal data. We briefly review this paper and indicate how easily their method can be implemented in SAS PROC GLM. We reproduce their example, and demonstrate that permutation p values obtained from a large random sample of the permutations or exact F approximations recently added to SAS PROC GLM is a better approach than their chi-square approximation. Key words: Multivariate permutation test; Multivariate rank sum test; Nonparametric multivariate general linear model.

2 . Introduction The paper presented by Ghosh, Grizzle and Sen (973) provides a very useful nonparametric method for the statistical analysis of longitudinal data. Their proposed procedure includes two steps. First, they transform the raw data to regression coefficients, such as intercepts and slopes, and then transform the regression coefficients to ranks. Second, the ranks are then subjected to a multivariate rank sums test, proposed by Puri and Sen (966), that did not require the assumption of multivariate normality. We revisit this paper and indicate that their method can be easily implemented in SAS PROC GLM. We reproduce their example, and also test their hypotheses using random samples from the permutation distribution in addition to chi-square and F approximations. 2. Review of Ghosh, Grizzle and Sen paper In this section we briefly review the paper by Ghosh, Grizzle, and Sen in the notation of the SAS procedure GLM (SAS Institute Inc, 2004) indicating how their analysis can be implemented with that procedure. 2. SAS Notation SAS PROC GLM considers the multivariate general linear model Y = Xβ + ε, where Y is a (n x p) matrix of n observations by p dependent variables, X is an (n x k) design or regression matrix, with k the number of parameters per dependent variable, β is a (k x p) matrix of model parameters, and ε is an (n x p) matrix of errors. The rows of ε are assumed independent and identically distributed with a multivariate normal 0, Σ xp pxp. Ghosh et al. (973) remove the multivariate normality assumption and permit the 2

3 observations to take on discrete values. The ordinary least squares (OLS) estimate for β - (Y-Xb)'(Y-Xb) is b = (X'X) X'Y. Σ is estimated by S=. kxp pxp n - rankx We wish to test the multivariate general linear hypothesis H 0 : LβM=0 versus H A : LβM 0, where L and M are matrices of specified constants, and LβM is estimable. All multivariate tests carried out by the SAS GLM procedure first construct the matrices H and E, the sums of squares and cross products matrices for the hypothesis and the error, respectively: ( ) H=SS(LbM) = M'( Lb)' L X'X L' ( Lb) M E = M'(Y'Y-b'(X'X)b)M Four classical test statistics are reported in SAS GLM multivariate analysis of variance output. Each of these statistics is a function of the eigenvalues of the matrix E - Hor ( E) H H+ : Wilks Lambda Λ= E E+ H Pillai s Trace V = trace H( H+ E) Hotelling-Lawley Trace U = trace - EH Roy s Maximum Root = λ, the largest eigenvalue of - EH Under the multivariate normality assumptions all four test statistics can be approximated by F distributions (SAS Institute Inc, 2004). In the release 9.0 of SAS/STAT software, if the option MSTAT=EXACT is specified, p values for Wilk s Lambda, the Hotelling- Lawley Trace, and Roy s Maximum root can be computed exactly, and p values for 3

4 Pillai s trace are from an F approximation that is more accurate than the default (SAS Institute Inc, 2004). Although called exact, the p values for Wilk s Lambda, the Holelling-Lawley Trace, and Roy s Maximum root, according to the references listed in the SAS GLM documentation, are still approximations, albeit extremely accurate approximations, for distributions obtained under normal theory. 2.2 Example Ghosh, Grizzle, and Sen (GGS) transform each dependent variable separately to ranks (, 2,, n). They then consider randomly permuting the transformed dependent variables within blocks, which may be indicated by dummy variables in the design matrix X. As an example, they present data for a single block with 5 groups of Sprague-Dawley rats receiving a drug (beta-amino propionitrile) for varying durations. For each rat, knee stiffness (angle between the tibia and the femur as a function of weight added to the distal end of the tibia) was measured for several weights and transformed to half angle sines. The data were then transformed to intercepts and slopes of regression lines of half angle sine on weight fit to the two regions of the stiffness curves. These intercepts and slopes are displayed in GGS Figure B, Table, and our SAS code below. ˆ γ (gamma) and ˆα (alpha) are the estimated intercept and slope respectively of the first region of the response line, while ˆ γ 2 (gamma2) and ˆα 2 (alpha2) are those for the second. 4

5 data Example; input group gamma alpha gamma2 alpha2; datalines; ; These regression coefficients were then transformed to vectors of ranks R = ( R () R ( 2) R ( p) ) where ( t) ij ij ij ij R ij + R t n subject j in group i. Adjusted ranks ij( ) 2 is the rank of dependent variable t for were also computed. 5

6 The SAS code below reproduces the intermediate results in GGS Table 3. proc rank data= Example out=rankings; var gamma alpha gamma2 alpha2; ranks RankG RankA RankG2 RankA2; data AdjRank; set rankings; n = 26; mean = (n+)/2; AdjRankG = RankG - mean; AdjRankA = RankA - mean; AdjRankG2 = RankG2 - mean; AdjRankA2 = RankA2 - mean; drop gamma alpha gamma2 alpha2 mean; proc print data=adjrank; title "Ranks and Adjusted Ranks of Data for Example"; proc means data=adjrank mean; title "Means of Ranks and Adjusted Ranks for Example"; class group; var RankG RankA RankG2 RankA2 AdjRankG AdjRankA AdjRankG2 AdjRankA2; run; To reproduce the correlations and covariances in GGS Table 4, first we obtain the total sum of squares and cross products matrix T corrected for the mean as the error sum of squares and cross products matrix E from MANOVA model with only a column of ones in the design matrix X using SAS code: 26x proc glm data=rankings; model RankG RankA RankG2 RankA2= /nouni; manova H=intercept /printe; run; Then the output below is the GGS total sum squares and cross products matrix T E = Error SSCP Matrix RankG RankA RankG2 RankA2 RankG RankA RankG RankA

7 The Spearman rank covariance matrix V n T by V T /n R () t R ( u) matrix V in GGS equations (3.0) and (3.) is related to n n i + n+ = = n ij 2 ij 2. The rank covariance i= j= below reproduces GGS Table 4. V RankG RankA RankG2 RankA2 RankG RankA RankG RankA The printe option in the above MANOVA statement reproduces the Spearman correlations in GGS Table 4 Partial Correlation Coefficients from the Error SSCP Matrix / Prob > r DF = 25 RankG RankA RankG2 RankA2 RankG RankA RankG RankA To compare groups, the multivariate one way analysis of variance SAS code, proc glm data=rankings; class group; model RankG RankA RankG2 RankA2=group/nouni; manova H=group / printh printe; run; created the necessary between groups sum of squares and cross products matrix as the hypothesis sum of squares and cross products matrix H 7

8 H = Type III SSCP Matrix for group RankG RankA RankG2 RankA2 RankG RankA RankG RankA and the within groups sum of squares and cross products matrix as the error sum of square and cross product matrix E. pxp E = Error SSCP Matrix RankG RankA RankG2 RankA2 RankG RankA RankG RankA The total sum of squares and cross products matrix is T = H+ E. The same code provided the test statistics below. MANOVA Test Criteria and F Approximations for the Hypothesis of No Overall group Effect on the Variables Defined by the M Matrix Transformation H = Type III SSCP Matrix for group E = Error SSCP Matrix S=4 M=-0.5 N=8 Statistic Value F Value Num DF Den DF Pr > F Wilks' Lambda Pillai's Trace Hotelling-Lawley Trace Roy's Greatest Root <.000 NOTE: F Statistic for Roy's Greatest Root is an upper bound. 8

9 Letting V=T/n, the GGS rank sum L statistic is then g g n n L= ni Ri R V Ri R trace ni Ri R V Ri R n px px pxp = px px px px pxp i n = i= px px g n n = trace niv Ri R Ri R n pxp = trace V H i= px px px px n pxp pxp n T trace H ( n ) trace = = T H = ( n ) Pillai ' s trace n n pxp pxp pxp pxp = (26 )* = Based on an approximating F distribution p = as reported in SAS output. It also yields p = based on chi-squared distribution with p(c-) = 4(5-) =6 degrees of freedom as reported in the GGS paper. Hence we concur that there are significant differences between the five mean knee stiffness curves. It is important to note that Ghosh, Grizzle, and Sen considered this chi-squared test an approximation to an underlying permutation test of the ranks. We are simply demonstrating thus far how SAS PROC GLM can be used as a computational tool to obtain the GGS approximate test. We note that under normal theory SAS PROC GLM provides several competing test statistics. One competing test statistic is the Hotelling- Lawley trace, g g U= ni Ri R E i trace ni i i px px pxp R R = R R E R R px px px px pxp i= i= px px g = trace nie Ri R Ri R = trace E H pxp = px px px px pxp pxp i= with p-value = based on an approximate F distribution. Others are Roy s maximum root and Wilk s lambda and their F approximations. 9

10 The following SAS code compares the five groups separately for the first regression line and the second regression line. proc glm data=rankings; class group; model RankG RankA RankG2 RankA2=group/nouni; manova H=group M=RankG, RankA / printh printe; manova H=group M=RankG2, RankA2 / printh printe; run; Below are the SAS output for MANOVA tests for group effects for the first regression line MANOVA Test Criteria and F Approximations for the Hypothesis of No Overall group Effect on the Variables Defined by the M Matrix Transformation H = Type III SSCP Matrix for group E = Error SSCP Matrix S=2 M=0.5 N=9 Statistic Value F Value Num DF Den DF Pr > F Wilks' Lambda Pillai's Trace Hotelling-Lawley Trace <.000 Roy's Greatest Root <.000 NOTE: F Statistic for Roy's Greatest Root is an upper bound. NOTE: F Statistic for Wilks' Lambda is exact. 0

11 And for the second regression line MANOVA Test Criteria and F Approximations for the Hypothesis of No Overall group Effect on the Variables Defined by the M Matrix Transformation H = Type III SSCP Matrix for group E = Error SSCP Matrix S=2 M=0.5 N=9 Statistic Value F Value Num DF Den DF Pr > F Wilks' Lambda Pillai's Trace Hotelling-Lawley Trace Roy's Greatest Root NOTE: F Statistic for Roy's Greatest Root is an upper bound. NOTE: F Statistic for Wilks' Lambda is exact. The L statistics can be easily obtained by multiplying the Pillai s traces by (n-). For the first regression line, L = (26-)* = , with p value = based on the approximate chi-squared distribution with p(c-) = 2(5-) = 8 degrees of freedom. For the second regression line, L = (26-)* = with approximate p value These are the same results as reported in the GGS paper. We concur that the most important differences occur within the first segment of the response line. Closer inspection of the individual slopes and intercepts leads to CGS second conclusion that within this (first) segment differences among the slopes are the most important. We then recalculate the above p values by executing the actual permutation tests. Table displays F approximated p values and exact p values from SAS GLM, along with actual permutation p value from 00,000 random samples of permutation distribution, for the hypothesis of no differences among five mean knee stiffness curves for both regression

12 lines (A), for intercepts and slopes of the st regression line (B), and for intercepts and slopes of the 2 nd regression lines (C). We note that p values obtained from random samples of the permutations for Wilk s lambda, Pillai s trace, Hotelling-Lawley trace and Roy s maximum root are very similar to the p values obtained from SAS GLM F approximations, where p values from GGS s rank sum L statistic are quite different. In general, we feel that the permutation p values are an improvement over the GGS chi square approximate p-values, and agreement between permutation p values and SAS GLM exact p values is very well in this example with ranked data. See how close their p values to the actual permutation p values in this ranked data? Since they agreed so well, then we thought why just use exact 3. Conclusion In this article, we reviewed the paper nonparametric methods in longitudinal studies by Ghosh, Grizzle and Sen, and reproduced their example via SAS PROC GLM. Hence, the reader does not need special software to execute this useful analysis. We have demonstrated that their rank sum test statistic L is equivalent to Pillai s trace, and that p values obtained by the F approximations agree more closely with the permutation p values than do the p-values from the chi-square approximations. We prefer permutation p values obtained from a large random sample of the permutations to the standard SAS GLM F or chi-square approximations. However, in the case of the ranked data in the example the agreement between the SAS PROC GLM exact p-values and the permutation p-values is so good that the exact values should be seriously considered. This considerable agreement is not expected to hold up this strongly in the absence of ranked data or extremely non-normal distributed data. 2

13 ACKNOWLEDGEMENTS This work was partially supported by NIH grants P30 CA and P50 CA05887, National Institute of Mental Health (NIMH) Silvio O. Conte Center P50 MH , and (NIDA) DA SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. Other brand and product names are trademarks of their respective companies. REFERENCES Ghosh, M., Grizzle, J. E., and Sen, P. K., 973. Nonparametric methods in longitudinal studies. Journal of the American Statistical Association 68, Puri, M. L., and Sen, P. K., 966. On a class of multivariate multisample rank order tests. Sankhya A 28, SAS Institute Inc, SAS/STAT 9. User's Guide. SAS Institute Inc., Cary, NC. CONTACT INFORMATION Your comments and questions are valued and encouraged. Contact the authors: Chan.Zeng@uchsc.edu Gary.Zerbe@uchsc.edu 3

14 Table Permutation p values for hypothesis of no differences among five mean knee stiffness curves Hypothesis Test statistics Value F value GLM F approx p-value GLM exact p-value* Permutation p-value*** A: Wilk's lambda Overall Group effect Pillai's trace on both regression lines Hotelling-Lawley trace Roy's maximum root < Puri & Sen L ** B: Group effect on Wilk's lambda st regression line Pillai's trace Hotelling-Lawley trace < Roy's maximum root < Puri & Sen L ** C: Group effect on Wilk's lambda nd regression line Pillai's trace Hotelling-Lawley trace Roy's maximum root Puri & Sen L ** *Used MSTAT=EXACT option in SAS GLM, p values for Wilk s lambda, Hotelling-Lawley trace and Roy s Max root are computed exactly. P values for Pillai s trace are based on F-approximation that is more accurate than the default. ** Approximated p values by chi-square distribution. *** From 00,000 random permutation samples 4

Other hypotheses of interest (cont d)

Other hypotheses of interest (cont d) Other hypotheses of interest (cont d) In addition to the simple null hypothesis of no treatment effects, we might wish to test other hypothesis of the general form (examples follow): H 0 : C k g β g p

More information

4.1 Computing section Example: Bivariate measurements on plants Post hoc analysis... 7

4.1 Computing section Example: Bivariate measurements on plants Post hoc analysis... 7 Master of Applied Statistics ST116: Chemometrics and Multivariate Statistical data Analysis Per Bruun Brockhoff Module 4: Computing 4.1 Computing section.................................. 1 4.1.1 Example:

More information

Repeated Measures Part 2: Cartoon data

Repeated Measures Part 2: Cartoon data Repeated Measures Part 2: Cartoon data /*********************** cartoonglm.sas ******************/ options linesize=79 noovp formdlim='_'; title 'Cartoon Data: STA442/1008 F 2005'; proc format; /* value

More information

Data Analyses in Multivariate Regression Chii-Dean Joey Lin, SDSU, San Diego, CA

Data Analyses in Multivariate Regression Chii-Dean Joey Lin, SDSU, San Diego, CA Data Analyses in Multivariate Regression Chii-Dean Joey Lin, SDSU, San Diego, CA ABSTRACT Regression analysis is one of the most used statistical methodologies. It can be used to describe or predict causal

More information

ANOVA Longitudinal Models for the Practice Effects Data: via GLM

ANOVA Longitudinal Models for the Practice Effects Data: via GLM Psyc 943 Lecture 25 page 1 ANOVA Longitudinal Models for the Practice Effects Data: via GLM Model 1. Saturated Means Model for Session, E-only Variances Model (BP) Variances Model: NO correlation, EQUAL

More information

WITHIN-PARTICIPANT EXPERIMENTAL DESIGNS

WITHIN-PARTICIPANT EXPERIMENTAL DESIGNS 1 WITHIN-PARTICIPANT EXPERIMENTAL DESIGNS I. Single-factor designs: the model is: yij i j ij ij where: yij score for person j under treatment level i (i = 1,..., I; j = 1,..., n) overall mean βi treatment

More information

Analysis of Longitudinal Data: Comparison Between PROC GLM and PROC MIXED. Maribeth Johnson Medical College of Georgia Augusta, GA

Analysis of Longitudinal Data: Comparison Between PROC GLM and PROC MIXED. Maribeth Johnson Medical College of Georgia Augusta, GA Analysis of Longitudinal Data: Comparison Between PROC GLM and PROC MIXED Maribeth Johnson Medical College of Georgia Augusta, GA Overview Introduction to longitudinal data Describe the data for examples

More information

Multivariate analysis of variance and covariance

Multivariate analysis of variance and covariance Introduction Multivariate analysis of variance and covariance Univariate ANOVA: have observations from several groups, numerical dependent variable. Ask whether dependent variable has same mean for each

More information

Applied Multivariate Analysis

Applied Multivariate Analysis Department of Mathematics and Statistics, University of Vaasa, Finland Spring 2017 Discriminant Analysis Background 1 Discriminant analysis Background General Setup for the Discriminant Analysis Descriptive

More information

Multivariate Statistical Analysis

Multivariate Statistical Analysis Multivariate Statistical Analysis Fall 2011 C. L. Williams, Ph.D. Lecture 17 for Applied Multivariate Analysis Outline Multivariate Analysis of Variance 1 Multivariate Analysis of Variance The hypotheses:

More information

Multivariate Linear Regression Models

Multivariate Linear Regression Models Multivariate Linear Regression Models Regression analysis is used to predict the value of one or more responses from a set of predictors. It can also be used to estimate the linear association between

More information

Chapter 7, continued: MANOVA

Chapter 7, continued: MANOVA Chapter 7, continued: MANOVA The Multivariate Analysis of Variance (MANOVA) technique extends Hotelling T 2 test that compares two mean vectors to the setting in which there are m 2 groups. We wish to

More information

Least Squares Estimation

Least Squares Estimation Least Squares Estimation Using the least squares estimator for β we can obtain predicted values and compute residuals: Ŷ = Z ˆβ = Z(Z Z) 1 Z Y ˆɛ = Y Ŷ = Y Z(Z Z) 1 Z Y = [I Z(Z Z) 1 Z ]Y. The usual decomposition

More information

Analysis of variance, multivariate (MANOVA)

Analysis of variance, multivariate (MANOVA) Analysis of variance, multivariate (MANOVA) Abstract: A designed experiment is set up in which the system studied is under the control of an investigator. The individuals, the treatments, the variables

More information

GLM Repeated Measures

GLM Repeated Measures GLM Repeated Measures Notation The GLM (general linear model) procedure provides analysis of variance when the same measurement or measurements are made several times on each subject or case (repeated

More information

Multilevel Models in Matrix Form. Lecture 7 July 27, 2011 Advanced Multivariate Statistical Methods ICPSR Summer Session #2

Multilevel Models in Matrix Form. Lecture 7 July 27, 2011 Advanced Multivariate Statistical Methods ICPSR Summer Session #2 Multilevel Models in Matrix Form Lecture 7 July 27, 2011 Advanced Multivariate Statistical Methods ICPSR Summer Session #2 Today s Lecture Linear models from a matrix perspective An example of how to do

More information

General Linear Model (Chapter 4)

General Linear Model (Chapter 4) General Linear Model (Chapter 4) Outcome variable is considered continuous Simple linear regression Scatterplots OLS is BLUE under basic assumptions MSE estimates residual variance testing regression coefficients

More information

Covariance Structure Approach to Within-Cases

Covariance Structure Approach to Within-Cases Covariance Structure Approach to Within-Cases Remember how the data file grapefruit1.data looks: Store sales1 sales2 sales3 1 62.1 61.3 60.8 2 58.2 57.9 55.1 3 51.6 49.2 46.2 4 53.7 51.5 48.3 5 61.4 58.7

More information

Multivariate Regression (Chapter 10)

Multivariate Regression (Chapter 10) Multivariate Regression (Chapter 10) This week we ll cover multivariate regression and maybe a bit of canonical correlation. Today we ll mostly review univariate multivariate regression. With multivariate

More information

Gregory Carey, 1998 Regression & Path Analysis - 1 MULTIPLE REGRESSION AND PATH ANALYSIS

Gregory Carey, 1998 Regression & Path Analysis - 1 MULTIPLE REGRESSION AND PATH ANALYSIS Gregory Carey, 1998 Regression & Path Analysis - 1 MULTIPLE REGRESSION AND PATH ANALYSIS Introduction Path analysis and multiple regression go hand in hand (almost). Also, it is easier to learn about multivariate

More information

MANOVA MANOVA,$/,,# ANOVA ##$%'*!# 1. $!;' *$,$!;' (''

MANOVA MANOVA,$/,,# ANOVA ##$%'*!# 1. $!;' *$,$!;' ('' 14 3! "#!$%# $# $&'('$)!! (Analysis of Variance : ANOVA) *& & "#!# +, ANOVA -& $ $ (+,$ ''$) *$#'$)!!#! (Multivariate Analysis of Variance : MANOVA).*& ANOVA *+,'$)$/*! $#/#-, $(,!0'%1)!', #($!#$ # *&,

More information

UV Absorbance by Fish Slime

UV Absorbance by Fish Slime Data Set 1: UV Absorbance by Fish Slime Statistical Setting This handout describes a repeated-measures ANOVA, with two crossed amongsubjects factors and repeated-measures on a third (within-subjects) factor.

More information

Multivariate Linear Models

Multivariate Linear Models Multivariate Linear Models Stanley Sawyer Washington University November 7, 2001 1. Introduction. Suppose that we have n observations, each of which has d components. For example, we may have d measurements

More information

MULTIVARIATE ANALYSIS OF VARIANCE

MULTIVARIATE ANALYSIS OF VARIANCE MULTIVARIATE ANALYSIS OF VARIANCE RAJENDER PARSAD AND L.M. BHAR Indian Agricultural Statistics Research Institute Library Avenue, New Delhi - 0 0 lmb@iasri.res.in. Introduction In many agricultural experiments,

More information

Multivariate Analysis of Variance

Multivariate Analysis of Variance Multivariate Analysis of Variance 1 Multivariate Analysis of Variance Objective of Multivariate Analysis of variance (MANOVA) is to determine whether the differences on criterion or dependent variables

More information

Applied Multivariate Statistical Modeling Prof. J. Maiti Department of Industrial Engineering and Management Indian Institute of Technology, Kharagpur

Applied Multivariate Statistical Modeling Prof. J. Maiti Department of Industrial Engineering and Management Indian Institute of Technology, Kharagpur Applied Multivariate Statistical Modeling Prof. J. Maiti Department of Industrial Engineering and Management Indian Institute of Technology, Kharagpur Lecture - 29 Multivariate Linear Regression- Model

More information

Example 1 describes the results from analyzing these data for three groups and two variables contained in test file manova1.tf3.

Example 1 describes the results from analyzing these data for three groups and two variables contained in test file manova1.tf3. Simfit Tutorials and worked examples for simulation, curve fitting, statistical analysis, and plotting. http://www.simfit.org.uk MANOVA examples From the main SimFIT menu choose [Statistcs], [Multivariate],

More information

MANOVA is an extension of the univariate ANOVA as it involves more than one Dependent Variable (DV). The following are assumptions for using MANOVA:

MANOVA is an extension of the univariate ANOVA as it involves more than one Dependent Variable (DV). The following are assumptions for using MANOVA: MULTIVARIATE ANALYSIS OF VARIANCE MANOVA is an extension of the univariate ANOVA as it involves more than one Dependent Variable (DV). The following are assumptions for using MANOVA: 1. Cell sizes : o

More information

Stevens 2. Aufl. S Multivariate Tests c

Stevens 2. Aufl. S Multivariate Tests c Stevens 2. Aufl. S. 200 General Linear Model Between-Subjects Factors 1,00 2,00 3,00 N 11 11 11 Effect a. Exact statistic Pillai's Trace Wilks' Lambda Hotelling's Trace Roy's Largest Root Pillai's Trace

More information

Chapter 9. Multivariate and Within-cases Analysis. 9.1 Multivariate Analysis of Variance

Chapter 9. Multivariate and Within-cases Analysis. 9.1 Multivariate Analysis of Variance Chapter 9 Multivariate and Within-cases Analysis 9.1 Multivariate Analysis of Variance Multivariate means more than one response variable at once. Why do it? Primarily because if you do parallel analyses

More information

I L L I N O I S UNIVERSITY OF ILLINOIS AT URBANA-CHAMPAIGN

I L L I N O I S UNIVERSITY OF ILLINOIS AT URBANA-CHAMPAIGN Canonical Edps/Soc 584 and Psych 594 Applied Multivariate Statistics Carolyn J. Anderson Department of Educational Psychology I L L I N O I S UNIVERSITY OF ILLINOIS AT URBANA-CHAMPAIGN Canonical Slide

More information

DETERMINATION OF RESPONSE SURFACE FUNCTION USING REPEATED MEASURES

DETERMINATION OF RESPONSE SURFACE FUNCTION USING REPEATED MEASURES DETERMINATION OF RESPONSE SURFACE FUNCTION USING REPEATED MEASURES Denise Moyse. Abbott Laboratories David Henry. Abbott Laboratories Hong-Jiong Shi. Abbott Laboratories Robert S. Boger. Abbott Laboratories

More information

I L L I N O I S UNIVERSITY OF ILLINOIS AT URBANA-CHAMPAIGN

I L L I N O I S UNIVERSITY OF ILLINOIS AT URBANA-CHAMPAIGN Comparisons of Several Multivariate Populations Edps/Soc 584 and Psych 594 Applied Multivariate Statistics Carolyn J Anderson Department of Educational Psychology I L L I N O I S UNIVERSITY OF ILLINOIS

More information

Repeated Measures ANOVA Multivariate ANOVA and Their Relationship to Linear Mixed Models

Repeated Measures ANOVA Multivariate ANOVA and Their Relationship to Linear Mixed Models Repeated Measures ANOVA Multivariate ANOVA and Their Relationship to Linear Mixed Models EPSY 905: Multivariate Analysis Spring 2016 Lecture #12 April 20, 2016 EPSY 905: RM ANOVA, MANOVA, and Mixed Models

More information

Paper: ST-161. Techniques for Evidence-Based Decision Making Using SAS Ian Stockwell, The Hilltop UMBC, Baltimore, MD

Paper: ST-161. Techniques for Evidence-Based Decision Making Using SAS Ian Stockwell, The Hilltop UMBC, Baltimore, MD Paper: ST-161 Techniques for Evidence-Based Decision Making Using SAS Ian Stockwell, The Hilltop Institute @ UMBC, Baltimore, MD ABSTRACT SAS has many tools that can be used for data analysis. From Freqs

More information

International Journal of Current Research in Biosciences and Plant Biology ISSN: Volume 2 Number 5 (May-2015) pp

International Journal of Current Research in Biosciences and Plant Biology ISSN: Volume 2 Number 5 (May-2015) pp Original Research Article International Journal of Current Research in Biosciences and Plant Biology ISSN: 349-00 Volume Number (May-01) pp. -19 www.ijcrbp.com Graphical Approaches to Support Mixed Model

More information

3. The F Test for Comparing Reduced vs. Full Models. opyright c 2018 Dan Nettleton (Iowa State University) 3. Statistics / 43

3. The F Test for Comparing Reduced vs. Full Models. opyright c 2018 Dan Nettleton (Iowa State University) 3. Statistics / 43 3. The F Test for Comparing Reduced vs. Full Models opyright c 2018 Dan Nettleton (Iowa State University) 3. Statistics 510 1 / 43 Assume the Gauss-Markov Model with normal errors: y = Xβ + ɛ, ɛ N(0, σ

More information

Prepared by: Prof. Dr Bahaman Abu Samah Department of Professional Development and Continuing Education Faculty of Educational Studies Universiti

Prepared by: Prof. Dr Bahaman Abu Samah Department of Professional Development and Continuing Education Faculty of Educational Studies Universiti Prepared by: Prof. Dr Bahaman Abu Samah Department of Professional Development and Continuing Education Faculty of Educational Studies Universiti Putra Malaysia Serdang Use in experiment, quasi-experiment

More information

General Linear Model

General Linear Model GLM V1 V2 V3 V4 V5 V11 V12 V13 V14 V15 /WSFACTOR=placeholders 2 Polynomial target 5 Polynomial /METHOD=SSTYPE(3) /EMMEANS=TABLES(OVERALL) /EMMEANS=TABLES(placeholders) COMPARE ADJ(SIDAK) /EMMEANS=TABLES(target)

More information

SAS/STAT 14.1 User s Guide. Introduction to Nonparametric Analysis

SAS/STAT 14.1 User s Guide. Introduction to Nonparametric Analysis SAS/STAT 14.1 User s Guide Introduction to Nonparametric Analysis This document is an individual chapter from SAS/STAT 14.1 User s Guide. The correct bibliographic citation for this manual is as follows:

More information

Comparisons of Several Multivariate Populations

Comparisons of Several Multivariate Populations Comparisons of Several Multivariate Populations Edps/Soc 584, Psych 594 Carolyn J Anderson Department of Educational Psychology I L L I N O I S university of illinois at urbana-champaign c Board of Trustees,

More information

STAT 730 Chapter 5: Hypothesis Testing

STAT 730 Chapter 5: Hypothesis Testing STAT 730 Chapter 5: Hypothesis Testing Timothy Hanson Department of Statistics, University of South Carolina Stat 730: Multivariate Analysis 1 / 28 Likelihood ratio test def n: Data X depend on θ. The

More information

Introduction to Nonparametric Analysis (Chapter)

Introduction to Nonparametric Analysis (Chapter) SAS/STAT 9.3 User s Guide Introduction to Nonparametric Analysis (Chapter) SAS Documentation This document is an individual chapter from SAS/STAT 9.3 User s Guide. The correct bibliographic citation for

More information

Implementation of Pairwise Fitting Technique for Analyzing Multivariate Longitudinal Data in SAS

Implementation of Pairwise Fitting Technique for Analyzing Multivariate Longitudinal Data in SAS PharmaSUG2011 - Paper SP09 Implementation of Pairwise Fitting Technique for Analyzing Multivariate Longitudinal Data in SAS Madan Gopal Kundu, Indiana University Purdue University at Indianapolis, Indianapolis,

More information

T. Mark Beasley One-Way Repeated Measures ANOVA handout

T. Mark Beasley One-Way Repeated Measures ANOVA handout T. Mark Beasley One-Way Repeated Measures ANOVA handout Profile Analysis Example In the One-Way Repeated Measures ANOVA, two factors represent separate sources of variance. Their interaction presents an

More information

Correlation and the Analysis of Variance Approach to Simple Linear Regression

Correlation and the Analysis of Variance Approach to Simple Linear Regression Correlation and the Analysis of Variance Approach to Simple Linear Regression Biometry 755 Spring 2009 Correlation and the Analysis of Variance Approach to Simple Linear Regression p. 1/35 Correlation

More information

Multivariate Analysis of Variance

Multivariate Analysis of Variance Chapter 15 Multivariate Analysis of Variance Jolicouer and Mosimann studied the relationship between the size and shape of painted turtles. The table below gives the length, width, and height (all in mm)

More information

Chapter 2 Multivariate Normal Distribution

Chapter 2 Multivariate Normal Distribution Chapter Multivariate Normal Distribution In this chapter, we define the univariate and multivariate normal distribution density functions and then we discuss the tests of differences of means for multiple

More information

General Linear Model. Notes Output Created Comments Input. 19-Dec :09:44

General Linear Model. Notes Output Created Comments Input. 19-Dec :09:44 GET ILE='G:\lare\Data\Accuracy_Mixed.sav'. DATASET NAME DataSet WINDOW=RONT. GLM Jigsaw Decision BY CMCTools /WSACTOR= Polynomial /METHOD=SSTYPE(3) /PLOT=PROILE(CMCTools*) /EMMEANS=TABLES(CMCTools) COMPARE

More information

Chapter 31 The GLMMOD Procedure. Chapter Table of Contents

Chapter 31 The GLMMOD Procedure. Chapter Table of Contents Chapter 31 The GLMMOD Procedure Chapter Table of Contents OVERVIEW...1639 GETTING STARTED...1639 AOne-WayDesign...1639 SYNTAX...1644 PROCGLMMODStatement...1644 BYStatement...1646 CLASSStatement...1646

More information

Practice of SAS Logistic Regression on Binary Pharmacodynamic Data Problems and Solutions. Alan J Xiao, Cognigen Corporation, Buffalo NY

Practice of SAS Logistic Regression on Binary Pharmacodynamic Data Problems and Solutions. Alan J Xiao, Cognigen Corporation, Buffalo NY Practice of SAS Logistic Regression on Binary Pharmacodynamic Data Problems and Solutions Alan J Xiao, Cognigen Corporation, Buffalo NY ABSTRACT Logistic regression has been widely applied to population

More information

Exst7037 Multivariate Analysis Cancorr interpretation Page 1

Exst7037 Multivariate Analysis Cancorr interpretation Page 1 Exst7037 Multivariate Analysis Cancorr interpretation Page 1 1 *** C03S3D1 ***; 2 ****************************************************************************; 3 *** The data set insulin shows data from

More information

SAS/STAT 15.1 User s Guide The GLMMOD Procedure

SAS/STAT 15.1 User s Guide The GLMMOD Procedure SAS/STAT 15.1 User s Guide The GLMMOD Procedure This document is an individual chapter from SAS/STAT 15.1 User s Guide. The correct bibliographic citation for this manual is as follows: SAS Institute Inc.

More information

Analysis of Longitudinal Data: Comparison between PROC GLM and PROC MIXED.

Analysis of Longitudinal Data: Comparison between PROC GLM and PROC MIXED. Analysis of Longitudinal Data: Comparison between PROC GLM and PROC MIXED. Maribeth Johnson, Medical College of Georgia, Augusta, GA ABSTRACT Longitudinal data refers to datasets with multiple measurements

More information

df=degrees of freedom = n - 1

df=degrees of freedom = n - 1 One sample t-test test of the mean Assumptions: Independent, random samples Approximately normal distribution (from intro class: σ is unknown, need to calculate and use s (sample standard deviation)) Hypotheses:

More information

Chapter 5: Multivariate Analysis and Repeated Measures

Chapter 5: Multivariate Analysis and Repeated Measures Chapter 5: Multivariate Analysis and Repeated Measures Multivariate -- More than one dependent variable at once. Why do it? Primarily because if you do parallel analyses on lots of outcome measures, the

More information

The SAS System 18:28 Saturday, March 10, Plot of Canonical Variables Identified by Cluster

The SAS System 18:28 Saturday, March 10, Plot of Canonical Variables Identified by Cluster The SAS System 18:28 Saturday, March 10, 2018 1 The FASTCLUS Procedure Replace=FULL Radius=0 Maxclusters=2 Maxiter=10 Converge=0.02 Initial Seeds Cluster SepalLength SepalWidth PetalLength PetalWidth 1

More information

Measuring relationships among multiple responses

Measuring relationships among multiple responses Measuring relationships among multiple responses Linear association (correlation, relatedness, shared information) between pair-wise responses is an important property used in almost all multivariate analyses.

More information

STAT 501 EXAM I NAME Spring 1999

STAT 501 EXAM I NAME Spring 1999 STAT 501 EXAM I NAME Spring 1999 Instructions: You may use only your calculator and the attached tables and formula sheet. You can detach the tables and formula sheet from the rest of this exam. Show your

More information

An Introduction to Multivariate Statistical Analysis

An Introduction to Multivariate Statistical Analysis An Introduction to Multivariate Statistical Analysis Third Edition T. W. ANDERSON Stanford University Department of Statistics Stanford, CA WILEY- INTERSCIENCE A JOHN WILEY & SONS, INC., PUBLICATION Contents

More information

M A N O V A. Multivariate ANOVA. Data

M A N O V A. Multivariate ANOVA. Data M A N O V A Multivariate ANOVA V. Čekanavičius, G. Murauskas 1 Data k groups; Each respondent has m measurements; Observations are from the multivariate normal distribution. No outliers. Covariance matrices

More information

Paper Equivalence Tests. Fei Wang and John Amrhein, McDougall Scientific Ltd.

Paper Equivalence Tests. Fei Wang and John Amrhein, McDougall Scientific Ltd. Paper 11683-2016 Equivalence Tests Fei Wang and John Amrhein, McDougall Scientific Ltd. ABSTRACT Motivated by the frequent need for equivalence tests in clinical trials, this paper provides insights into

More information

z = β βσβ Statistical Analysis of MV Data Example : µ=0 (Σ known) consider Y = β X~ N 1 (β µ, β Σβ) test statistic for H 0β is

z = β βσβ Statistical Analysis of MV Data Example : µ=0 (Σ known) consider Y = β X~ N 1 (β µ, β Σβ) test statistic for H 0β is Example X~N p (µ,σ); H 0 : µ=0 (Σ known) consider Y = β X~ N 1 (β µ, β Σβ) H 0β : β µ = 0 test statistic for H 0β is y z = β βσβ /n And reject H 0β if z β > c [suitable critical value] 301 Reject H 0 if

More information

Applied Multivariate and Longitudinal Data Analysis

Applied Multivariate and Longitudinal Data Analysis Applied Multivariate and Longitudinal Data Analysis Chapter 2: Inference about the mean vector(s) II Ana-Maria Staicu SAS Hall 5220; 919-515-0644; astaicu@ncsu.edu 1 1 Compare Means from More Than Two

More information

Analysis of Repeated Measures Data of Iraqi Awassi Lambs Using Mixed Model

Analysis of Repeated Measures Data of Iraqi Awassi Lambs Using Mixed Model American Journal of Applied Scientific Research 01; 1(): 1-6 Published online November 1, 01 (http://www.sciencepublishinggroup.com/j/ajasr) doi: 10.64/j.ajasr.00.13 Analysis of Repeated Measures Data

More information

SAS/STAT 12.3 User s Guide. The GLMMOD Procedure (Chapter)

SAS/STAT 12.3 User s Guide. The GLMMOD Procedure (Chapter) SAS/STAT 12.3 User s Guide The GLMMOD Procedure (Chapter) This document is an individual chapter from SAS/STAT 12.3 User s Guide. The correct bibliographic citation for the complete manual is as follows:

More information

Topic 20: Single Factor Analysis of Variance

Topic 20: Single Factor Analysis of Variance Topic 20: Single Factor Analysis of Variance Outline Single factor Analysis of Variance One set of treatments Cell means model Factor effects model Link to linear regression using indicator explanatory

More information

Multivariate Data Analysis Notes & Solutions to Exercises 3

Multivariate Data Analysis Notes & Solutions to Exercises 3 Notes & Solutions to Exercises 3 ) i) Measurements of cranial length x and cranial breadth x on 35 female frogs 7.683 0.90 gave x =(.860, 4.397) and S. Test the * 4.407 hypothesis that =. Using the result

More information

POWER AND TYPE I ERROR RATE COMPARISON OF MULTIVARIATE ANALYSIS OF VARIANCE

POWER AND TYPE I ERROR RATE COMPARISON OF MULTIVARIATE ANALYSIS OF VARIANCE POWER AND TYPE I ERROR RATE COMPARISON OF MULTIVARIATE ANALYSIS OF VARIANCE Supported by Patrick Adebayo 1 and Ahmed Ibrahim 1 Department of Statistics, University of Ilorin, Kwara State, Nigeria Department

More information

HOW TO USE PROC CATMOD IN ESTIMATION PROBLEMS

HOW TO USE PROC CATMOD IN ESTIMATION PROBLEMS , HOW TO USE PROC CATMOD IN ESTIMATION PROBLEMS Olaf Gefeller 1, Franz Woltering2 1 Abteilung Medizinische Statistik, Georg-August-Universitat Gottingen 2Fachbereich Statistik, Universitat Dortmund Abstract

More information

1998, Gregory Carey Repeated Measures ANOVA - 1. REPEATED MEASURES ANOVA (incomplete)

1998, Gregory Carey Repeated Measures ANOVA - 1. REPEATED MEASURES ANOVA (incomplete) 1998, Gregory Carey Repeated Measures ANOVA - 1 REPEATED MEASURES ANOVA (incomplete) Repeated measures ANOVA (RM) is a specific type of MANOVA. When the within group covariance matrix has a special form,

More information

Neuendorf MANOVA /MANCOVA. Model: X1 (Factor A) X2 (Factor B) X1 x X2 (Interaction) Y4. Like ANOVA/ANCOVA:

Neuendorf MANOVA /MANCOVA. Model: X1 (Factor A) X2 (Factor B) X1 x X2 (Interaction) Y4. Like ANOVA/ANCOVA: 1 Neuendorf MANOVA /MANCOVA Model: X1 (Factor A) X2 (Factor B) X1 x X2 (Interaction) Y1 Y2 Y3 Y4 Like ANOVA/ANCOVA: 1. Assumes equal variance (equal covariance matrices) across cells (groups defined by

More information

Dr. Junchao Xia Center of Biophysics and Computational Biology. Fall /1/2016 1/46

Dr. Junchao Xia Center of Biophysics and Computational Biology. Fall /1/2016 1/46 BIO5312 Biostatistics Lecture 10:Regression and Correlation Methods Dr. Junchao Xia Center of Biophysics and Computational Biology Fall 2016 11/1/2016 1/46 Outline In this lecture, we will discuss topics

More information

Topic 28: Unequal Replication in Two-Way ANOVA

Topic 28: Unequal Replication in Two-Way ANOVA Topic 28: Unequal Replication in Two-Way ANOVA Outline Two-way ANOVA with unequal numbers of observations in the cells Data and model Regression approach Parameter estimates Previous analyses with constant

More information

A SAS/AF Application For Sample Size And Power Determination

A SAS/AF Application For Sample Size And Power Determination A SAS/AF Application For Sample Size And Power Determination Fiona Portwood, Software Product Services Ltd. Abstract When planning a study, such as a clinical trial or toxicology experiment, the choice

More information

Formulas and Tables by Mario F. Triola

Formulas and Tables by Mario F. Triola Copyright 010 Pearson Education, Inc. Ch. 3: Descriptive Statistics x f # x x f Mean 1x - x s - 1 n 1 x - 1 x s 1n - 1 s B variance s Ch. 4: Probability Mean (frequency table) Standard deviation P1A or

More information

RANDOM and REPEATED statements - How to Use Them to Model the Covariance Structure in Proc Mixed. Charlie Liu, Dachuang Cao, Peiqi Chen, Tony Zagar

RANDOM and REPEATED statements - How to Use Them to Model the Covariance Structure in Proc Mixed. Charlie Liu, Dachuang Cao, Peiqi Chen, Tony Zagar Paper S02-2007 RANDOM and REPEATED statements - How to Use Them to Model the Covariance Structure in Proc Mixed Charlie Liu, Dachuang Cao, Peiqi Chen, Tony Zagar Eli Lilly & Company, Indianapolis, IN ABSTRACT

More information

Czech J. Anim. Sci., 50, 2005 (4):

Czech J. Anim. Sci., 50, 2005 (4): Czech J Anim Sci, 50, 2005 (4: 163 168 Original Paper Canonical correlation analysis for studying the relationship between egg production traits and body weight, egg weight and age at sexual maturity in

More information

M M Cross-Over Designs

M M Cross-Over Designs Chapter 568 Cross-Over Designs Introduction This module calculates the power for an x cross-over design in which each subject receives a sequence of treatments and is measured at periods (or time points).

More information

6 Multivariate Regression

6 Multivariate Regression 6 Multivariate Regression 6.1 The Model a In multiple linear regression, we study the relationship between several input variables or regressors and a continuous target variable. Here, several target variables

More information

SAS/STAT 13.1 User s Guide. The Four Types of Estimable Functions

SAS/STAT 13.1 User s Guide. The Four Types of Estimable Functions SAS/STAT 13.1 User s Guide The Four Types of Estimable Functions This document is an individual chapter from SAS/STAT 13.1 User s Guide. The correct bibliographic citation for the complete manual is as

More information

Fitting PK Models with SAS NLMIXED Procedure Halimu Haridona, PPD Inc., Beijing

Fitting PK Models with SAS NLMIXED Procedure Halimu Haridona, PPD Inc., Beijing PharmaSUG China 1 st Conference, 2012 Fitting PK Models with SAS NLMIXED Procedure Halimu Haridona, PPD Inc., Beijing ABSTRACT Pharmacokinetic (PK) models are important for new drug development. Statistical

More information

Bootstrapping, Randomization, 2B-PLS

Bootstrapping, Randomization, 2B-PLS Bootstrapping, Randomization, 2B-PLS Statistics, Tests, and Bootstrapping Statistic a measure that summarizes some feature of a set of data (e.g., mean, standard deviation, skew, coefficient of variation,

More information

Lecture 5: Hypothesis tests for more than one sample

Lecture 5: Hypothesis tests for more than one sample 1/23 Lecture 5: Hypothesis tests for more than one sample Måns Thulin Department of Mathematics, Uppsala University thulin@math.uu.se Multivariate Methods 8/4 2011 2/23 Outline Paired comparisons Repeated

More information

Software for genome-wide association studies having multivariate responses: Introducing MAGWAS

Software for genome-wide association studies having multivariate responses: Introducing MAGWAS Software for genome-wide association studies having multivariate responses: Introducing MAGWAS Chad C. Brown 1 and Alison A. Motsinger-Reif 1,2 1 Department of Statistics, 2 Bioinformatics Research Center

More information

SAS/STAT 13.1 User s Guide. The MIANALYZE Procedure

SAS/STAT 13.1 User s Guide. The MIANALYZE Procedure SAS/STAT 13.1 User s Guide The MIANALYZE Procedure This document is an individual chapter from SAS/STAT 13.1 User s Guide. The correct bibliographic citation for the complete manual is as follows: SAS

More information

Introduction. Introduction

Introduction. Introduction Introduction Multivariate procedures in R Peter Dalgaard Department of Biostatistics University of Copenhagen user 2006, Vienna Until version 2.1.0, R had limited support for multivariate tests Repeated

More information

Lecture 2. The Simple Linear Regression Model: Matrix Approach

Lecture 2. The Simple Linear Regression Model: Matrix Approach Lecture 2 The Simple Linear Regression Model: Matrix Approach Matrix algebra Matrix representation of simple linear regression model 1 Vectors and Matrices Where it is necessary to consider a distribution

More information

Group comparison test for independent samples

Group comparison test for independent samples Group comparison test for independent samples The purpose of the Analysis of Variance (ANOVA) is to test for significant differences between means. Supposing that: samples come from normal populations

More information

Multivariate Tests. Mauchly's Test of Sphericity

Multivariate Tests. Mauchly's Test of Sphericity General Model Within-Sujects Factors Dependent Variale IDLS IDLF IDHS IDHF IDHCLS IDHCLF Descriptive Statistics IDLS IDLF IDHS IDHF IDHCLS IDHCLF Mean Std. Deviation N.0.70.0.0..8..88.8...97 Multivariate

More information

14 Multiple Linear Regression

14 Multiple Linear Regression B.Sc./Cert./M.Sc. Qualif. - Statistics: Theory and Practice 14 Multiple Linear Regression 14.1 The multiple linear regression model In simple linear regression, the response variable y is expressed in

More information

BIOL 458 BIOMETRY Lab 8 - Nested and Repeated Measures ANOVA

BIOL 458 BIOMETRY Lab 8 - Nested and Repeated Measures ANOVA BIOL 458 BIOMETRY Lab 8 - Nested and Repeated Measures ANOVA PART 1: NESTED ANOVA Nested designs are used when levels of one factor are not represented within all levels of another factor. Often this is

More information

Introduction to Power and Sample Size Analysis

Introduction to Power and Sample Size Analysis Four chapters from SAS/STAT User's Guide 13.2: (18) Introduction to Power and Sample Size Analysis (47) The GLMPOWER Procedure (77) The POWER Procedure (78) The Power and Sample Size Application Chapter

More information

Neuendorf MANOVA /MANCOVA. Model: MAIN EFFECTS: X1 (Factor A) X2 (Factor B) INTERACTIONS : X1 x X2 (A x B Interaction) Y4. Like ANOVA/ANCOVA:

Neuendorf MANOVA /MANCOVA. Model: MAIN EFFECTS: X1 (Factor A) X2 (Factor B) INTERACTIONS : X1 x X2 (A x B Interaction) Y4. Like ANOVA/ANCOVA: 1 Neuendorf MANOVA /MANCOVA Model: MAIN EFFECTS: X1 (Factor A) X2 (Factor B) Y1 Y2 INTERACTIONS : Y3 X1 x X2 (A x B Interaction) Y4 Like ANOVA/ANCOVA: 1. Assumes equal variance (equal covariance matrices)

More information

Simple logistic regression

Simple logistic regression Simple logistic regression Biometry 755 Spring 2009 Simple logistic regression p. 1/47 Model assumptions 1. The observed data are independent realizations of a binary response variable Y that follows a

More information

DISPLAYING THE POISSON REGRESSION ANALYSIS

DISPLAYING THE POISSON REGRESSION ANALYSIS Chapter 17 Poisson Regression Chapter Table of Contents DISPLAYING THE POISSON REGRESSION ANALYSIS...264 ModelInformation...269 SummaryofFit...269 AnalysisofDeviance...269 TypeIII(Wald)Tests...269 MODIFYING

More information

Data are sometimes not compatible with the assumptions of parametric statistical tests (i.e. t-test, regression, ANOVA)

Data are sometimes not compatible with the assumptions of parametric statistical tests (i.e. t-test, regression, ANOVA) BSTT523 Pagano & Gauvreau Chapter 13 1 Nonparametric Statistics Data are sometimes not compatible with the assumptions of parametric statistical tests (i.e. t-test, regression, ANOVA) In particular, data

More information

Package CCP. R topics documented: December 17, Type Package. Title Significance Tests for Canonical Correlation Analysis (CCA) Version 0.

Package CCP. R topics documented: December 17, Type Package. Title Significance Tests for Canonical Correlation Analysis (CCA) Version 0. Package CCP December 17, 2009 Type Package Title Significance Tests for Canonical Correlation Analysis (CCA) Version 0.1 Date 2009-12-14 Author Uwe Menzel Maintainer Uwe Menzel to

More information

GROUPED DATA E.G. FOR SAMPLE OF RAW DATA (E.G. 4, 12, 7, 5, MEAN G x / n STANDARD DEVIATION MEDIAN AND QUARTILES STANDARD DEVIATION

GROUPED DATA E.G. FOR SAMPLE OF RAW DATA (E.G. 4, 12, 7, 5, MEAN G x / n STANDARD DEVIATION MEDIAN AND QUARTILES STANDARD DEVIATION FOR SAMPLE OF RAW DATA (E.G. 4, 1, 7, 5, 11, 6, 9, 7, 11, 5, 4, 7) BE ABLE TO COMPUTE MEAN G / STANDARD DEVIATION MEDIAN AND QUARTILES Σ ( Σ) / 1 GROUPED DATA E.G. AGE FREQ. 0-9 53 10-19 4...... 80-89

More information

The MIANALYZE Procedure (Chapter)

The MIANALYZE Procedure (Chapter) SAS/STAT 9.3 User s Guide The MIANALYZE Procedure (Chapter) SAS Documentation This document is an individual chapter from SAS/STAT 9.3 User s Guide. The correct bibliographic citation for the complete

More information