Answer to exercise: Growth of guinea pigs

Size: px
Start display at page:

Download "Answer to exercise: Growth of guinea pigs"

Transcription

1 Answer to exercise: Growth of guinea pigs The effect of a vitamin E diet on the growth of guinea pigs is investigated in the following way: In the beginning of week 1, 10 animals received a growth inhibitor. Then followed a randomisation, so that 5 animals received vitamin E therapy from the beginning of week 5, while the other 5 animals served as controls. In the end of the weeks 1, 3, 4, 5, 6 and 7, the weight of each animal was recorded. The data is in the file vitamin.txt on the home page, with variables grp (1: control, 2: vitamin E), animal, week and weight (in g), and with a total of 2*5*6=60 observations. The first line contains the variable names. We wish to describe the effect of vitamin E on the growth of the animals. 1. Read in the data and construct a more informative variable (called group) to denote the groups. DATA vitamin; INFILE " URL FIRSTOBS=2; INPUT grp animal week weight; IF grp=1 THEN group= Control ; IF grp=2 THEN group= VitaminE ; 2. Describe the data using suitable plots and summary statistics. First we make spaghetti plots for each group separately: PROC SGPANEL DATA=vitamin; PANELBY group; SERIES X=week Y=weight / GROUP=animal; 1

2 We supplement with summary statistics and plot the sample means and standard deviations over time for the two groups: PROC MEANS NWAY DATA=vitamin MEAN STDDEV; CLASS group week; VAR weight; OUTPUT OUT=vitameans MEAN=average STDDEV=sd; PROC SGPLOT DATA=vitameans; SERIES x=week y=average / GROUP=group; PROC SGPLOT DATA=vitameans; SERIES x=week y=sd / GROUP=group; 2

3 Are there any trends in mean and variance over time? On average both groups gain in weight during the first five weeks. From week 5 on there is a tendency that the animals in the control group stop growing, while the animals in the vitamin E group continue to gain in weight. Variance tends to increase over time in both of the groups. How do we expect to see an effect of vitamin E in these profiles? If vitamin E has an effect on growth, it should of course only be there from week 5 and on. Treatment was randomised and both groups were treated similarly untill the beginning of week 5. 3

4 Since we do not possess any particular theoretical knowledge about growth of guinea pigs, we start out by letting each week have its own mean value, i.e. by treating week as a factor (a class-variable). 3. Fit a mixed model with an unstructured covariance and a two-way ANOVA structure for the mean (group week group*week). We run the analysis of response profiles using the code PROC MIXED DATA=vitamin; CLASS animal week (REF= 1 ) grp (REF= Control ); MODEL weight = week group group*week / SOLUTION CL DDFM=KR; REPEATED week / TYPE=UN SUBJECT=animal R RCORR; from which we get the following output: The Mixed Procedure Model Information Data Set Dependent Variable Covariance Structure Subject Effect Estimation Method Residual Variance Method Fixed Effects SE Method Degrees of Freedom Method WORK.VITAMIN weight Unstructured animal REML None Kenward-Roger Kenward-Roger Class Level Information Class Levels Values animal week group 2 VitaminE Control Dimensions Covariance Parameters 21 Columns in X 21 Columns in Z 0 Subjects 10 Max Obs Per Subject 6 Number of Observations Number of Observations Read 60 Number of Observations Used 60 Number of Observations Not Used 0 Iteration Evaluations -2 Res Log Like Criterion The Mixed Procedure Convergence criteria met. Estimated R Matrix for animal 1 Row Col1 Col2 Col3 Col4 Col5 Col

5 Estimated R Correlation Matrix for animal 1 Row Col1 Col2 Col3 Col4 Col5 Col Covariance Parameter Estimates Cov Parm Subject Estimate UN(1,1) animal UN(2,1) animal UN(2,2) animal UN(3,1) animal UN(3,2) animal UN(3,3) animal UN(4,1) animal UN(4,2) animal UN(4,3) animal UN(4,4) animal UN(5,1) animal UN(5,2) animal UN(5,3) animal UN(5,4) animal UN(5,5) animal UN(6,1) animal UN(6,2) animal UN(6,3) animal UN(6,4) animal UN(6,5) animal UN(6,6) animal Standard Effect group week Estimate Error DF t Value Pr > t Alpha Intercept < week week < week week week week group VitaminE group Control week*group VitaminE week*group Control week*group VitaminE week*group Control week*group VitaminE week*group Control week*group VitaminE week*group Control week*group VitaminE week*group Control week*group VitaminE week*group Control Effect group week Lower Upper Intercept week week week week week week 1.. group VitaminE group Control.. week*group VitaminE week*group Control 3.. week*group VitaminE week*group Control 4.. week*group VitaminE week*group Control 5.. week*group VitaminE

6 week*group Control 6.. week*group VitaminE week*group Control 7.. week*group VitaminE 1.. week*group Control 1.. Is there evidence of differences in growth between the groups? The P-value for the interaction is , so there is no evidence of overall differences in growth pattern between the two groups. The 5 estimates for week indicate the predicted weigth gains since baseline for the control group (the reference group), whereas the interaction term estimates indicate the differences in weight gain between the vitamin group and the control group group. We don t see a consistent pattern in the differences betwen the two groups, but at the last two follow-ups the vitamin group has on average gained more weight than the controls. Give an estimate of the difference in weight gain between the groups at the end of week 7 (with 95% confidence limits). We expect a more powerful test would be to compare the weigth gains at final follow-up where the difference between the groups ought to be the largest. The estimated difference in weight gain after seven weeks is 44.0 g with a confidence interval of to g. Although the estimate is in favour of vitamin E treatment, the effect is not significant (P=0.2198) Take a look at the estimated R correlation matrix. Are there any trends in the correlations? We see that the correlations tend to be stronger for observations that are close in time. 4. Should we do baseline adjustment in this investigation? Yes, we should. The two groups are randomized and treated in an identical fashion in the first three time points, so any difference in this period has to be pure coincidence. By taking the known equality of means at the first 3 time points into account, we should be able to obtain a more powerful analysis. 5. Make a dataset consisting only of data from weeks 1 through 4. Make an apropriate analysis to compare the two groups. Is there evidence of differences in means at any time point? We make a new dataset called period1 and run the analysis of response profiles for the first three time points only. To get estimates of the difference in means between the two groups at each time point, we omit the group term from the model specification 6

7 DATA period1; SET vitamin; IF week < 5; PROC MIXED DATA=period1; CLASS animal week (REF= 1 ) group (REF= Control ); MODEL weight = week group*week / SOLUTION CL DDFM=KR; REPEATED week / TYPE=UN SUBJECT=animal; From this we get the following results (initial output omitted): Standard Effect group week Estimate Error DF t Value Pr > t Alpha Intercept < week week < week week*group VitaminE week*group Control week*group VitaminE week*group Control week*group VitaminE week*group Control Effect group week Lower Upper Intercept week week week 1.. week*group VitaminE week*group Control 3.. week*group VitaminE week*group Control 4.. week*group VitaminE week*group Control 1.. Type 3 Tests of Fixed Effects Num Den Effect DF DF F Value Pr > F week <.0001 week*group We find no evidence of differences between the two group (P=0.2768). In fact, we know that any difference between the two groups in weeks 1 through 4 must be pure coincidence, so we need not perform this analysis. In case a significant difference was found this would be a type I error and not a useful result. In what follows we will try to make a more specific model for the mean using the data from the entire study period. 7

8 6. Add new covariates to the data as suggested below: DATA vitamin; SET vitamin; IF week>4 THEN treat=group; ELSE treat= Control ; IF grp=2 AND week>4 THEN vitaweeks=week-4; ELSE vitaweeks=0; Try to explain in words the content of the two variables. The variable treat describes the treatment that the animal actually received on a week to week basis. In weeks 1 through for the vitamin E group got the same treatment as the controls while in weeks 5 through 7 they received vitamin E. The variable vitaweeks records how many weeks the animal has received vitamin E. That will be zero at all times for the animals in the control group. The animals in the vitamin E groups has had vitamin E for one week at the end of week 5, two weeks at the end of week 6, and three weeks at the end of week 7. We will use vitaweeks as a numerical variable in the analyses to estimate the average weight gain per week with vitamin E. We now use the above defined variables as covariates in various combinations. Try the following model specifications: (a) week treat*week (b) week vitaweeks (c) week vitaweeks treat*week The same program is run with the three different model specifications (to be uncommented one at a time): PROC MIXED DATA=vitamin; CLASS animal week (REF= 1 ) treat (REF= Control ); * MODEL weight = week week*treat / SOLUTION CL DDFM=KR OUTPM=fita; * MODEL weight = week vitaweeks / SOLUTION CL DDFM=KR OUTPM=fitb; * MODEL weight = week vitaweeks week*treat / DDFM=KR OUTPM=fitc; REPEATED week / TYPE=UN SUBJECT=animal R RCORR; 7. Try to make pictures of the predicted weight profiles for the three models. We use the data from OUTPM to plot the estimated weight profiles from the three different model specifications, e.g. using 8

9 PROC SGPLOT DATA=fita; WHERE animal in (1,10); SERIES X=week Y=pred / GROUP=group; TITLE Model A ; The predicted profiles from models a and c are exactly the same and this is no coincidence since these are merely different ways of phrasing the same model for the mean. In model a/c means are constrained so that they are identical in the two groups in weeks 1, 3, and 4. From week 5 on the means of the two groups are allowed to evolve differently with no further restrictions. Model b is genuinely different from the other two model specifications and it is more restrictive because it assumes that the difference between the two groups can be explained by a constantly increasing difference in weight gain per week (see estimates below). Is it reasonable to say that the difference between the vitamin and the control group increases linearly with time from week 5 on, or is the effect more complicated than that? Model specification c allows us to test model b against model a using a standard F-test. 9

10 Type 3 Tests of Fixed Effects Num Den Effect DF DF F Value Pr > F week vitaweeks 0... week*treat This shows that a model with week and vitaweeks is significantly worse at describing the data. So we conclude that there is more to the effect of vitamin than a constantly increasing difference in weight gain. To judge from the estimated profiles this could be due to a delay in treatment effect. We don t see any indication of treatment effect in week 5, while in weeks 6 and 7, the vitamin E group has gained in weight compared to the controls. 8. For each model, give an estimate of the difference in weight between the groups at the end of week 7. Models a and c are essentially the same but specification a gives us understandable estimates of the treatment effect while specification c is only good for testing. We thus look at the output from model a.. Standard Effect treat week Estimate Error DF t Value Pr > t Alpha Intercept < week week < week week week week week*treat Control week*treat Control week*treat VitaminE week*treat Control week*treat VitaminE week*treat Control week*treat VitaminE week*treat Control week*treat Control Effect treat week Lower Upper Intercept week week week week week week 1.. week*treat Control 3.. week*treat Control 4.. week*treat VitaminE week*treat Control 5.. week*treat VitaminE week*treat Control 6.. week*treat VitaminE week*treat Control 7.. week*treat Control 1.. The estimated difference in weight gains at final follow-up is 55.7g (95% CI: -4.5 to 115.9) in favour of vitamin E. From model b we get the following estimates: 10

11 Standard Effect week Estimate Error DF t Value Pr > t Alpha Lower Upper Intercept < week week < week week week week vitaweeks This estimates the effect of vitamin E to be an additonal weght gain of 3.86 g per week (95% CI: to 22.12). Over the entire study which includes three weeks of vitamin E we would expect a total additional weight gain of = 11.6 g with a confidence interval of ( ; ) = ( 43.2; 66.4). 9. From your preferred model, do you get evidence of difference in growth between the groups? We have evidence that model b does not fit the data as well as model a. Therefore we base our conclusion on model a. There appears to be an additional weight gain with vitamin E at final follow-up but not reaching the level of significance (P=0.0654). Also the overall test of difference in growth pattern between the groups is non-significant (P=0.0945). 10. Investigate whether a compound symmetry model could be used as in place of the unstructured covariance. Does the choice of covariance structure affect the conclusions about the treatment effect? We refit model a with a compound symmetry structure. This results in estimated model parameters and goodnes of fit as follows: Estimated R Matrix for animal 1 Row Col1 Col2 Col3 Col4 Col5 Col Estimated R Correlation Matrix for animal 1 Row Col1 Col2 Col3 Col4 Col5 Col Covariance Parameter Estimates Cov Parm Subject Estimate CS animal Residual Fit Statistics -2 Res Log Likelihood AIC (smaller is better)

12 AICC (smaller is better) BIC (smaller is better) Standard Effect treat week Estimate Error DF t Value Pr > t Alpha Intercept < week < week < week < week < week < week week*treat Control week*treat Control week*treat VitaminE week*treat Control week*treat VitaminE week*treat Control week*treat VitaminE week*treat Control week*treat Control Effect treat week Lower Upper Intercept week week week week week week 1.. week*treat Control 3.. week*treat Control 4.. week*treat VitaminE week*treat Control 5.. week*treat VitaminE week*treat Control 6.. week*treat VitaminE week*treat Control 7.. week*treat Control 1.. Type 3 Tests of Fixed Effects Num Den Effect DF DF F Value Pr > F week <.0001 week*treat First we look at the -2 loglikelihood value which has to be compared to a similar value of in the similar model with the unstructured covariance (output not shown). The CS covariance only has two parameters while the UN covaraince has (6 1) = 21 parameters. We look up = 53.4 in 2 the Chi-square distribution with 19 degrees of freedom. The test is highly significant (P<0.0001), so the compound symmetry covariance does not fit the data at all well. Really this is no surprise as the variance in the data increases with time and the correlations declines with increasing time span between observations. Turning to the estimates and tests, we see that the compound symmetry model would reach a much stronger conclusion about the effect of vitamin E than is supported by the data; Roughly speaking the compound symmetry structure assumes that the correlation between first and last observation is stronger than it actually is and thereby reaches a too strong conclusion about changes over time. For a final comparison we plot the estimated weight profiles from the two different covariance pattern models first for the controls, next for the vitamin E group. We include confidence intervals in the plots. 12

13 The most prominent difference between the two model fits is that the confidence intervals from the unstructured covariance model are more narrow in the beginning and wider in the end than those obtained from the compound symmetry model. Also the estimated profiles differ slightly between the models due to a different weighting of the data. 13

Professor Rose-Helleknat's PCR Data for Breast Cancer Study

Professor Rose-Helleknat's PCR Data for Breast Cancer Study Professor Rose-Helleknat's PCR Data for Breast Cancer Study Summary statistics for Crossing Point, cp = - log 2 (RNA) Obs Treatment Outcome n Mean Variance St_Deviation St_Error 1 Placebo Cancer 7 21.4686

More information

1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA.

1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA. LDA lab Feb, 6 th, 2002 1 1. Objective: analyzing CD4 counts data using GEE marginal model and random effects model. Demonstrate the analysis using SAS and STATA. 2. Scientific question: estimate the average

More information

SAS Data Setup: SPSS Data Setup: STATA Data Setup: Hoffman ICPSR Example 5 page 1

SAS Data Setup: SPSS Data Setup: STATA Data Setup: Hoffman ICPSR Example 5 page 1 Hoffman ICPSR Example 5 page 1 Example 5: Examining BP and WP Effects of Negative Mood Predicting Next-Morning Glucose (complete data, syntax, and output available for SAS, SPSS, and STATA electronically)

More information

THE META-ANALYSIS (PROC MIXED) OF TWO PILOT CLINICAL STUDIES WITH A NOVEL ANTIDEPRESSANT

THE META-ANALYSIS (PROC MIXED) OF TWO PILOT CLINICAL STUDIES WITH A NOVEL ANTIDEPRESSANT Paper PO03 THE META-ANALYSIS PROC MIXED OF TWO PILOT CLINICAL STUDIES WITH A NOVEL ANTIDEPRESSANT Lev Sverdlov, Ph.D., Innapharma, Inc., Park Ridge, NJ INTROUCTION The paper explores the use of a meta-analysis

More information

Notes for laboratory session 2

Notes for laboratory session 2 Notes for laboratory session 2 Preliminaries Consider the ordinary least-squares (OLS) regression of alcohol (alcohol) and plasma retinol (retplasm). We do this with STATA as follows:. reg retplasm alcohol

More information

Between-Person and Within-Person Effects of Negative Mood Predicting Next-Morning Glucose COMPLETED VERSION

Between-Person and Within-Person Effects of Negative Mood Predicting Next-Morning Glucose COMPLETED VERSION Psyc 944 Example 9b page 1 Between-Person and Within-Person Effects of Negative Mood Predicting Next-Morning Glucose COMPLETED VERSION These data were simulated loosely based on real data reported in the

More information

Week 8 Hour 1: More on polynomial fits. The AIC. Hour 2: Dummy Variables what are they? An NHL Example. Hour 3: Interactions. The stepwise method.

Week 8 Hour 1: More on polynomial fits. The AIC. Hour 2: Dummy Variables what are they? An NHL Example. Hour 3: Interactions. The stepwise method. Week 8 Hour 1: More on polynomial fits. The AIC Hour 2: Dummy Variables what are they? An NHL Example Hour 3: Interactions. The stepwise method. Stat 302 Notes. Week 8, Hour 1, Page 1 / 34 Human growth

More information

Between-Person and Within-Person Effects of Negative Mood Predicting Next-Morning Glucose

Between-Person and Within-Person Effects of Negative Mood Predicting Next-Morning Glucose CLP 945 Example 4b page 1 Between-Person and Within-Person Effects of Negative Mood Predicting Next-Morning Glucose These data were simulated loosely based on real data reported in the citation below.

More information

Linear Regression in SAS

Linear Regression in SAS 1 Suppose we wish to examine factors that predict patient s hemoglobin levels. Simulated data for six patients is used throughout this tutorial. data hgb_data; input id age race $ bmi hgb; cards; 21 25

More information

ATTACH YOUR SAS CODE WITH YOUR ANSWERS.

ATTACH YOUR SAS CODE WITH YOUR ANSWERS. BSTA 6652 Survival Analysis Winter, 2017 Problem Set 5 Reading: Klein: Chapter 12; SAS textbook: Chapter 4 ATTACH YOUR SAS CODE WITH YOUR ANSWERS. The data in BMTH.txt was collected on 43 bone marrow transplant

More information

Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA

Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA STAT 350 (Spring 2015) Lab 7: SAS Solution 1 Lab 7 (100 pts.): One-Way ANOVA Objectives: Analyze data via the One-Way ANOVA A. (50 pts.) Do isoflavones increase bone mineral density? (ex12-45bmd.txt) Kudzu

More information

Constructing a mixed model using the AIC

Constructing a mixed model using the AIC Constructing a mixed model using the AIC The Data: The Citalopram study (PI Dr. Zisook) Does Citalopram reduce the depression in schizophrenic patients with subsyndromal depression Two Groups: Citalopram

More information

4Stat Wk 10: Regression

4Stat Wk 10: Regression 4Stat 342 - Wk 10: Regression Loading data with datalines Regression (Proc glm) - with interactions - with polynomial terms - with categorical variables (Proc glmselect) - with model selection (this is

More information

Dan Byrd UC Office of the President

Dan Byrd UC Office of the President Dan Byrd UC Office of the President 1. OLS regression assumes that residuals (observed value- predicted value) are normally distributed and that each observation is independent from others and that the

More information

WEB APPENDIX: STIMULI & FINDINGS. Feeling Love and Doing More for Distant Others:

WEB APPENDIX: STIMULI & FINDINGS. Feeling Love and Doing More for Distant Others: 1 WEB APPENDIX: STIMULI & FINDINGS Feeling Love and Doing More for Distant Others: Specific Positive Emotions Differentially Affect Prosocial Consumption LISA A. CAVANAUGH JAMES R. BETTMAN MARY FRANCES

More information

BIOL 458 BIOMETRY Lab 7 Multi-Factor ANOVA

BIOL 458 BIOMETRY Lab 7 Multi-Factor ANOVA BIOL 458 BIOMETRY Lab 7 Multi-Factor ANOVA PART 1: Introduction to Factorial ANOVA ingle factor or One - Way Analysis of Variance can be used to test the null hypothesis that k or more treatment or group

More information

Regression models, R solution day7

Regression models, R solution day7 Regression models, R solution day7 Exercise 1 In this exercise, we shall look at the differences in vitamin D status for women in 4 European countries Read and prepare the data: vit

More information

Stepwise method Modern Model Selection Methods Quantile-Quantile plot and tests for normality

Stepwise method Modern Model Selection Methods Quantile-Quantile plot and tests for normality Week 9 Hour 3 Stepwise method Modern Model Selection Methods Quantile-Quantile plot and tests for normality Stat 302 Notes. Week 9, Hour 3, Page 1 / 39 Stepwise Now that we've introduced interactions,

More information

2. Scientific question: Determine whether there is a difference between boys and girls with respect to the distance and its change over time.

2. Scientific question: Determine whether there is a difference between boys and girls with respect to the distance and its change over time. LDA lab Feb, 11 th, 2002 1 1. Objective:analyzing dental data using ordinary least square (OLS) and Generalized Least Square(GLS) in STATA. 2. Scientific question: Determine whether there is a difference

More information

Chapter 9. Factorial ANOVA with Two Between-Group Factors 10/22/ Factorial ANOVA with Two Between-Group Factors

Chapter 9. Factorial ANOVA with Two Between-Group Factors 10/22/ Factorial ANOVA with Two Between-Group Factors Chapter 9 Factorial ANOVA with Two Between-Group Factors 10/22/2001 1 Factorial ANOVA with Two Between-Group Factors Recall that in one-way ANOVA we study the relation between one criterion variable and

More information

ANOVA. Thomas Elliott. January 29, 2013

ANOVA. Thomas Elliott. January 29, 2013 ANOVA Thomas Elliott January 29, 2013 ANOVA stands for analysis of variance and is one of the basic statistical tests we can use to find relationships between two or more variables. ANOVA compares the

More information

MODEL SELECTION STRATEGIES. Tony Panzarella

MODEL SELECTION STRATEGIES. Tony Panzarella MODEL SELECTION STRATEGIES Tony Panzarella Lab Course March 20, 2014 2 Preamble Although focus will be on time-to-event data the same principles apply to other outcome data Lab Course March 20, 2014 3

More information

Stat Wk 9: Hypothesis Tests and Analysis

Stat Wk 9: Hypothesis Tests and Analysis Stat 342 - Wk 9: Hypothesis Tests and Analysis Crash course on ANOVA, proc glm Stat 342 Notes. Week 9 Page 1 / 57 Crash Course: ANOVA AnOVa stands for Analysis Of Variance. Sometimes it s called ANOVA,

More information

Effect of Source and Level of Protein on Weight Gain of Rats

Effect of Source and Level of Protein on Weight Gain of Rats Effect of Source and Level of Protein on of Rats 1 * two factor analysis of variance with interaction; 2 option ls=120 ps=75 nocenter nodate; 3 4 title Effect of Source of Protein and Level of Protein

More information

Analysis of Variance: repeated measures

Analysis of Variance: repeated measures Analysis of Variance: repeated measures Tests for comparing three or more groups or conditions: (a) Nonparametric tests: Independent measures: Kruskal-Wallis. Repeated measures: Friedman s. (b) Parametric

More information

One-Way Independent ANOVA

One-Way Independent ANOVA One-Way Independent ANOVA Analysis of Variance (ANOVA) is a common and robust statistical test that you can use to compare the mean scores collected from different conditions or groups in an experiment.

More information

Lab 8: Multiple Linear Regression

Lab 8: Multiple Linear Regression Lab 8: Multiple Linear Regression 1 Grading the Professor Many college courses conclude by giving students the opportunity to evaluate the course and the instructor anonymously. However, the use of these

More information

CHAPTER ONE CORRELATION

CHAPTER ONE CORRELATION CHAPTER ONE CORRELATION 1.0 Introduction The first chapter focuses on the nature of statistical data of correlation. The aim of the series of exercises is to ensure the students are able to use SPSS to

More information

MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES OBJECTIVES

MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES OBJECTIVES 24 MULTIPLE LINEAR REGRESSION 24.1 INTRODUCTION AND OBJECTIVES In the previous chapter, simple linear regression was used when you have one independent variable and one dependent variable. This chapter

More information

Daniel Boduszek University of Huddersfield

Daniel Boduszek University of Huddersfield Daniel Boduszek University of Huddersfield d.boduszek@hud.ac.uk Introduction to Multinominal Logistic Regression SPSS procedure of MLR Example based on prison data Interpretation of SPSS output Presenting

More information

Advanced ANOVA Procedures

Advanced ANOVA Procedures Advanced ANOVA Procedures Session Lecture Outline:. An example. An example. Two-way ANOVA. An example. Two-way Repeated Measures ANOVA. MANOVA. ANalysis of Co-Variance (): an ANOVA procedure whereby the

More information

Chapter 6 Measures of Bivariate Association 1

Chapter 6 Measures of Bivariate Association 1 Chapter 6 Measures of Bivariate Association 1 A bivariate relationship involves relationship between two variables. Examples: Relationship between GPA and SAT score Relationship between height and weight

More information

The Association Design and a Continuous Phenotype

The Association Design and a Continuous Phenotype PSYC 5102: Association Design & Continuous Phenotypes (4/4/07) 1 The Association Design and a Continuous Phenotype The purpose of this note is to demonstrate how to perform a population-based association

More information

Statistics as a Tool. A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations.

Statistics as a Tool. A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations. Statistics as a Tool A set of tools for collecting, organizing, presenting and analyzing numerical facts or observations. Descriptive Statistics Numerical facts or observations that are organized describe

More information

Reveal Relationships in Categorical Data

Reveal Relationships in Categorical Data SPSS Categories 15.0 Specifications Reveal Relationships in Categorical Data Unleash the full potential of your data through perceptual mapping, optimal scaling, preference scaling, and dimension reduction

More information

Name: emergency please discuss this with the exam proctor. 6. Vanderbilt s academic honor code applies.

Name: emergency please discuss this with the exam proctor. 6. Vanderbilt s academic honor code applies. Name: Biostatistics 1 st year Comprehensive Examination: Applied in-class exam May 28 th, 2015: 9am to 1pm Instructions: 1. There are seven questions and 12 pages. 2. Read each question carefully. Answer

More information

STAT Factor Analysis in SAS

STAT Factor Analysis in SAS STAT 5600 Factor Analysis in SAS The data for this example come from the decathlon results in the 1988 Olympics. The decathlon is a two-day competition, with the 100 m race, long jump, shot put, high jump,

More information

Preliminary Report on Simple Statistical Tests (t-tests and bivariate correlations)

Preliminary Report on Simple Statistical Tests (t-tests and bivariate correlations) Preliminary Report on Simple Statistical Tests (t-tests and bivariate correlations) After receiving my comments on the preliminary reports of your datasets, the next step for the groups is to complete

More information

Two-Way Independent ANOVA

Two-Way Independent ANOVA Two-Way Independent ANOVA Analysis of Variance (ANOVA) a common and robust statistical test that you can use to compare the mean scores collected from different conditions or groups in an experiment. There

More information

SPSS output for 420 midterm study

SPSS output for 420 midterm study Ψ Psy Midterm Part In lab (5 points total) Your professor decides that he wants to find out how much impact amount of study time has on the first midterm. He randomly assigns students to study for hours,

More information

Section 6: Analysing Relationships Between Variables

Section 6: Analysing Relationships Between Variables 6. 1 Analysing Relationships Between Variables Section 6: Analysing Relationships Between Variables Choosing a Technique The Crosstabs Procedure The Chi Square Test The Means Procedure The Correlations

More information

Chapter 9: Answers. Tests of Between-Subjects Effects. Dependent Variable: Time Spent Stalking After Therapy (hours per week)

Chapter 9: Answers. Tests of Between-Subjects Effects. Dependent Variable: Time Spent Stalking After Therapy (hours per week) Task 1 Chapter 9: Answers Stalking is a very disruptive and upsetting (for the person being stalked) experience in which someone (the stalker) constantly harasses or obsesses about another person. It can

More information

IAPT: Regression. Regression analyses

IAPT: Regression. Regression analyses Regression analyses IAPT: Regression Regression is the rather strange name given to a set of methods for predicting one variable from another. The data shown in Table 1 and come from a student project

More information

PARALLELISM AND THE LEGITIMACY GAP 1. Appendix A. Country Information

PARALLELISM AND THE LEGITIMACY GAP 1. Appendix A. Country Information PARALLELISM AND THE LEGITIMACY GAP 1 Appendix A Country Information PARALLELISM AND THE LEGITIMACY GAP 2 Table A.1 Sample size by country 2006 2008 2010 Austria 2405 2255 0 Belgium 1798 1760 1704 Bulgaria

More information

Lab #7: Confidence Intervals-Hypothesis Testing (2)-T Test

Lab #7: Confidence Intervals-Hypothesis Testing (2)-T Test A. Objectives: Lab #7: Confidence Intervals-Hypothesis Testing (2)-T Test 1. Subsetting based on variable 2. Explore Normality 3. Explore Hypothesis testing using T-Tests Confidence intervals and initial

More information

SUPPLEMENTAL MATERIAL

SUPPLEMENTAL MATERIAL 1 SUPPLEMENTAL MATERIAL Response time and signal detection time distributions SM Fig. 1. Correct response time (thick solid green curve) and error response time densities (dashed red curve), averaged across

More information

Content. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries. Research question. Example Newly diagnosed Type 2 Diabetes

Content. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries. Research question. Example Newly diagnosed Type 2 Diabetes Content Quantifying association between continuous variables. Basic Statistics and Data Analysis for Health Researchers from Foreign Countries Volkert Siersma siersma@sund.ku.dk The Research Unit for General

More information

NORTH SOUTH UNIVERSITY TUTORIAL 2

NORTH SOUTH UNIVERSITY TUTORIAL 2 NORTH SOUTH UNIVERSITY TUTORIAL 2 AHMED HOSSAIN,PhD Data Management and Analysis AHMED HOSSAIN,PhD - Data Management and Analysis 1 Correlation Analysis INTRODUCTION In correlation analysis, we estimate

More information

Normal Q Q. Residuals vs Fitted. Standardized residuals. Theoretical Quantiles. Fitted values. Scale Location 26. Residuals vs Leverage

Normal Q Q. Residuals vs Fitted. Standardized residuals. Theoretical Quantiles. Fitted values. Scale Location 26. Residuals vs Leverage Residuals 400 0 400 800 Residuals vs Fitted 26 42 29 Standardized residuals 2 0 1 2 3 Normal Q Q 26 42 29 360 400 440 2 1 0 1 2 Fitted values Theoretical Quantiles Standardized residuals 0.0 0.5 1.0 1.5

More information

Supplemental diagrams

Supplemental diagrams Supplemental diagrams Boxplot of potassium levels vs. year after engraftment, stratified for ACEI/ARB use: 1 Number of ACEI/ARB user/nonusers vs. year after engraftment: Percentage of ACEI/ARB user/nonuser

More information

Applied Medical. Statistics Using SAS. Geoff Der. Brian S. Everitt. CRC Press. Taylor Si Francis Croup. Taylor & Francis Croup, an informa business

Applied Medical. Statistics Using SAS. Geoff Der. Brian S. Everitt. CRC Press. Taylor Si Francis Croup. Taylor & Francis Croup, an informa business Applied Medical Statistics Using SAS Geoff Der Brian S. Everitt CRC Press Taylor Si Francis Croup Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup, an informa business A

More information

Estimating actor, partner, and interaction effects for dyadic data using PROC MIXED and HLM: A user-friendly guide

Estimating actor, partner, and interaction effects for dyadic data using PROC MIXED and HLM: A user-friendly guide Personal Relationships, 9 (2002), 327 342. Printed in the United States of America. Copyright # 2002 ISSPR. 1350-4126/02 Estimating actor, partner, and interaction effects for dyadic data using PROC MIXED

More information

A Comparison of Linear Mixed Models to Generalized Linear Mixed Models: A Look at the Benefits of Physical Rehabilitation in Cardiopulmonary Patients

A Comparison of Linear Mixed Models to Generalized Linear Mixed Models: A Look at the Benefits of Physical Rehabilitation in Cardiopulmonary Patients Paper PH400 A Comparison of Linear Mixed Models to Generalized Linear Mixed Models: A Look at the Benefits of Physical Rehabilitation in Cardiopulmonary Patients Jennifer Ferrell, University of Louisville,

More information

Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H

Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H Midterm Exam ANSWERS Categorical Data Analysis, CHL5407H 1. Data from a survey of women s attitudes towards mammography are provided in Table 1. Women were classified by their experience with mammography

More information

The SAS SUBTYPE Macro

The SAS SUBTYPE Macro The SAS SUBTYPE Macro Aya Kuchiba, Molin Wang, and Donna Spiegelman April 8, 2014 Abstract The %SUBTYPE macro examines whether the effects of the exposure(s) vary by subtypes of a disease. It can be applied

More information

Problem #1 Neurological signs and symptoms of ciguatera poisoning as the start of treatment and 2.5 hours after treatment with mannitol.

Problem #1 Neurological signs and symptoms of ciguatera poisoning as the start of treatment and 2.5 hours after treatment with mannitol. Ho (null hypothesis) Ha (alternative hypothesis) Problem #1 Neurological signs and symptoms of ciguatera poisoning as the start of treatment and 2.5 hours after treatment with mannitol. Hypothesis: Ho:

More information

4. STATA output of the analysis

4. STATA output of the analysis Biostatistics(1.55) 1. Objective: analyzing epileptic seizures data using GEE marginal model in STATA.. Scientific question: Determine whether the treatment reduces the rate of epileptic seizures. 3. Dataset:

More information

Describe what is meant by a placebo Contrast the double-blind procedure with the single-blind procedure Review the structure for organizing a memo

Describe what is meant by a placebo Contrast the double-blind procedure with the single-blind procedure Review the structure for organizing a memo Business Statistics The following was provided by Dr. Suzanne Delaney, and is a comprehensive review of Business Statistics. The workshop instructor will provide relevant examples during the Skills Assessment

More information

Problem 1) Match the terms to their definitions. Every term is used exactly once. (In the real midterm, there are fewer terms).

Problem 1) Match the terms to their definitions. Every term is used exactly once. (In the real midterm, there are fewer terms). Problem 1) Match the terms to their definitions. Every term is used exactly once. (In the real midterm, there are fewer terms). 1. Bayesian Information Criterion 2. Cross-Validation 3. Robust 4. Imputation

More information

Subescala D CULTURA ORGANIZACIONAL. Factor Analysis

Subescala D CULTURA ORGANIZACIONAL. Factor Analysis Subescala D CULTURA ORGANIZACIONAL Factor Analysis Descriptive Statistics Mean Std. Deviation Analysis N 1 3,44 1,244 224 2 3,43 1,258 224 3 4,50,989 224 4 4,38 1,118 224 5 4,30 1,151 224 6 4,27 1,205

More information

An Introduction to Bayesian Statistics

An Introduction to Bayesian Statistics An Introduction to Bayesian Statistics Robert Weiss Department of Biostatistics UCLA Fielding School of Public Health robweiss@ucla.edu Sept 2015 Robert Weiss (UCLA) An Introduction to Bayesian Statistics

More information

NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003

NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003 NEUROBLASTOMA DATA -- TWO GROUPS -- QUANTITATIVE MEASURES 38 15:37 Saturday, January 25, 2003 Obs GROUP I DOPA LNDOPA 1 neurblst 1 48.000 1.68124 2 neurblst 1 133.000 2.12385 3 neurblst 1 34.000 1.53148

More information

How to analyze correlated and longitudinal data?

How to analyze correlated and longitudinal data? How to analyze correlated and longitudinal data? Niloofar Ramezani, University of Northern Colorado, Greeley, Colorado ABSTRACT Longitudinal and correlated data are extensively used across disciplines

More information

Poisson regression. Dae-Jin Lee Basque Center for Applied Mathematics.

Poisson regression. Dae-Jin Lee Basque Center for Applied Mathematics. Dae-Jin Lee dlee@bcamath.org Basque Center for Applied Mathematics http://idaejin.github.io/bcam-courses/ D.-J. Lee (BCAM) Intro to GLM s with R GitHub: idaejin 1/40 Modeling count data Introduction Response

More information

Statistical reports Regression, 2010

Statistical reports Regression, 2010 Statistical reports Regression, 2010 Niels Richard Hansen June 10, 2010 This document gives some guidelines on how to write a report on a statistical analysis. The document is organized into sections that

More information

EPS 625 INTERMEDIATE STATISTICS TWO-WAY ANOVA IN-CLASS EXAMPLE (FLEXIBILITY)

EPS 625 INTERMEDIATE STATISTICS TWO-WAY ANOVA IN-CLASS EXAMPLE (FLEXIBILITY) EPS 625 INTERMEDIATE STATISTICS TO-AY ANOVA IN-CLASS EXAMPLE (FLEXIBILITY) A researcher conducts a study to evaluate the effects of the length of an exercise program on the flexibility of female and male

More information

Data Analysis. A cross-tabulation allows the researcher to see the relationships between the values of two different variables

Data Analysis. A cross-tabulation allows the researcher to see the relationships between the values of two different variables Data Analysis A cross-tabulation allows the researcher to see the relationships between the values of two different variables One variable is typically the dependent variable (such as attitude toward the

More information

(C) Jamalludin Ab Rahman

(C) Jamalludin Ab Rahman SPSS Note The GLM Multivariate procedure is based on the General Linear Model procedure, in which factors and covariates are assumed to have a linear relationship to the dependent variable. Factors. Categorical

More information

Report Perception Experiment

Report Perception Experiment Report Perception Experiment Gerhard Kremer May 21, 2009 1 Introduction Intending to explore if some semantic relations are cognitively more salient than others, a property generation experiment had been

More information

Still important ideas

Still important ideas Readings: OpenStax - Chapters 1 13 & Appendix D & E (online) Plous Chapters 17 & 18 - Chapter 17: Social Influences - Chapter 18: Group Judgments and Decisions Still important ideas Contrast the measurement

More information

UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Midterm, 2016

UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Midterm, 2016 UNIVERSITY of PENNSYLVANIA CIS 520: Machine Learning Midterm, 2016 Exam policy: This exam allows one one-page, two-sided cheat sheet; No other materials. Time: 80 minutes. Be sure to write your name and

More information

Hungry Mice. NP: Mice in this group ate as much as they pleased of a non-purified, standard diet for laboratory mice.

Hungry Mice. NP: Mice in this group ate as much as they pleased of a non-purified, standard diet for laboratory mice. Hungry Mice When laboratory mice (and maybe other animals) are fed a nutritionally adequate but near-starvation diet, they may live longer on average than mice that eat a normal amount of food. In this

More information

Vessel wall differences between middle cerebral artery and basilar artery. plaques on magnetic resonance imaging

Vessel wall differences between middle cerebral artery and basilar artery. plaques on magnetic resonance imaging Vessel wall differences between middle cerebral artery and basilar artery plaques on magnetic resonance imaging Peng-Peng Niu, MD 1 ; Yao Yu, MD 1 ; Hong-Wei Zhou, MD 2 ; Yang Liu, MD 2 ; Yun Luo, MD 1

More information

Business Statistics Probability

Business Statistics Probability Business Statistics The following was provided by Dr. Suzanne Delaney, and is a comprehensive review of Business Statistics. The workshop instructor will provide relevant examples during the Skills Assessment

More information

Today: Binomial response variable with an explanatory variable on an ordinal (rank) scale.

Today: Binomial response variable with an explanatory variable on an ordinal (rank) scale. Model Based Statistics in Biology. Part V. The Generalized Linear Model. Single Explanatory Variable on an Ordinal Scale ReCap. Part I (Chapters 1,2,3,4), Part II (Ch 5, 6, 7) ReCap Part III (Ch 9, 10,

More information

Chapter 13 Estimating the Modified Odds Ratio

Chapter 13 Estimating the Modified Odds Ratio Chapter 13 Estimating the Modified Odds Ratio Modified odds ratio vis-à-vis modified mean difference To a large extent, this chapter replicates the content of Chapter 10 (Estimating the modified mean difference),

More information

Doing Quantitative Research 26E02900, 6 ECTS Lecture 6: Structural Equations Modeling. Olli-Pekka Kauppila Daria Kautto

Doing Quantitative Research 26E02900, 6 ECTS Lecture 6: Structural Equations Modeling. Olli-Pekka Kauppila Daria Kautto Doing Quantitative Research 26E02900, 6 ECTS Lecture 6: Structural Equations Modeling Olli-Pekka Kauppila Daria Kautto Session VI, September 20 2017 Learning objectives 1. Get familiar with the basic idea

More information

15.301/310, Managerial Psychology Prof. Dan Ariely Recitation 8: T test and ANOVA

15.301/310, Managerial Psychology Prof. Dan Ariely Recitation 8: T test and ANOVA 15.301/310, Managerial Psychology Prof. Dan Ariely Recitation 8: T test and ANOVA Statistics does all kinds of stuff to describe data Talk about baseball, other useful stuff We can calculate the probability.

More information

Tutorial #7A: Latent Class Growth Model (# seizures)

Tutorial #7A: Latent Class Growth Model (# seizures) Tutorial #7A: Latent Class Growth Model (# seizures) 2.50 Class 3: Unstable (N = 6) Cluster modal 1 2 3 Mean proportional change from baseline 2.00 1.50 1.00 Class 1: No change (N = 36) 0.50 Class 2: Improved

More information

Classical Psychophysical Methods (cont.)

Classical Psychophysical Methods (cont.) Classical Psychophysical Methods (cont.) 1 Outline Method of Adjustment Method of Limits Method of Constant Stimuli Probit Analysis 2 Method of Constant Stimuli A set of equally spaced levels of the stimulus

More information

Lec 02: Estimation & Hypothesis Testing in Animal Ecology

Lec 02: Estimation & Hypothesis Testing in Animal Ecology Lec 02: Estimation & Hypothesis Testing in Animal Ecology Parameter Estimation from Samples Samples We typically observe systems incompletely, i.e., we sample according to a designed protocol. We then

More information

Two-Way Independent Samples ANOVA with SPSS

Two-Way Independent Samples ANOVA with SPSS Two-Way Independent Samples ANOVA with SPSS Obtain the file ANOVA.SAV from my SPSS Data page. The data are those that appear in Table 17-3 of Howell s Fundamental statistics for the behavioral sciences

More information

m 11 m.1 > m 12 m.2 risk for smokers risk for nonsmokers

m 11 m.1 > m 12 m.2 risk for smokers risk for nonsmokers SOCY5061 RELATIVE RISKS, RELATIVE ODDS, LOGISTIC REGRESSION RELATIVE RISKS: Suppose we are interested in the association between lung cancer and smoking. Consider the following table for the whole population:

More information

Subescala B Compromisso com a organização escolar. Factor Analysis

Subescala B Compromisso com a organização escolar. Factor Analysis Subescala B Compromisso com a organização escolar Factor Analysis Descriptive Statistics Mean Std. Deviation Analysis N 1 4,42 1,108 233 2 4,41 1,001 233 3 4,99 1,261 233 4 4,37 1,055 233 5 4,48 1,018

More information

CHAPTER TWO REGRESSION

CHAPTER TWO REGRESSION CHAPTER TWO REGRESSION 2.0 Introduction The second chapter, Regression analysis is an extension of correlation. The aim of the discussion of exercises is to enhance students capability to assess the effect

More information

STAT 201 Chapter 3. Association and Regression

STAT 201 Chapter 3. Association and Regression STAT 201 Chapter 3 Association and Regression 1 Association of Variables Two Categorical Variables Response Variable (dependent variable): the outcome variable whose variation is being studied Explanatory

More information

LOGLINK Example #1. SUDAAN Statements and Results Illustrated. Input Data Set(s): EPIL.SAS7bdat ( Thall and Vail (1990)) Example.

LOGLINK Example #1. SUDAAN Statements and Results Illustrated. Input Data Set(s): EPIL.SAS7bdat ( Thall and Vail (1990)) Example. LOGLINK Example #1 SUDAAN Statements and Results Illustrated Log-linear regression modeling MODEL TEST SUBPOPN EFFECTS Input Data Set(s): EPIL.SAS7bdat ( Thall and Vail (1990)) Example Use the Epileptic

More information

Still important ideas

Still important ideas Readings: OpenStax - Chapters 1 11 + 13 & Appendix D & E (online) Plous - Chapters 2, 3, and 4 Chapter 2: Cognitive Dissonance, Chapter 3: Memory and Hindsight Bias, Chapter 4: Context Dependence Still

More information

Getting a DIF Breakdown with Lertap

Getting a DIF Breakdown with Lertap Getting a DIF Breakdown with Lertap Larry Nelson Curtin University of Technology Document date: 8 October 2009 website: www.lertap.curtin.edu.au This document shows how Lertap 5 may be used to look for

More information

Application of Local Control Strategy in analyses of the effects of Radon on Lung Cancer Mortality for 2,881 US Counties

Application of Local Control Strategy in analyses of the effects of Radon on Lung Cancer Mortality for 2,881 US Counties Application of Local Control Strategy in analyses of the effects of Radon on Lung Cancer Mortality for 2,881 US Counties Bob Obenchain, Risk Benefit Statistics, August 2015 Our motivation for using a Cut-Point

More information

CSE 258 Lecture 2. Web Mining and Recommender Systems. Supervised learning Regression

CSE 258 Lecture 2. Web Mining and Recommender Systems. Supervised learning Regression CSE 258 Lecture 2 Web Mining and Recommender Systems Supervised learning Regression Supervised versus unsupervised learning Learning approaches attempt to model data in order to solve a problem Unsupervised

More information

Score Tests of Normality in Bivariate Probit Models

Score Tests of Normality in Bivariate Probit Models Score Tests of Normality in Bivariate Probit Models Anthony Murphy Nuffield College, Oxford OX1 1NF, UK Abstract: A relatively simple and convenient score test of normality in the bivariate probit model

More information

Generalized Estimating Equations for Depression Dose Regimes

Generalized Estimating Equations for Depression Dose Regimes Generalized Estimating Equations for Depression Dose Regimes Karen Walker, Walker Consulting LLC, Menifee CA Generalized Estimating Equations on the average produce consistent estimates of the regression

More information

Web Appendix for Analyzing the Effects of Group Members Characteristics: A Guide to the. Group Actor-Partner Interdependence Model. Randi L.

Web Appendix for Analyzing the Effects of Group Members Characteristics: A Guide to the. Group Actor-Partner Interdependence Model. Randi L. Web Appendix for Analyzing the Effects of Group Members Characteristics: A Guide to the Group Actor-Partner Interdependence Model Randi L. Garcia Princeton University Benjamin R. Meagher, and David A.

More information

Self-assessment test of prerequisite knowledge for Biostatistics III in R

Self-assessment test of prerequisite knowledge for Biostatistics III in R Self-assessment test of prerequisite knowledge for Biostatistics III in R Mark Clements, Karolinska Institutet 2017-10-31 Participants in the course Biostatistics III are expected to have prerequisite

More information

Binary Diagnostic Tests Two Independent Samples

Binary Diagnostic Tests Two Independent Samples Chapter 537 Binary Diagnostic Tests Two Independent Samples Introduction An important task in diagnostic medicine is to measure the accuracy of two diagnostic tests. This can be done by comparing summary

More information

USING STATCRUNCH TO CONSTRUCT CONFIDENCE INTERVALS and CALCULATE SAMPLE SIZE

USING STATCRUNCH TO CONSTRUCT CONFIDENCE INTERVALS and CALCULATE SAMPLE SIZE USING STATCRUNCH TO CONSTRUCT CONFIDENCE INTERVALS and CALCULATE SAMPLE SIZE Using StatCrunch for confidence intervals (CI s) is super easy. As you can see in the assignments, I cover 9.2 before 9.1 because

More information

Regression Including the Interaction Between Quantitative Variables

Regression Including the Interaction Between Quantitative Variables Regression Including the Interaction Between Quantitative Variables The purpose of the study was to examine the inter-relationships among social skills, the complexity of the social situation, and performance

More information

10. LINEAR REGRESSION AND CORRELATION

10. LINEAR REGRESSION AND CORRELATION 1 10. LINEAR REGRESSION AND CORRELATION The contingency table describes an association between two nominal (categorical) variables (e.g., use of supplemental oxygen and mountaineer survival ). We have

More information

STAT 503X Case Study 1: Restaurant Tipping

STAT 503X Case Study 1: Restaurant Tipping STAT 503X Case Study 1: Restaurant Tipping 1 Description Food server s tips in restaurants may be influenced by many factors including the nature of the restaurant, size of the party, table locations in

More information