proc plot; plot Mean_Illness*Dose=Dose; run;

Size: px
Start display at page:

Download "proc plot; plot Mean_Illness*Dose=Dose; run;"

Transcription

1 options pageno=min nodate formdlim='-'; Title 'Illness Related to Dose of Therapeutic Drug'; run; data Lotus; input Dose N; Do I=1 to N; Input Illness output; end; cards; proc sort; by Dose; proc means noprint; output out=sol mean=mean_illness; var Illness; by Dose; proc plot; plot Mean_Illness*Dose=Dose; run;

2 Clearly the effect of dose is not linear. Illness Related to Dose of Therapeutic Drug Plot of Mean_Illness*Dose. Symbol is value of Dose. Mean_Illness 105 ˆ ˆ 95 ˆ 3 90 ˆ 85 ˆ ˆ Šƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒ

3 Dose Title 'One-Way ANOVA With Welch Test, Pairwise Comparisons, and Orthogonal Contrasts'; run; proc GLM data=lotus; class Dose; model Illness = Dose / ss1 EFFECTSIZE alpha=0.1; means Dose / snk tukey regwq; means Dose / hovtest=obrien hovtest=levene welch; contrast 'Placebo vs Drug' dose ; contrast 'Lo vs Hi' dose ; contrast '10 vs 20' dose ; contrast '30 vs 40' dose ; run; By default, SAS uses the last created data set. In this case, that would be the means in Sol but we need the scores, so we point back to Lotus. One-Way ANOVA With Welch Test, Pairwise Comparisons, and Orthogonal Contrasts The GLM Procedure Class Level Information Class Levels Values Dose Number of Observations Read 100 Number of Observations Used 100

4 The GLM Procedure Dependent Variable: Illness Source DF Sum of Squares Mean Square F Value Pr > F Model <.0001 Error Corrected Total R-Square Coeff Var Root MSE Illness Mean The R-Square here is more commonly known as eta-squared. It is simply the ratio of the model SS to the corrected total SS. Overall Noncentrality Min Var Unbiased Estimate Low MSE Estimate % Confidence Limits (48.022,119.29) Proportion of Variation Accounted for Eta-Square 0.47 Omega-Square % Confidence Limits (0.32,0.54) Omega-squared is a less biased estimator of population 2 than is sample eta-squared. Regardless of which point estimate you report, the confidence interval is the same. I have used a confidence coefficient of (1-2 ) rather than (1 - ) so that the confidence interval will be consistent with the test of significance. If I were to use (1- ) it would be possible that the F test would be significant but the confidence interval would include the value 0. Source DF Type I SS Mean Square F Value Pr > F Semipartial Eta-Square Total Variation Accounted For Semipartial Omega-Square Conservative 90% Confidence Limits Dose < Partial Variation Accounted For Partial Eta-Square Partial Omega-Square 90% Confidence Limits

5 The plot above is a schematic plot. I find it a very useful way to show groups differences in location, dispersion, and shape. It is not included in a plain-text listing, but is included in the htm output.

6 Student-Newman-Keuls Test for Illness Note: This test controls the Type I experimentwise error rate under the complete null hypothesis but not under partial null hypotheses. Alpha 0.05 Error Degrees of Freedom 95 Error Mean Square Number of Means Critical Range Means with the same letter are not significantly different. SNK Grouping Mean N Dose A A A B C C C Notice that when you have asked for pairwise comparisons you do not get group standard deviations. SNK shows that illness with the 30 mg/kg dose is significantly less than with 0 or 40 mg/kg and significantly more than with 10 or 20 mg/kg.

7 The GLM Procedure Ryan-Einot-Gabriel-Welsch Multiple Range Test for Illness Note: This test controls the Type I experimentwise error rate. Alpha 0.05 Error Degrees of Freedom 95 Error Mean Square Number of Means Critical Range Means with the same letter are not significantly different. REGWQ Grouping Mean N Dose A A A B C C C

8 The GLM Procedure Tukey's Studentized Range (HSD) Test for Illness Note: This test controls the Type I experimentwise error rate, but it generally has a higher Type II error rate than REGWQ. Alpha 0.05 Error Degrees of Freedom 95 Error Mean Square Critical Value of Studentized Range Minimum Significant Difference Means with the same letter are not significantly different. Tukey Grouping Mean N Dose A A A B B C B C C Critical values for difference between means: The larger the critical value, the more conservative the test (the less the power). Notice that as you move from the outer layer to the inner layers the SNK is more powerful than the REGWQ and the REGWQ more powerful than the HSD. Number of Means Spanned Technique SNK REGWQ Tukey HSD

9 The GLM Procedure Levene's Test for Homogeneity of Illness Variance ANOVA of Squared Deviations from Group Means Source DF Sum of Squares Mean Square F Value Pr > F Dose Error O'Brien's Test for Homogeneity of Illness Variance ANOVA of O'Brien's Spread Variable, W = 0.5 Source DF Sum of Squares Mean Square F Value Pr > F Dose Error I recommend these tests only if you have a genuine interest in whether or not the groups differs in variance. Do not use these tests to determine whether or not the differences in variances are so great that you need to use a Welch test. When sample sizes are large, these tests will find significant differences even when the departure from homogeneity of variance is so small as to be of no concern. When sample sizes are small, these tests may not be significant even with the variances differ so much that one should use a Welch test. Welch's ANOVA for Illness Source DF F Value Pr > F Dose <.0001 Error

10 Since it did not include a request for pairwise comparisons, the second MEANS statement does include group standard deviations. Level of Dose N Mean Illness Std Dev

11 Dependent Variable: Illness Contrast DF Contrast SS Mean Square Placebo vs Drug The GLM Procedure F Value Pr > F Total Variation Accounted For Semipartial Eta-Square Semipartial Omega- Square Conservative 90% Confidence Limits < Lo vs Hi < vs vs Partial Variation Accounted For Partial Eta-Square Partial Omega-Square 90% Confidence Limits The semipartial coefficients tell us the portion of the total sum of squares that is explained by one contrast. For example, for Low versus High, The partial coefficients excludes from the denominator variance that is explained by other contrasts. That is, of the variance that is not explained by any of the other contrasts, what proportion is explained by this contrast. For example, for Low versus High, 2 SScontrast p Please do note that the (1-2 ) confidence SS SS contrast error interval for partial 2 will be consistent with the F test, but the (1-2 ) confidence interval for semipartial 2 may not.

12 Title 'One-Way ANOVA with Trend Contrasts'; run; proc GLM data=lotus; class Dose; model Illness = Dose / ss1 EFFECTSIZE alpha=0.1; CONTRAST 'Linear' Dose ; CONTRAST 'Quadratic' Dose ; CONTRAST 'Cubic' Dose ; CONTRAST 'Quartic' Dose ; run; One-Way ANOVA with Trend Contrasts The GLM Procedure Class Level Information Class Levels Values Dose Number of Observations Read 100 Number of Observations Used 100

13 The GLM Procedure Dependent Variable: Illness Source DF Sum of Squares Mean Square F Value Pr > F Model <.0001 Error Corrected Total R-Square Coeff Var Root MSE Illness Mean Overall Noncentrality Min Var Unbiased Estimate Low MSE Estimate % Confidence Limits (48.022,119.29) Proportion of Variation Accounted for Eta-Square 0.47 Omega-Square % Confidence Limits (0.32,0.54) Contrast DF Contrast SS Mean Square F Value Pr > F Total Variation Accounted For Semipartial Eta-Square Semipartial Omega- Square Conservative 90% Confidence Limits Linear Quadratic < Cubic Quartic Partial Variation Accounted For Partial Eta-Square Partial Omega-Square 90% Confidence Limits

14 As noted earlier, the (1-2 ) confidence interval for partial 2 will be consistent with the F test, but the (1-2 ) confidence interval for semipartial 2 may not. Look at the statistics for the cubic effect. The F test is significant, and the confidence interval for partial 2 excludes zero, but the confidence interval for semipartial 2 includes zero. Title 'Polynomial Regression'; run; data Polynomial; set Lotus; Quadratic=Dose*Dose; Cubic=Dose**3; Quartic=Dose**4; proc GLM data=polynomial; model Illness = Dose Quadratic Cubic Quartic / ss1 EFFECTSIZE alpha=0.1; run; Polynomial Regression The GLM Procedure Number of Observations Read 100 Number of Observations Used 100

15 Polynomial Regression The GLM Procedure Dependent Variable: Illness Source DF Sum of Squares Mean Square F Value Pr > F Model <.0001 Error Corrected Total R-Square Coeff Var Root MSE Illness Mean Overall Noncentrality Min Var Unbiased Estimate Low MSE Estimate % Confidence Limits (48.022,119.29) Proportion of Variation Accounted for Eta-Square 0.47 Omega-Square % Confidence Limits (0.32,0.54) Source DF Type I SS Mean Square F Value Pr > F Total Variation Accounted For Semipartial Eta-Square Semipartial Omega- Square Conservative 90% Confidence Limits Dose Quadratic < Cubic Quartic Partial Variation Accounted For Partial Eta-Square Partial Omega-Square 90% Confidence Limits

16 Ignore the table below, these tests are based on Type III sums of squares and are not appropriate. Parameter Estimate Standard Error t Value Pr > t Intercept <.0001 Dose Quadratic Cubic Quartic title 'Polynomial Regression with Quartic Component Dropped from the Model'; run; proc GLM data=polynomial; model Illness = Dose Quadratic Cubic / ss1; run; Polynomial Regression with Quartic Component Dropped from the Model The GLM Procedure Number of Observations Read 100 Number of Observations Used 100

17 The GLM Procedure Dependent Variable: Illness Source DF Sum of Squares Mean Square F Value Pr > F Model <.0001 Error Corrected Total R-Square Coeff Var Root MSE Illness Mean Source DF Type I SS Mean Square F Value Pr > F Dose Quadratic <.0001 Cubic Data CI;t= ; df = 95 ; n1 = 20 ; n2 = 20 ; n3 = 20 ; n4 = 20 ; n5 = 20 ; c1 = -1 ; c2 =.25 ; c3 =.25 ; c4 =.25 ; c5 =.25 ; ncp_lower = TNONCT(t,df,.975); ncp_upper = TNONCT(t,df,.025); d_lower = ncp_lower*sqrt(c1*c1/n1 + c2*c2/n2 + c3*c3/n3 + c4*c4/n4 + c5*c5/n5); d_upper = ncp_upper*sqrt(c1*c1/n1 + c2*c2/n2 + c3*c3/n3 + c4*c4/n4 + c5*c5/n5); output; run; proc print; var d_lower d_upper; title 'Confidence Interval on Standardized Contrast'; run; Confidence Interval on Standardized Contrast Obs d_lower d_upper proc gplot data=sol; symbol1 interpol=join width=4 value=triangle height=2 color=blue; plot Mean_Illness*Dose; run; quit;

18

Plot of Items*Condition. Symbol is value of Age. 20 ˆ 18 ˆ Y 16 ˆ. Items Y 14 ˆ 12 ˆ O 10 ˆ 8 ˆ Y O O Y 6 ˆ

Plot of Items*Condition. Symbol is value of Age. 20 ˆ 18 ˆ Y 16 ˆ. Items Y 14 ˆ 12 ˆ O 10 ˆ 8 ˆ Y O O Y 6 ˆ Plot of Items*Condition. Symbol is value of Age. 20 ˆ Y 18 ˆ Y 16 ˆ Items Y 14 ˆ O 12 ˆ O O 10 ˆ 8 ˆ Y O O Y 6 ˆ Šƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒˆƒƒ Counting

More information

Obs location y

Obs location y ods rtf file='s:\webpages\~renaes\output\sas\sas kw output.rtf'; data tab331 ; input location y @@ ; cards ; 1 26.5 1 15.0 1 18.2 1 19.5 1 23.1 1 17.3 2 16.5 2 15.8 2 14.1 2 30.2 2 25.1 2 17.4 3 19.2 3

More information

Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data

Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data STAT:5201 Anaylsis/Applied Statistic II (LSmeans vs. means) Two-Factor unbalanced experiment with factors of Power and Humidity Example compares LSmeans and means statement for unbalanced data Power (levels

More information

Assignment 2 1) DAY TREATMENT TOTALS

Assignment 2 1) DAY TREATMENT TOTALS Assignment 2 1) DAY BATCH 1 2 3 4 5 TOTAL 1 A=8 B=7 D=1 C=7 E=3 26 2 C=11 E=2 A=7 D=3 B=8 31 3 B=4 A=9 C=10 E=1 D=5 29 4 D=6 C=8 E=6 B=6 A=10 36 5 E=4 D=2 B=3 A=8 C=8 25 TOTAL 33 28 27 25 34 147 TREATMENT

More information

ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS

ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS ANALYSIS OF VARIANCE PROCEDURE FOR ANALYZING UNBALANCED DAIRY SCIENCE DATA USING SAS Avtar Singh National Dairy Research Institute, Karnal -132001 In statistics, analysis of variance (ANOVA) is a collection

More information

8.6 Jonckheere-Terpstra Test for Ordered Alternatives. 6.5 Jonckheere-Terpstra Test for Ordered Alternatives

8.6 Jonckheere-Terpstra Test for Ordered Alternatives. 6.5 Jonckheere-Terpstra Test for Ordered Alternatives 8.6 Jonckheere-Terpstra Test for Ordered Alternatives 6.5 Jonckheere-Terpstra Test for Ordered Alternatives 136 183 184 137 138 185 Jonckheere-Terpstra Test Example 186 139 Jonckheere-Terpstra Test Example

More information

Comparing Means. Chapter 24. Case Study Gas Mileage for Classes of Vehicles. Case Study Gas Mileage for Classes of Vehicles Data collection

Comparing Means. Chapter 24. Case Study Gas Mileage for Classes of Vehicles. Case Study Gas Mileage for Classes of Vehicles Data collection Chapter 24 One-Way Analysis of Variance: Comparing Several Means BPS - 5th Ed. Chapter 24 1 Comparing Means Chapter 18: compared the means of two populations or the mean responses to two treatments in

More information

Repeated Measures Twoway Analysis of Variance

Repeated Measures Twoway Analysis of Variance Repeated Measures Twoway Analysis of Variance A researcher was interested in whether frequency of exposure to a picture of an ugly or attractive person would influence one's liking for the photograph.

More information

Chapter 25. One-Way Analysis of Variance: Comparing Several Means. BPS - 5th Ed. Chapter 24 1

Chapter 25. One-Way Analysis of Variance: Comparing Several Means. BPS - 5th Ed. Chapter 24 1 Chapter 25 One-Way Analysis of Variance: Comparing Several Means BPS - 5th Ed. Chapter 24 1 Comparing Means Chapter 18: compared the means of two populations or the mean responses to two treatments in

More information

A Thesis. Presented to. Master of Science in Forensic Science Program EMPORIA STATE UNIVERSITY In Partial Fulfillment

A Thesis. Presented to. Master of Science in Forensic Science Program EMPORIA STATE UNIVERSITY In Partial Fulfillment AN ABSTRACT OF THE THESIS OF Lindsy Rhea Whitlow for the Master of Science in Forensic Science presented on July 13, 2017 An Investigation of Test Impression Methods to Accurately Reproduce Randomly Acquired

More information

Prices of digital cameras

Prices of digital cameras Prices of digital cameras The August 2012 issue of Consumer Reports included a report on digital cameras. The magazine listed 60 cameras, all of which were recommended by them, divided into six categories

More information

Lampiran 1: Data Investasi Perusahaan GE, US, GM dan WEST

Lampiran 1: Data Investasi Perusahaan GE, US, GM dan WEST Lampiran 1: Data Investasi Perusahaan GE, US, GM dan WEST Tahun GE US I F C I F C 1935 33.10 1170.60 97.80 209.90 1362.40 53.80 1936 45.00 2015.80 104.40 355.30 1807.10 50.50 1937 77.20 2803.30 118.00

More information

A1 = Chess A2 = Non-Chess B1 = Male B2 = Female

A1 = Chess A2 = Non-Chess B1 = Male B2 = Female Chapter IV 4.0Analysis And Interpretation Of The Data In this chapter, the analysis of the data of two hundred chess and non chess players of Hyderabad has been analysed.for this study 200 samples were

More information

Syntax Menu Description Options Remarks and examples Stored results References Also see

Syntax Menu Description Options Remarks and examples Stored results References Also see Title stata.com permute Monte Carlo permutation tests Syntax Menu Description Options Remarks and examples Stored results References Also see Syntax Compute permutation test permute permvar exp list [,

More information

Development of an improved flood frequency curve applying Bulletin 17B guidelines

Development of an improved flood frequency curve applying Bulletin 17B guidelines 21st International Congress on Modelling and Simulation, Gold Coast, Australia, 29 Nov to 4 Dec 2015 www.mssanz.org.au/modsim2015 Development of an improved flood frequency curve applying Bulletin 17B

More information

Separating the Signals from the Noise

Separating the Signals from the Noise Quality Digest Daily, October 3, 2013 Manuscript 260 Donald J. Wheeler The second principle for understanding data is that while some data contain signals, all data contain noise, therefore, before you

More information

Better Ways to Illuminate: Effects of Box Type

Better Ways to Illuminate: Effects of Box Type Better Ways to Illuminate: Effects of Box Type During the development of this module several suggestions were made regarding the experimental set up used to collect data on light and temperature emitted

More information

EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1

EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1 EXST 7037 Multivariate Analysis Factor Analysis (SASy version) Page 1 1 *** CH05SD ***; 2 *****************************************************************************; 3 *** The Second International Math

More information

(Notice that the mean doesn t have to be a whole number and isn t normally part of the original set of data.)

(Notice that the mean doesn t have to be a whole number and isn t normally part of the original set of data.) One-Variable Statistics Descriptive statistics that analyze one characteristic of one sample Where s the middle? How spread out is it? Where do different pieces of data compare? To find 1-variable statistics

More information

Mark S. Litaker and Bob Gutin, Medical College of Georgia, Augusta GA. Paper P-715 ABSTRACT INTRODUCTION

Mark S. Litaker and Bob Gutin, Medical College of Georgia, Augusta GA. Paper P-715 ABSTRACT INTRODUCTION Paper P-715 A Simulation Study to Compare the Performance of Permutation Tests for Time by Group Interaction in an Unbalanced Repeated-Measures Design, Using Two Permutation Schemes Mark S. Litaker and

More information

Toolwear Charts. Sample StatFolio: toolwear chart.sgp. Sample Data: STATGRAPHICS Rev. 9/16/2013

Toolwear Charts. Sample StatFolio: toolwear chart.sgp. Sample Data: STATGRAPHICS Rev. 9/16/2013 Toolwear Charts Summary... 1 Data Input... 2 Toolwear Chart... 5 Analysis Summary... 6 Analysis Options... 7 MR(2)/R/S Chart... 8 Toolwear Chart Report... 10 Runs Tests... 10 Tolerance Chart... 11 Save

More information

Possible responses to the 2015 AP Statistics Free Resposne questions, Draft #2. You can access the questions here at AP Central.

Possible responses to the 2015 AP Statistics Free Resposne questions, Draft #2. You can access the questions here at AP Central. Possible responses to the 2015 AP Statistics Free Resposne questions, Draft #2. You can access the questions here at AP Central. Note: I construct these as a service for both students and teachers to start

More information

Correlation and Regression

Correlation and Regression Correlation and Regression Shepard and Feng (1972) presented participants with an unfolded cube and asked them to mentally refold the cube with the shaded square on the bottom to determine if the two arrows

More information

1990 Census Measures. Fast Track Project Technical Report Patrick S. Malone ( ; 9-May-00

1990 Census Measures. Fast Track Project Technical Report Patrick S. Malone ( ; 9-May-00 1990 Census Measures Fast Track Project Technical Report Patrick S. Malone (919-668-6910; malone@alumni.duke.edu) 9-May-00 Table of Contents I. Scale Description II. Report Sample III. Scaling IV. Differences

More information

Jednoczynnikowa analiza wariancji (ANOVA)

Jednoczynnikowa analiza wariancji (ANOVA) Wydział Matematyki Jednoczynnikowa analiza wariancji (ANOVA) Wykład 07 Example 1 An accounting firm has developed three methods to guide its seasonal employees in preparing individual income tax returns.

More information

Chapter 20. Inference about a Population Proportion. BPS - 5th Ed. Chapter 19 1

Chapter 20. Inference about a Population Proportion. BPS - 5th Ed. Chapter 19 1 Chapter 20 Inference about a Population Proportion BPS - 5th Ed. Chapter 19 1 Proportions The proportion of a population that has some outcome ( success ) is p. The proportion of successes in a sample

More information

Lectures 15/16 ANOVA. ANOVA Tests. Analysis of Variance. >ANOVA stands for ANalysis Of VAriance >ANOVA allows us to:

Lectures 15/16 ANOVA. ANOVA Tests. Analysis of Variance. >ANOVA stands for ANalysis Of VAriance >ANOVA allows us to: Lectures 5/6 Analysis of Variance ANOVA >ANOVA stands for ANalysis Of VAriance >ANOVA allows us to: Do multiple tests at one time more than two groups Test for multiple effects simultaneously more than

More information

Assessing Measurement System Variation

Assessing Measurement System Variation Example 1 Fuel Injector Nozzle Diameters Problem A manufacturer of fuel injector nozzles has installed a new digital measuring system. Investigators want to determine how well the new system measures the

More information

Player Speed vs. Wild Pokémon Encounter Frequency in Pokémon SoulSilver Joshua and AP Statistics, pd. 3B

Player Speed vs. Wild Pokémon Encounter Frequency in Pokémon SoulSilver Joshua and AP Statistics, pd. 3B Player Speed vs. Wild Pokémon Encounter Frequency in Pokémon SoulSilver Joshua and AP Statistics, pd. 3B In the newest iterations of Nintendo s famous Pokémon franchise, Pokémon HeartGold and SoulSilver

More information

How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory

How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory Prev Sci (2007) 8:206 213 DOI 10.1007/s11121-007-0070-9 How Many Imputations are Really Needed? Some Practical Clarifications of Multiple Imputation Theory John W. Graham & Allison E. Olchowski & Tamika

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. B) Blood type Frequency

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. B) Blood type Frequency MATH 1342 Final Exam Review Name Construct a frequency distribution for the given qualitative data. 1) The blood types for 40 people who agreed to participate in a medical study were as follows. 1) O A

More information

Statistical tests. Paired t-test

Statistical tests. Paired t-test Statistical tests Gather data to assess some hypothesis (e.g., does this treatment have an effect on this outcome?) Form a test statistic for which large values indicate a departure from the hypothesis.

More information

Permutation inference for the General Linear Model

Permutation inference for the General Linear Model Permutation inference for the General Linear Model Anderson M. Winkler fmrib Analysis Group 3.Sep.25 Winkler Permutation for the glm / 63 in jalapeno: winkler/bin/palm Winkler Permutation for the glm 2

More information

How can it be right when it feels so wrong? Outliers, diagnostics, non-constant variance

How can it be right when it feels so wrong? Outliers, diagnostics, non-constant variance How can it be right when it feels so wrong? Outliers, diagnostics, non-constant variance D. Alex Hughes November 19, 2014 D. Alex Hughes Problems? November 19, 2014 1 / 61 1 Outliers Generally Residual

More information

Starting Experimental Design

Starting Experimental Design Starting Experimental Design Exam 3 will emphasize Experimental Design. Design is the plan for manipulating Independent Variables and analyzing the data. Design determines what you cam learn from your

More information

Mason Chen (Black Belt) Morrill Learning Center, San Jose, CA

Mason Chen (Black Belt) Morrill Learning Center, San Jose, CA Poster ID 12 Google Robot Mason Chen (Black Belt) Morrill Learning Center, San Jose, CA D1 Observations and Research Google Cars stop at the red light and speed up at green light how & why Google Car can

More information

EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY

EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY HIGHER CERTIFICATE IN STATISTICS, 2011 MODULE 3 : Basic statistical methods Time allowed: One and a half hours Candidates should answer THREE questions. Each

More information

Solutions to Odd-Numbered End-of-Chapter Exercises: Chapter 13

Solutions to Odd-Numbered End-of-Chapter Exercises: Chapter 13 Introduction to Econometrics (3 rd Updated Edition by James H. Stock and Mark W. Watson Solutions to Odd-Numbered End-of-Chapter Exercises: Chapter 13 (This version July 0, 014 Stock/Watson - Introduction

More information

NEW ASSOCIATION IN BIO-S-POLYMER PROCESS

NEW ASSOCIATION IN BIO-S-POLYMER PROCESS NEW ASSOCIATION IN BIO-S-POLYMER PROCESS Long Flory School of Business, Virginia Commonwealth University Snead Hall, 31 W. Main Street, Richmond, VA 23284 ABSTRACT Small firms generally do not use designed

More information

Example #2: Factorial Independent Groups Design. A data set was created using summary data presented by Wicherts, Dolan and

Example #2: Factorial Independent Groups Design. A data set was created using summary data presented by Wicherts, Dolan and Example #2: Factorial Independent Groups Design A data set was created using summary data presented by Wicherts, Dolan and Hessen (2005). These authors examined the effects of stereotype threat on women

More information

Section 6.4. Sampling Distributions and Estimators

Section 6.4. Sampling Distributions and Estimators Section 6.4 Sampling Distributions and Estimators IDEA Ch 5 and part of Ch 6 worked with population. Now we are going to work with statistics. Sample Statistics to estimate population parameters. To make

More information

Math 58. Rumbos Fall Solutions to Exam Give thorough answers to the following questions:

Math 58. Rumbos Fall Solutions to Exam Give thorough answers to the following questions: Math 58. Rumbos Fall 2008 1 Solutions to Exam 2 1. Give thorough answers to the following questions: (a) Define a Bernoulli trial. Answer: A Bernoulli trial is a random experiment with two possible, mutually

More information

First-level fmri modeling. UCLA Advanced NeuroImaging Summer School, 2010

First-level fmri modeling. UCLA Advanced NeuroImaging Summer School, 2010 First-level fmri modeling UCLA Advanced NeuroImaging Summer School, 2010 Task on Goal in fmri analysis Find voxels with BOLD time series that look like this Delay of BOLD response Voxel with signal Voxel

More information

Life Science Journal 2014;11(5s)

Life Science Journal 2014;11(5s) Self Satisfaction of the Entrepreneurs in relation to the CSR Practices across Peshawar KPK Pakistan Dr. Shahid Jan 1, Kashif Amin 2, Dr. Muhammad Tariq 1, Dr. Zahoor Ul Haq 3, Dr. Nazim Ali 4 1 Assistant

More information

Web Appendix: Online Reputation Mechanisms and the Decreasing Value of Chain Affiliation

Web Appendix: Online Reputation Mechanisms and the Decreasing Value of Chain Affiliation Web Appendix: Online Reputation Mechanisms and the Decreasing Value of Chain Affiliation November 28, 2017. This appendix accompanies Online Reputation Mechanisms and the Decreasing Value of Chain Affiliation.

More information

This page intentionally left blank

This page intentionally left blank Appendix E Labs This page intentionally left blank Dice Lab (Worksheet) Objectives: 1. Learn how to calculate basic probabilities of dice. 2. Understand how theoretical probabilities explain experimental

More information

An Evaluation of Artifact Calibration in the 5700A Multifunction Calibrator

An Evaluation of Artifact Calibration in the 5700A Multifunction Calibrator An Evaluation of Artifact Calibration in the 57A Multifunction Calibrator Application Note Artifact Calibration, as implemented in the Fluke Calibration 57A Multifunction Calibrator, was a revolutionary

More information

One-Sample Z: C1, C2, C3, C4, C5, C6, C7, C8,... The assumed standard deviation = 110

One-Sample Z: C1, C2, C3, C4, C5, C6, C7, C8,... The assumed standard deviation = 110 SMAM 314 Computer Assignment 3 1.Suppose n = 100 lightbulbs are selected at random from a large population.. Assume that the light bulbs put on test until they fail. Assume that for the population of light

More information

Statistical Hypothesis Testing

Statistical Hypothesis Testing Statistical Hypothesis Testing Statistical Hypothesis Testing is a kind of inference Given a sample, say something about the population Examples: Given a sample of classifications by a decision tree, test

More information

Department of Statistics and Operations Research Undergraduate Programmes

Department of Statistics and Operations Research Undergraduate Programmes Department of Statistics and Operations Research Undergraduate Programmes OPERATIONS RESEARCH YEAR LEVEL 2 INTRODUCTION TO LINEAR PROGRAMMING SSOA021 Linear Programming Model: Formulation of an LP model;

More information

Univariate Descriptive Statistics

Univariate Descriptive Statistics Univariate Descriptive Statistics Displays: pie charts, bar graphs, box plots, histograms, density estimates, dot plots, stemleaf plots, tables, lists. Example: sea urchin sizes Boxplot Histogram Urchin

More information

The following definitions are derived from the online help of VentureSource. 1023

The following definitions are derived from the online help of VentureSource. 1023 Appendix A Definitions from VentureSource The following definitions are derived from the online help of VentureSource. 1023 A.1 Venture Financing Round Types Seed Round: Seed rounds are initial rounds

More information

OPTIMIZATION OF CUTTING CONDITIONS FOR THE REDUCTION CUSP HEIGHT IN THE MILLING PROCESS

OPTIMIZATION OF CUTTING CONDITIONS FOR THE REDUCTION CUSP HEIGHT IN THE MILLING PROCESS OPTIMIZATION OF CUTTING CONDITIONS FOR THE REDUCTION CUSP HEIGHT IN THE MILLING PROCESS Abstract Ing. Jozef Stahovec Ing. Ladislav Kandráč Technical University of Košice Faculty of Mechanical Engineering

More information

A Gentle Introduction to SAS/Graph Software

A Gentle Introduction to SAS/Graph Software A Gentle Introduction to SAS/Graph Software Ben Cochran, The Bedford Group, Raleigh, NC Abstract: The power and flexibility of SAS/GRAPH software enables the user to produce high quality graphs, charts,

More information

Lampiran 1.Perbedaan bentuk tubuh induk jantan & betina huna biru dengan huna capitmerah. Induk RR (huna capitmerah)

Lampiran 1.Perbedaan bentuk tubuh induk jantan & betina huna biru dengan huna capitmerah. Induk RR (huna capitmerah) L A M P I R A N 38 Lampiran 1.Perbedaan bentuk tubuh induk jantan & betina huna biru dengan huna capitmerah Tubuh Induk AA (Huna biru) Jantan Betina Induk RR (huna capitmerah) Jantan Betina 39 Lampiran

More information

Mass Variation Tests for Coating Tablets and Hard Capsules: Rational Application of Mass Variation Tests

Mass Variation Tests for Coating Tablets and Hard Capsules: Rational Application of Mass Variation Tests 1176 Chem. Pharm. Bull. 50(9) 1176 1180 (00) Vol. 50, No. 9 Mass Variation Tests for Coating Tablets and Hard Capsules: Rational Application of Mass Variation Tests Noriko KATORI,* Nobuo AOYAGI, and Shigeo

More information

Chapter -4 RESULTS AND DISCUSSIONS

Chapter -4 RESULTS AND DISCUSSIONS Chapter -4 RESULTS AND DISCUSSIONS The samples of partial, smudged or fragmentary fingerprints along with complete fingerprints on different types of papers from 100 individuals were taken with three types

More information

(3 pts) 1. Which statements are usually true of a left-skewed distribution? (circle all that are correct)

(3 pts) 1. Which statements are usually true of a left-skewed distribution? (circle all that are correct) STAT 451 - Practice Exam I Name (print): Section: This is a practice exam - it s a representative sample of problems that may appear on the exam and also substantially longer than the in-class exam. It

More information

Graphs of Polynomial Functions. Quadratic Functions

Graphs of Polynomial Functions. Quadratic Functions Graphs of Polnomials 1 Graphs of Polnomial Functions Recall that the degree of a polnomial is the highest power of the independent variable appearing in it. A polnomial can have no more roots than its

More information

Summary... 1 Sample Data... 2 Data Input... 3 C Chart... 4 C Chart Report... 6 Analysis Summary... 7 Analysis Options... 8 Save Results...

Summary... 1 Sample Data... 2 Data Input... 3 C Chart... 4 C Chart Report... 6 Analysis Summary... 7 Analysis Options... 8 Save Results... C Chart Summary... 1 Sample Data... 2 Data Input... 3 C Chart... 4 C Chart Report... 6 Analysis Summary... 7 Analysis Options... 8 Save Results... 9 Summary The C Chart procedure creates a control chart

More information

Physics 2310 Lab #5: Thin Lenses and Concave Mirrors Dr. Michael Pierce (Univ. of Wyoming)

Physics 2310 Lab #5: Thin Lenses and Concave Mirrors Dr. Michael Pierce (Univ. of Wyoming) Physics 2310 Lab #5: Thin Lenses and Concave Mirrors Dr. Michael Pierce (Univ. of Wyoming) Purpose: The purpose of this lab is to introduce students to some of the properties of thin lenses and mirrors.

More information

Long-Term Impacts of High Temperatures on Economic Productivity. Evidence from Earnings Data in Ecuador

Long-Term Impacts of High Temperatures on Economic Productivity. Evidence from Earnings Data in Ecuador Long-Term Impacts of High Temperatures on Economic Productivity Evidence from Earnings Data in Ecuador Paul Carrillo, Ram Fishman, Jason Russ George Washington University Motivation Short Term Impacts

More information

Appendices. Chile models. Appendix

Appendices. Chile models. Appendix Appendices Appendix Chile models Table 1 New Philips curve Dependent Variable: DLCPI Date: 11/15/04 Time: 17:23 Sample(adjusted): 1997:2 2003:4 Included observations: 27 after adjusting endpoints Kernel:

More information

THE CCD RIDDLE REVISTED: SIGNAL VERSUS TIME LINEAR SIGNAL VERSUS VARIANCE NON-LINEAR

THE CCD RIDDLE REVISTED: SIGNAL VERSUS TIME LINEAR SIGNAL VERSUS VARIANCE NON-LINEAR THE CCD RIDDLE REVISTED: SIGNAL VERSUS TIME LINEAR SIGNAL VERSUS VARIANCE NON-LINEAR Mark Downing 1, Peter Sinclaire 1. 1 ESO, Karl Schwartzschild Strasse-2, 85748 Munich, Germany. ABSTRACT The photon

More information

Set 4: Game-Playing. ICS 271 Fall 2017 Kalev Kask

Set 4: Game-Playing. ICS 271 Fall 2017 Kalev Kask Set 4: Game-Playing ICS 271 Fall 2017 Kalev Kask Overview Computer programs that play 2-player games game-playing as search with the complication of an opponent General principles of game-playing and search

More information

Harmonic Analysis. Purpose of Time Series Analysis. What Does Each Harmonic Mean? Part 3: Time Series I

Harmonic Analysis. Purpose of Time Series Analysis. What Does Each Harmonic Mean? Part 3: Time Series I Part 3: Time Series I Harmonic Analysis Spectrum Analysis Autocorrelation Function Degree of Freedom Data Window (Figure from Panofsky and Brier 1968) Significance Tests Harmonic Analysis Harmonic analysis

More information

Proportions. Chapter 19. Inference about a Proportion Simple Conditions. Inference about a Proportion Sampling Distribution

Proportions. Chapter 19. Inference about a Proportion Simple Conditions. Inference about a Proportion Sampling Distribution Proportions Chapter 19!!The proportion of a population that has some outcome ( success ) is p.!!the proportion of successes in a sample is measured by the sample proportion: Inference about a Population

More information

Nomograms for visualising relationships between three variables

Nomograms for visualising relationships between three variables Nomograms for visualising relationships between three variables Jonathan Rougier 1 Kate Milner 2 1 Dept Mathematics, Univ. Bristol 2 Crossroads Veterinary Centre, Buckinghamshire UseR! 2011, August 2011,

More information

ROBUST DESIGN -- REDUCING TRANSMITTED VARIATION:

ROBUST DESIGN -- REDUCING TRANSMITTED VARIATION: ABSTRACT ROBUST DESIGN -- REDUCING TRANSMITTED VARIATION: FINDING THE PLATEAUS VIA RESPONSE SURFACE METHODS Patrick J. Whitcomb Mark J. Anderson Stat-Ease, Inc. Stat-Ease, Inc. Hennepin Square, Suite 48

More information

BIOS 312: MODERN REGRESSION ANALYSIS

BIOS 312: MODERN REGRESSION ANALYSIS BIOS 312: MODERN REGRESSION ANALYSIS James C (Chris) Slaughter Department of Biostatistics Vanderbilt University School of Medicine james.c.slaughter@vanderbilt.edu biostat.mc.vanderbilt.edu/coursebios312

More information

Exploring Data Patterns. Run Charts, Frequency Tables, Histograms, Box Plots

Exploring Data Patterns. Run Charts, Frequency Tables, Histograms, Box Plots Exploring Data Patterns Run Charts, Frequency Tables, Histograms, Box Plots 1 Topics I. Exploring Data Patterns - Tools A. Run Chart B. Dot Plot C. Frequency Table and Histogram D. Box Plot II. III. IV.

More information

Two Factor Full Factorial Design with Replications

Two Factor Full Factorial Design with Replications Two Factor Full Factorial Design with Replications Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 Jain@cse.wustl.edu These slides are available on-line at: 22-1 Overview Model Computation

More information

The Effect Of Different Degrees Of Freedom Of The Chi-square Distribution On The Statistical Power Of The t, Permutation t, And Wilcoxon Tests

The Effect Of Different Degrees Of Freedom Of The Chi-square Distribution On The Statistical Power Of The t, Permutation t, And Wilcoxon Tests Journal of Modern Applied Statistical Methods Volume 6 Issue 2 Article 9 11-1-2007 The Effect Of Different Degrees Of Freedom Of The Chi-square Distribution On The Statistical Of The t, Permutation t,

More information

Revision: April 18, E Main Suite D Pullman, WA (509) Voice and Fax

Revision: April 18, E Main Suite D Pullman, WA (509) Voice and Fax Lab 1: Resistors and Ohm s Law Revision: April 18, 2010 215 E Main Suite D Pullman, WA 99163 (509) 334 6306 Voice and Fax Overview In this lab, we will experimentally explore the characteristics of resistors.

More information

Steady State Operating Curve Voltage Control System

Steady State Operating Curve Voltage Control System UTC Engineering 39 Steady State Operating Curve Voltage Control System Michael Edge Partners: Michael Woolery Nathan Holland September 5, 7 Introduction A steady state operating curve was created to show

More information

The Relationship Between Annual GDP Growth and Income Inequality: Developed and Undeveloped Countries

The Relationship Between Annual GDP Growth and Income Inequality: Developed and Undeveloped Countries The Relationship Between Annual GDP Growth and Income Inequality: Developed and Undeveloped Countries Zeyao Luan, Ziyi Zhou Georgia Institute of Technology ECON 3161 Dr. Shatakshee Dhongde April 2017 1

More information

Lesson Sampling Distribution of Differences of Two Proportions

Lesson Sampling Distribution of Differences of Two Proportions STATWAY STUDENT HANDOUT STUDENT NAME DATE INTRODUCTION The GPS software company, TeleNav, recently commissioned a study on proportions of people who text while they drive. The study suggests that there

More information

ABSTRACT. A usability study was used to measure user performance and user preferences for

ABSTRACT. A usability study was used to measure user performance and user preferences for Usability Studies In Virtual And Traditional Computer Aided Design Environments For Spatial Awareness Dr. Syed Adeel Ahmed, Xavier University of Louisiana, USA ABSTRACT A usability study was used to measure

More information

Miguel I. Aguirre-Urreta

Miguel I. Aguirre-Urreta RESEARCH NOTE REVISITING BIAS DUE TO CONSTRUCT MISSPECIFICATION: DIFFERENT RESULTS FROM CONSIDERING COEFFICIENTS IN STANDARDIZED FORM Miguel I. Aguirre-Urreta School of Accountancy and MIS, College of

More information

Lawrence A. Soltis. James K. Little

Lawrence A. Soltis. James K. Little ANGLE TO GRAIN STRENGTH OF DOWEL-TYPE FASTENERS Lawrence A. Soltis Supervisory Research Engineer Forest Products Laboratory,' Forest Service U.S. Department of Agriculture, Madison, WI 53705 Suparman Karnasudirdja

More information

IE 361 Module 4. Metrology Applications of Some Intermediate Statistical Methods for Separating Components of Variation

IE 361 Module 4. Metrology Applications of Some Intermediate Statistical Methods for Separating Components of Variation IE 361 Module 4 Metrology Applications of Some Intermediate Statistical Methods for Separating Components of Variation Reading: Section 2.2 Statistical Quality Assurance for Engineers (Section 2.3 of Revised

More information

CUSTOMER SERVICE DEPARTMENT FAST FAX

CUSTOMER SERVICE DEPARTMENT FAST FAX CUSTOMER SERVICE DEPARTMENT FAST FAX To: FaroArm User From: Customer Service Department FORM: 176-003 5 Pages total including this page. Contact us immediately if pages are missing or not legible. TOPIC:

More information

Prediction Method of Beef Marbling Standard Number Using Parameters Obtained from Image Analysis for Beef Ribeye

Prediction Method of Beef Marbling Standard Number Using Parameters Obtained from Image Analysis for Beef Ribeye Prediction Method of Beef Marbling Standard Number Using Parameters Obtained from Image Analysis for Beef Ribeye Keigo KUCHIDA, Shogo TSURUTA1, a, L. D. Van Vleck2, Mitsuyoshi SUZUKI and Shunzo MIYOSHI

More information

Please Turn Over Page 1 of 7

Please Turn Over Page 1 of 7 . Page 1 of 7 ANSWER ALL QUESTIONS Question 1: (25 Marks) A random sample of 35 homeowners was taken from the village Penville and their ages were recorded. 25 31 40 50 62 70 99 75 65 50 41 31 25 26 31

More information

Project summary. Key findings, Winter: Key findings, Spring:

Project summary. Key findings, Winter: Key findings, Spring: Summary report: Assessing Rusty Blackbird habitat suitability on wintering grounds and during spring migration using a large citizen-science dataset Brian S. Evans Smithsonian Migratory Bird Center October

More information

Examining Cronbach Alpha, Theta, Omega Reliability Coefficients According to Sample Size

Examining Cronbach Alpha, Theta, Omega Reliability Coefficients According to Sample Size Journal of Modern Applied Statistical Methods Volume 6 Issue 1 Article 27 5-1-2007 Examining Cronbach Alpha, Theta, Omega Reliability Coefficients According to Sample Size Ilker Ercan Uludag University,

More information

11-1 Practice. Designing a Study

11-1 Practice. Designing a Study 11-1 Practice Designing a Study Determine whether each situation calls for a survey, an experiment, or an observational study. Explain your reasoning. 1. You want to compare the health of students who

More information

Tutorial on IMCTUNE Software

Tutorial on IMCTUNE Software A P P E N D I X G Tutorial on IMCTUNE Software Objectives Provide an introduction to IMCTUNE software. Describe the tfn and tcf commands for MATLAB that are provided in IMCTUNE to assist in IMC controller

More information

II/IV B.Tech (Supplementary) DEGREE EXAMINATION

II/IV B.Tech (Supplementary) DEGREE EXAMINATION CS/IT 221 April, 2017 1. a) Define a continuous random variable. b) Explain Normal approximation to binomial distribution. c) Write any two properties of Normal distribution. d) Define Point estimation.

More information

PRICES OF THE LIBERTY STANDING QUARTER

PRICES OF THE LIBERTY STANDING QUARTER This document deals with the prices paid by collectors for quarters in the Liberty standing set, issued between 1916 and 1930. Year / Mint / Type Mintage Value 1916 52,000 14,690 1917 Type 1 8,740,000

More information

Analysis of Machining Parameters of Endilling Cutter on Surface Roughness for Aa 6061-T6

Analysis of Machining Parameters of Endilling Cutter on Surface Roughness for Aa 6061-T6 Analysis of Machining Parameters of Endilling Cutter on Surface Roughness for Aa 606-T6 Katara Hiren, Kadam Priyanaka 2, Vanshika Shukla 3, Mr. Parth Shah 4-3 UG Student, Mechanical Engineering Dept.,Sigma

More information

MATRIX SAMPLING DESIGNS FOR THE YEAR2000 CENSUS. Alfredo Navarro and Richard A. Griffin l Alfredo Navarro, Bureau of the Census, Washington DC 20233

MATRIX SAMPLING DESIGNS FOR THE YEAR2000 CENSUS. Alfredo Navarro and Richard A. Griffin l Alfredo Navarro, Bureau of the Census, Washington DC 20233 MATRIX SAMPLING DESIGNS FOR THE YEAR2000 CENSUS Alfredo Navarro and Richard A. Griffin l Alfredo Navarro, Bureau of the Census, Washington DC 20233 I. Introduction and Background Over the past fifty years,

More information

Lecture 17 z-transforms 2

Lecture 17 z-transforms 2 Lecture 17 z-transforms 2 Fundamentals of Digital Signal Processing Spring, 2012 Wei-Ta Chu 2012/5/3 1 Factoring z-polynomials We can also factor z-transform polynomials to break down a large system into

More information

Tennessee Senior Bridge Mathematics

Tennessee Senior Bridge Mathematics A Correlation of to the Mathematics Standards Approved July 30, 2010 Bid Category 13-130-10 A Correlation of, to the Mathematics Standards Mathematics Standards I. Ways of Looking: Revisiting Concepts

More information

1. Section 1 Exercises (all) Appendix A.1 of Vardeman and Jobe (pages ).

1. Section 1 Exercises (all) Appendix A.1 of Vardeman and Jobe (pages ). Stat 40B Homework/Fall 05 Please see the HW policy on the course syllabus. Every student must write up his or her own solutions using his or her own words, symbols, calculations, etc. Copying of the work

More information

New York City Bike Share

New York City Bike Share New York City Bike Share Gary Miguel (garymm), James Kunz (jkunz), Everett Yip (everetty) Background and Data: Citi Bike is a public bicycle sharing system in New York City. It is the largest bike sharing

More information

IE 361 Module 7. Reading: Section 2.5 of Revised SQAME. Prof. Steve Vardeman and Prof. Max Morris. Iowa State University

IE 361 Module 7. Reading: Section 2.5 of Revised SQAME. Prof. Steve Vardeman and Prof. Max Morris. Iowa State University IE 361 Module 7 Calibration Studies and Inference Based on Simple Linear Regression Reading: Section 2.5 of Revised SQAME Prof. Steve Vardeman and Prof. Max Morris Iowa State University Vardeman and Morris

More information

Tables and Figures. Germination rates were significantly higher after 24 h in running water than in controls (Fig. 4).

Tables and Figures. Germination rates were significantly higher after 24 h in running water than in controls (Fig. 4). Tables and Figures Text: contrary to what you may have heard, not all analyses or results warrant a Table or Figure. Some simple results are best stated in a single sentence, with data summarized parenthetically:

More information

fmri design efficiency

fmri design efficiency fmri design efficiency Aim: to design experiments maximising the power of detecting real effects. (That is, avoid type-ii errors, a.k.a misses ). -------------- Hard Constraints: - total duration of acquisition

More information

IES, Faculty of Social Sciences, Charles University in Prague

IES, Faculty of Social Sciences, Charles University in Prague IMPACT OF INTELLECTUAL PROPERTY RIGHTS AND GOVERNMENTAL POLICY ON INCOME INEQUALITY. Ing. Oksana Melikhova, Ph.D. 1, 1 IES, Faculty of Social Sciences, Charles University in Prague Faculty of Mathematics

More information