Biostatistics & SAS programming

Size: px
Start display at page:

Download "Biostatistics & SAS programming"

Transcription

1 Biostatistics & SAS programming Kevin Zhang March 6, 2017 ANOVA 1

2 Two groups only Independent groups T test Comparison One subject belongs to only one groups and observed only once Thus the observations from different groups reflects different subjects Paired group T test One subject will be observed twice Values from different groups are paired thus correlated PROC TTEST Will solve everything March 6, 2017 ANOVA 2

3 More than 2 groups??? In a clinical trial, 3 new approved medications (A, B, and C) are given to 3 groups of diabetic volunteer. We wish to know which one is more effective to reduce the glucose level. How to compare them? Med1.GLU Med2.GLU Med3.GLU March 6, 2017 ANOVA 3

4 ANalysis Of Variance Why do we deal with variance? ANOVA A sequence of constant value has variance of 0. Variance reflects the information contained in the sample! Partition of variance upon sources In the beginning, we have no idea to catch information We may propose a model, a classification, etc Question: Dose the model or classification REALLY catch something from the sample?? i.e. Whether your model or classification makes sense. March 6, 2017 ANOVA 4

5 Things we can control Total variance ALL information you collected Things out of control Info caught by your model or classification Random March 6, 2017 ANOVA 5

6 ANOVA table Source DF SS MS F test statistics P-value Your model or Classification Number of Parameters -1 Reflects the variance caught by your model Averaged variability upon model/classificati on Random Errors Sample size Number of Parameters Variance that out of the control Averaged variability upon randomness Total Sample Size - 1 Total variance Yes, the F value is just a comparison: See if your model/classification dominant the major information or not. March 6, 2017 ANOVA 6

7 Back to the glucose example Med1.GLU Med2.GLU Med3.GLU We can see the difference for sure!! March 6, 2017 ANOVA 7

8 Med1.GLU Med2.GLU Med3.GLU Total variability is (SS) Classification caught Left for randomness The DF of classification: You have 3 medications (classifications), thus the DF = 3-1 = 2 Sample size is 43 (all volunteers), thus Total DF = 43-1=42 The DF of randomness will be 42 2 = 40 March 6, 2017 ANOVA 8

9 Filling the blanks Source DF Sum of Squares Mean Square F Value Pr > F Model <.0001 Error Total That tells the classification is success, and we can distinguish the 3 medications. March 6, 2017 ANOVA 9

10 DATA step SAS programming We prefer following structure of your data set: Observed values Classes 79 Med1 78 Med1 86 Med2 March 6, 2017 ANOVA 10

11 How to: Reorganizing data sets Take Column 1 (Med1) out as a separate dataset, say Med1 Take Column 2 (Med2) as Med2 dataset Column 3 as Med3 Stack Med1, Med2, Med3 together Errr More actions are needed: Labels of groups Change the observation name from Medx.GLU to an unique name Med1.GLU Med2.GLU Med3.GLU March 6, 2017 ANOVA 11

12 DATA Step Will do the same thing for all 3, to make sure value column has unique name -- Glucose Yes, right now, the value column is still named as Med1_GLU, and we want to keep the values for sure. Glucose Medication 79 Medication 1 78 Medication 1 data med1 ( rename=(med1_glu=glucose) keep=med1_glu Medication) set Glu; Medication = "Medication 1"; /* Add the label to all values in this data set*/ if cmiss(med1_glu) then delete; run; Dealing with the missing values: Thus to trim those. in the imported data 75 Medication 1 90 Medication 1 83 Medication 1 79 Medication 1 75 Medication 1 81 Medication 1 71 Medication 1 78 Medication 1 73 Medication 1 72 Medication 1 76 Medication 1 73 Medication 1 75 Medication 1 March 6, 2017 ANOVA 12

13 Similar code for Med2 and Med3 data med2 (rename=(med2_glu=glucose) keep=med2_glu Medication); set Glu; Medication = "Medication 2"; if cmiss(med2_glu) then delete; run; data med3 (rename=(med3_glu=glucose) keep=med3_glu Medication); set Glu; Medication = "Medication 3"; if cmiss(med3_glu) then delete; run; March 6, 2017 ANOVA 13

14 data med; set med1 med2 med3; run; Stack all 3 data sets Now it is ready!! March 6, 2017 ANOVA 14

15 PROC ANOVA proc anova data=med; class Medication; model Glucose = Medication; /* ANOVA: Taget = Factor */ means Medication/tukey; run; Post-hoc study: In case we find difference, we compare classes pairely. Tell SAS which variable in the data set is used to classify the value column. Telling your classification model, i.e. Using Medication column classify Glucose value column. March 6, 2017 ANOVA 15

16 Homework The CFO of a global company wishes to research the pay rate of the employees in different areas. In payrate.csv he summarized pay rate of sampled employees from US branch, Canada branch, Europe branch, Australia branch, Asia branch and Africa branch. Please analyze the values and tell: Do you think there exists significant difference between branches? Why? Demonstrate the side-by-side boxplot In case you think the difference was significant, then what is the relationship among them? Could sort the branches from largest pay rate to smallest? March 6, 2017 ANOVA 16

A few things to remember about ANOVA

A few things to remember about ANOVA A few things to remember about ANOVA 1) The F-test that is performed is always 1-tailed. This is because your alternative hypothesis is always that the between group variation is greater than the within

More information

Analysis of Variance. Copyright 2014 Pearson Education, Inc.

Analysis of Variance. Copyright 2014 Pearson Education, Inc. Analysis of Variance 12-1 Learning Outcomes Outcome 1. Understand the basic logic of analysis of variance. Outcome 2. Perform a hypothesis test for a single-factor design using analysis of variance manually

More information

Week 7 One-way ANOVA

Week 7 One-way ANOVA Week 7 One-way ANOVA Objectives By the end of this lecture, you should be able to: Understand the shortcomings of comparing multiple means as pairs of hypotheses. Understand the steps of the ANOVA method

More information

MGB 203B Homework # LSD = 1 1

MGB 203B Homework # LSD = 1 1 MGB 0B Homework # 4.4 a α =.05: t = =.05 LSD = α /,n k t.05, 7 t α /,n k MSE + =.05 700 + = 4.8 n i n j 0 0 i =, j = 8.7 0.4 7. i =, j = 8.7.7 5.0 i =, j = 0.4.7. Conclusion: µ differs from µ and µ. b

More information

ANOVA - Implementation.

ANOVA - Implementation. ANOVA - Implementation http://www.pelagicos.net/classes_biometry_fa17.htm Doing an ANOVA With RCmdr Categorical Variable One-Way ANOVA Testing a single Factor dose with 3 treatments (low, mid, high) Doing

More information

One-factor ANOVA by example

One-factor ANOVA by example ANOVA One-factor ANOVA by example 2 One-factor ANOVA by visual inspection 3 4 One-factor ANOVA H 0 H 0 : µ 1 = µ 2 = µ 3 = H A : not all means are equal 5 One-factor ANOVA but why not t-tests t-tests?

More information

Select Boxplot -> Multiple Y's (simple) and select all variable names.

Select Boxplot -> Multiple Y's (simple) and select all variable names. One Factor ANOVA in Minitab As an example, we will use the data below. A study looked at the days spent in the hospital for different regions of the United States. Can the company reject the claim the

More information

Unit 4: Inference for numerical variables Lecture 3: ANOVA

Unit 4: Inference for numerical variables Lecture 3: ANOVA Unit 4: Inference for numerical variables Lecture 3: ANOVA Statistics 101 Thomas Leininger June 10, 2013 Announcements Announcements Proposals due tomorrow. Will be returned to you by Wednesday. You MUST

More information

Midterm Exam 1, section 2. Thursday, September hour, 15 minutes

Midterm Exam 1, section 2. Thursday, September hour, 15 minutes San Francisco State University Michael Bar ECON 312 Fall 2018 Midterm Exam 1, section 2 Thursday, September 27 1 hour, 15 minutes Name: Instructions 1. This is closed book, closed notes exam. 2. You can

More information

Experimental Design and Data Analysis Part 2

Experimental Design and Data Analysis Part 2 Experimental Design and Data Analysis Part 2 Assump@ons for Parametric Tests t- test and ANOVA Independence Variance Normality t-test Yes Yes Yes ANOVA Yes Yes Yes Lecture 7 AEC 460 Assume homogeneity

More information

Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA

Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA Introduction to Analysis of Variance (ANOVA) The Structural Model, The Summary Table, and the One- Way ANOVA Limitations of the t-test Although the t-test is commonly used, it has limitations Can only

More information

INTRODUCTION TO PATTERN RECOGNITION

INTRODUCTION TO PATTERN RECOGNITION INTRODUCTION TO PATTERN RECOGNITION 3 Introduction Our ability to recognize a face, to understand spoken words, to read handwritten characters all these abilities belong to the complex processes of pattern

More information

PLANNED ORTHOGONAL CONTRASTS

PLANNED ORTHOGONAL CONTRASTS PLANNED ORTHOGONAL CONTRASTS Please note: This handout is useful background for the workshop, not what s covered in it. Basic principles for contrasts are the same in repeated measures. Planned orthogonal

More information

Navigate to the golf data folder and make it your working directory. Load the data by typing

Navigate to the golf data folder and make it your working directory. Load the data by typing Golf Analysis 1.1 Introduction In a round, golfers have a number of choices to make. For a particular shot, is it better to use the longest club available to try to reach the green, or would it be better

More information

Background Information. Project Instructions. Problem Statement. EXAM REVIEW PROJECT Microsoft Excel Review Baseball Hall of Fame Problem

Background Information. Project Instructions. Problem Statement. EXAM REVIEW PROJECT Microsoft Excel Review Baseball Hall of Fame Problem Background Information Every year, the National Baseball Hall of Fame conducts an election to select new inductees from candidates nationally recognized for their talent or association with the sport of

More information

Statistical Analysis of PGA Tour Skill Rankings USGA Research and Test Center June 1, 2007

Statistical Analysis of PGA Tour Skill Rankings USGA Research and Test Center June 1, 2007 Statistical Analysis of PGA Tour Skill Rankings 198-26 USGA Research and Test Center June 1, 27 1. Introduction The PGA Tour has recorded and published Tour Player performance statistics since 198. All

More information

Legendre et al Appendices and Supplements, p. 1

Legendre et al Appendices and Supplements, p. 1 Legendre et al. 2010 Appendices and Supplements, p. 1 Appendices and Supplement to: Legendre, P., M. De Cáceres, and D. Borcard. 2010. Community surveys through space and time: testing the space-time interaction

More information

IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS. Victoria Allred

IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS. Victoria Allred IDENTIFYING SUBJECTIVE VALUE IN WOMEN S COLLEGE GOLF RECRUITING REGARDLESS OF SOCIO-ECONOMIC CLASS by Victoria Allred A Senior Honors Project Presented to the Honors College East Carolina University In

More information

On the association of inrun velocity and jumping width in ski. jumping

On the association of inrun velocity and jumping width in ski. jumping On the association of inrun velocity and jumping width in ski jumping Oliver Kuss Institute of Medical Epidemiology, Biostatistics, and Informatics University of Halle-Wittenberg, 06097 Halle (Saale),

More information

Estimating the Probability of Winning an NFL Game Using Random Forests

Estimating the Probability of Winning an NFL Game Using Random Forests Estimating the Probability of Winning an NFL Game Using Random Forests Dale Zimmerman February 17, 2017 2 Brian Burke s NFL win probability metric May be found at www.advancednflstats.com, but the site

More information

Factorial Analysis of Variance

Factorial Analysis of Variance Factorial Analysis of Variance Overview of the Factorial ANOVA Factorial ANOVA (Two-Way) In the context of ANOVA, an independent variable (or a quasiindependent variable) is called a factor, and research

More information

y ) s x x )(y i (x i r = 1 n 1 s y Statistics Lecture 7 Exploring Data , y 2 ,y n (x 1 ),,(x n ),(x 2 ,y 1 How two variables vary together

y ) s x x )(y i (x i r = 1 n 1 s y Statistics Lecture 7 Exploring Data , y 2 ,y n (x 1 ),,(x n ),(x 2 ,y 1 How two variables vary together Statistics 111 - Lecture 7 Exploring Data Numerical Summaries for Relationships between Variables Administrative Notes Homework 1 due in recitation: Friday, Feb. 5 Homework 2 now posted on course website:

More information

Case Processing Summary. Cases Valid Missing Total N Percent N Percent N Percent % 0 0.0% % % 0 0.0%

Case Processing Summary. Cases Valid Missing Total N Percent N Percent N Percent % 0 0.0% % % 0 0.0% GET FILE='C:\Users\acantrell\Desktop\demo5.sav'. DATASET NAME DataSet1 WINDOW=FRONT. EXAMINE VARIABLES=PASSYDSPG RUSHYDSPG /PLOT BOXPLOT HISTOGRAM /COMPARE GROUPS /STATISTICS DESCRIPTIVES /CINTERVAL 95

More information

Name May 3, 2007 Math Probability and Statistics

Name May 3, 2007 Math Probability and Statistics Name May 3, 2007 Math 341 - Probability and Statistics Long Exam IV Instructions: Please include all relevant work to get full credit. Encircle your final answers. 1. An article in Professional Geographer

More information

Chapter 7. Comparing Two Population Means. Comparing two population means. T-tests: Independent samples and paired variables.

Chapter 7. Comparing Two Population Means. Comparing two population means. T-tests: Independent samples and paired variables. Chapter 7 Comparing Two Population Means Comparing two population means T-tests: Independent samples and paired variables. Usually subjects are assigned to treatment or control groups and one or more variables

More information

Lab 11: Introduction to Linear Regression

Lab 11: Introduction to Linear Regression Lab 11: Introduction to Linear Regression Batter up The movie Moneyball focuses on the quest for the secret of success in baseball. It follows a low-budget team, the Oakland Athletics, who believed that

More information

Announcements. % College graduate vs. % Hispanic in LA. % College educated vs. % Hispanic in LA. Problem Set 10 Due Wednesday.

Announcements. % College graduate vs. % Hispanic in LA. % College educated vs. % Hispanic in LA. Problem Set 10 Due Wednesday. Announcements Announcements UNIT 7: MULTIPLE LINEAR REGRESSION LECTURE 1: INTRODUCTION TO MLR STATISTICS 101 Problem Set 10 Due Wednesday Nicole Dalzell June 15, 2015 Statistics 101 (Nicole Dalzell) U7

More information

BIOL 101L: Principles of Biology Laboratory

BIOL 101L: Principles of Biology Laboratory BIOL 101L: Principles of Biology Laboratory Sampling populations To understand how the world works, scientists collect, record, and analyze data. In this lab, you will learn concepts that pertain to these

More information

One Way ANOVA (Analysis of Variance)

One Way ANOVA (Analysis of Variance) One Wa ANOVA (Analsis of Variance) The one-wa analsis of variance (ANOVA) is used to determine whether there are an significant differences between the means of two or more independent (unrelated) groups

More information

Factorial ANOVA Problems

Factorial ANOVA Problems Factorial ANOVA Problems Q.1. In a 2-Factor ANOVA, measuring the effects of 2 factors (A and B) on a response (y), there are 3 levels each for factors A and B, and 4 replications per treatment combination.

More information

Analysis of Car-Pedestrian Impact Scenarios for the Evaluation of a Pedestrian Sensor System Based on the Accident Data from Sweden

Analysis of Car-Pedestrian Impact Scenarios for the Evaluation of a Pedestrian Sensor System Based on the Accident Data from Sweden 136 S.N. Huang, J.K. Yang Division of Vehicle Safety, Chalmers University of Technology, Göteborg, Sweden F. Eklund Automotive Safety Electronics, Autoliv Electronics AB, Linköping, Sweden Analysis of

More information

One-way ANOVA: round, narrow, wide

One-way ANOVA: round, narrow, wide 5/4/2009 9:19:18 AM Retrieving project from file: 'C:\DOCUMENTS AND SETTINGS\BOB S\DESKTOP\RJS\COURSES\MTAB\FIRSTBASE.MPJ' ========================================================================== This

More information

Class 23: Chapter 14 & Nested ANOVA NOTES: NOTES: NOTES:

Class 23: Chapter 14 & Nested ANOVA NOTES: NOTES: NOTES: Slide 1 Chapter 13: ANOVA for 2-way classifications (2 of 2) Fixed and Random factors, Model I, Model II, and Model III (mixed model) ANOVA Chapter 14: Unreplicated Factorial & Nested Designs Slide 2 HW

More information

Competitive Performance of Elite Olympic-Distance Triathletes: Reliability and Smallest Worthwhile Enhancement

Competitive Performance of Elite Olympic-Distance Triathletes: Reliability and Smallest Worthwhile Enhancement SPORTSCIENCE sportsci.org Original Research / Performance Competitive Performance of Elite Olympic-Distance Triathletes: Reliability and Smallest Worthwhile Enhancement Carl D Paton, Will G Hopkins Sportscience

More information

Prokopios Chatzakis, National and Kapodistrian University of Athens, Faculty of Physical Education and Sport Science 1

Prokopios Chatzakis, National and Kapodistrian University of Athens, Faculty of Physical Education and Sport Science 1 Differences between geographic areas (continents) in the distribution of medals at the Beijing Olympic Games 2008 and at the London Olympic Games. Prokopios Chatzakis, National and Kapodistrian University

More information

Bungee Bonanza. Level 1

Bungee Bonanza. Level 1 Bungee Bonanza The problem Level 1 You have recently been employed by the company Bungee Bonanza. A key part of your role is to adjust the height of the bungee jumping platform based on the mass of each

More information

Guide to Computing Minitab commands used in labs (mtbcode.out)

Guide to Computing Minitab commands used in labs (mtbcode.out) Guide to Computing Minitab commands used in labs (mtbcode.out) A full listing of Minitab commands can be found by invoking the HELP command while running Minitab. A reference card, with listing of available

More information

Bivariate Data. Frequency Table Line Plot Box and Whisker Plot

Bivariate Data. Frequency Table Line Plot Box and Whisker Plot U04 D02 Univariate Data Frequency Table Line Plot Box and Whisker Plot Univariate Data Bivariate Data involving a single variable does not deal with causes or relationships the major purpose of univariate

More information

BASKETBALL PREDICTION ANALYSIS OF MARCH MADNESS GAMES CHRIS TSENG YIBO WANG

BASKETBALL PREDICTION ANALYSIS OF MARCH MADNESS GAMES CHRIS TSENG YIBO WANG BASKETBALL PREDICTION ANALYSIS OF MARCH MADNESS GAMES CHRIS TSENG YIBO WANG GOAL OF PROJECT The goal is to predict the winners between college men s basketball teams competing in the 2018 (NCAA) s March

More information

Design of Experiments Example: A Two-Way Split-Plot Experiment

Design of Experiments Example: A Two-Way Split-Plot Experiment Design of Experiments Example: A Two-Way Split-Plot Experiment A two-way split-plot (also known as strip-plot or split-block) design consists of two split-plot components. In industry, these designs arise

More information

DOCUMENT RESUME. A Comparison of Type I Error Rates of Alpha-Max with Established Multiple Comparison Procedures. PUB DATE NOTE

DOCUMENT RESUME. A Comparison of Type I Error Rates of Alpha-Max with Established Multiple Comparison Procedures. PUB DATE NOTE DOCUMENT RESUME ED 415 284 TM 028 030 AUTHOR Barnette, J. Jackson; McLean, James E. TITLE A Comparison of Type I Error Rates of Alpha-Max with Established Multiple Comparison Procedures. PUB DATE 1997-11-13

More information

SUMMARIZING FROG AND TOAD COUNT DATA

SUMMARIZING FROG AND TOAD COUNT DATA SUMMARIZING FROG AND TOAD COUNT DATA This set of protocols will take you through all the steps necessary for summarizing the frog and toad data for each NAAMP route that was been assigned to you. BEFORE

More information

POTENTIAL ENERGY BOUNCE BALL LAB

POTENTIAL ENERGY BOUNCE BALL LAB Energy cannot be created or destroyed. Stored energy is called potential energy, and the energy of motion is called kinetic energy. Potential energy changes as the height of an object changes due to gravity;

More information

Driv e accu racy. Green s in regul ation

Driv e accu racy. Green s in regul ation LEARNING ACTIVITIES FOR PART II COMPILED Statistical and Measurement Concepts We are providing a database from selected characteristics of golfers on the PGA Tour. Data are for 3 of the players, based

More information

Multi Class Event Results Calculator User Guide Updated Nov Resource

Multi Class Event Results Calculator User Guide Updated Nov Resource Multi Class Event Results Calculator User Guide Updated Nov 2011 The Multi Class Point Score has been developed as part of Swimming Australia Ltd. s commitment to creating opportunities for people with

More information

Analysis of AGFC Historical Crappie Trap-Netting Data. Aaron Kern and Andy Yung Arkansas Game and Fish Commission District 6 Fisheries Camden, AR

Analysis of AGFC Historical Crappie Trap-Netting Data. Aaron Kern and Andy Yung Arkansas Game and Fish Commission District 6 Fisheries Camden, AR Analysis of AGFC Historical Crappie Trap-Netting Data Aaron Kern and Andy Yung Arkansas Game and Fish Commission District 6 Fisheries Camden, AR Introduction Important fishery in Arkansas waters AGFC (2017)

More information

Empirical Example II of Chapter 7

Empirical Example II of Chapter 7 Empirical Example II of Chapter 7 1. We use NBA data. The description of variables is --- --- --- storage display value variable name type format label variable label marr byte %9.2f =1 if married wage

More information

Can young skiers perform well both in sprint and endurance races?

Can young skiers perform well both in sprint and endurance races? STATISTICS Dalarna University One year Master s Thesis 28 Can young skiers perform well both in sprint and endurance races? Author: Qi CAO Registered Nr: 832 683 Supervisor: Kenneth Carling Date: 28-6-2

More information

Accident data analysis using Statistical methods A case study of Indian Highway

Accident data analysis using Statistical methods A case study of Indian Highway Accident data analysis using Statistical methods A case study of Indian Highway Rahul Badgujar 1, Priyam Mishra 2, Mayank Chandra 3, Sayali Sandbhor 4, Humera Khanum 5 1,2,3 Undergraduate scholars, Department

More information

Chapter 13. Factorial ANOVA. Patrick Mair 2015 Psych Factorial ANOVA 0 / 19

Chapter 13. Factorial ANOVA. Patrick Mair 2015 Psych Factorial ANOVA 0 / 19 Chapter 13 Factorial ANOVA Patrick Mair 2015 Psych 1950 13 Factorial ANOVA 0 / 19 Today s Menu Now we extend our one-way ANOVA approach to two (or more) factors. Factorial ANOVA: two-way ANOVA, SS decomposition,

More information

Energy of a Rolling Ball

Energy of a Rolling Ball Skills Practice Lab DATASHEET A Energy of a Rolling Ball Raised objects have gravitational potential energy (PE). Moving objects have kinetic energy (KE). In this lab, you will find out how these two kinds

More information

EXST7015: Salaries of all American league baseball players (1994) Salaries in thousands of dollars RAW DATA LISTING

EXST7015: Salaries of all American league baseball players (1994) Salaries in thousands of dollars RAW DATA LISTING ANOVA & Design Randomized Block Design Page 1 1 **EXAMPLE 1******************************************************; 2 *** The 1994 salaries of all American league baseball players ***; 3 *** as reported

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION Value of sockeye salmon resources in Bristol Bay. Sockeye salmon were the most valuable fishery in the United States, assessed at 7.9 billion $US between 1950 and 2008. Bristol Bay produced 63% of this

More information

1) Włodzimierz Starosta, 2) Iwona Dębczyńska-Wróbel, 3) Łukasz Lamcha

1) Włodzimierz Starosta, 2) Iwona Dębczyńska-Wróbel, 3) Łukasz Lamcha 1) Włodzimierz Starosta, 2) Iwona Dębczyńska-Wróbel, 3) Łukasz Lamcha 1) International Association of Sport Kinetics, State Research Institute of Sport in Warsaw (Poland) 2-3) University School of Physical

More information

Robert Jones Bandage Report

Robert Jones Bandage Report Robert Jones Bandage Report Zach Browning Daniel Elsbury Nick Frazey December 13, 011 Table of Contents Abstract:... 3 Introduction:... 3 Background:... 3 Motivation:... 3 Objective:... 4 Methodology:...

More information

DISMAS Evaluation: Dr. Elizabeth C. McMullan. Grambling State University

DISMAS Evaluation: Dr. Elizabeth C. McMullan. Grambling State University DISMAS Evaluation 1 Running head: Project Dismas Evaluation DISMAS Evaluation: 2007 2008 Dr. Elizabeth C. McMullan Grambling State University DISMAS Evaluation 2 Abstract An offender notification project

More information

Confidence Interval Notes Calculating Confidence Intervals

Confidence Interval Notes Calculating Confidence Intervals Confidence Interval Notes Calculating Confidence Intervals Calculating One-Population Mean Confidence Intervals for Quantitative Data It is always best to use a computer program to make these calculations,

More information

Grip Force and Heart Rate Responses to Manual Carrying Tasks: Effects of Material, Weight, and Base Area of the Container

Grip Force and Heart Rate Responses to Manual Carrying Tasks: Effects of Material, Weight, and Base Area of the Container International Journal of Occupational Safety and Ergonomics (JOSE) 2014, Vol. 20, No. 3, 377 383 Grip Force and Heart Rate Responses to Manual Carrying Tasks: Effects of Material, Weight, and Base Area

More information

WATER OIL RELATIVE PERMEABILITY COMPARATIVE STUDY: STEADY VERSUS UNSTEADY STATE

WATER OIL RELATIVE PERMEABILITY COMPARATIVE STUDY: STEADY VERSUS UNSTEADY STATE SCA2005-77 1/7 WATER OIL RELATIVE PERMEABILITY COMPARATIVE STUDY: STEADY VERSUS UNSTEADY STATE 1 Marcelo M. Kikuchi, 1 Celso C.M. Branco, 2 Euclides J. Bonet, 2 Rosângela M.Zanoni, 1 Carlos M. Paiva 1

More information

Keywords: multiple linear regression; pedestrian crossing delay; right-turn car flow; the number of pedestrians;

Keywords: multiple linear regression; pedestrian crossing delay; right-turn car flow; the number of pedestrians; Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Scien ce s 96 ( 2013 ) 1997 2003 13th COTA International Conference of Transportation Professionals (CICTP 2013)

More information

N. Abid 2 and M. Idrissi 1 ABSTRACT

N. Abid 2 and M. Idrissi 1 ABSTRACT SCRS//. ANALYSIS OF THE SIZE STRUCTURE AND LENGTH-WEIGHT RELATIONSHIPS OF SWORDFISH (Xiphias gladius) CAUGHT BY THE MOROCCAN DRIFTNET FISHERY IN THE MEDITERRANEAN SEA DURING 7. N. Abid and M. Idrissi 1

More information

Stats 2002: Probabilities for Wins and Losses of Online Gambling

Stats 2002: Probabilities for Wins and Losses of Online Gambling Abstract: Jennifer Mateja Andrea Scisinger Lindsay Lacher Stats 2002: Probabilities for Wins and Losses of Online Gambling The objective of this experiment is to determine whether online gambling is a

More information

SCIENTIFIC COMMITTEE SEVENTH REGULAR SESSION August 2011 Pohnpei, Federated States of Micronesia

SCIENTIFIC COMMITTEE SEVENTH REGULAR SESSION August 2011 Pohnpei, Federated States of Micronesia SCIENTIFIC COMMITTEE SEVENTH REGULAR SESSION 9-17 August 2011 Pohnpei, Federated States of Micronesia CPUE of skipjack for the Japanese offshore pole and line using GPS and catch data WCPFC-SC7-2011/SA-WP-09

More information

INSTITUTE AND FACULTY OF ACTUARIES. Curriculum 2019 AUDIT TRAIL

INSTITUTE AND FACULTY OF ACTUARIES. Curriculum 2019 AUDIT TRAIL INSTITUTE AND FACULTY OF ACTUARIES Curriculum 2019 AUDIT TRAIL Subject CP2 Actuarial Modelling Paper One Institute and Faculty of Actuaries Triathlon model Objective Each year on the Island of IFoA a Minister

More information

P.O.Box 43 Blindern, 0313 Oslo, Norway Tel.: , Fax: Statkraft,Postboks 200 Lilleaker, 0216 Oslo, Norway ABSTRACT

P.O.Box 43 Blindern, 0313 Oslo, Norway Tel.: , Fax: Statkraft,Postboks 200 Lilleaker, 0216 Oslo, Norway ABSTRACT A NEW TESTSITE FOR WIND CORRECTION OF PRECIPITATION MEASUREMENTS AT A MOUNTAIN PLATEAU IN SOUTHERN NORWAY Mareile Wolff 1, Ragnar Brækkan 1, Ketil Isaaksen 1, Erik Ruud 2 1 Norwegian Meteorological Institute,

More information

Example 1: One Way ANOVA in MINITAB

Example 1: One Way ANOVA in MINITAB Example : One Way ANOVA in MINITAB A consumer group wants to compare a new brand of wax (Brand-X) to two leading brands (Sureglow and Microsheen) in terms of Effectiveness of wax. Following data is collected

More information

NCSS Statistical Software

NCSS Statistical Software Chapter 256 Introduction This procedure computes summary statistics and common non-parametric, single-sample runs tests for a series of n numeric, binary, or categorical data values. For numeric data,

More information

Total Morphological Comparison Between Anolis oculatus and Anolis cristatellus

Total Morphological Comparison Between Anolis oculatus and Anolis cristatellus Total Morphological Comparison Between Anolis oculatus and Anolis cristatellus Figure 1 Dominican anole (Anolis oculatus) Figure 2 Puerto Rican crested anole (Anolis cristatellus) Nicholas Gill June 2015

More information

Journal of Emerging Trends in Computing and Information Sciences

Journal of Emerging Trends in Computing and Information Sciences A Study on Methods to Calculate the Coefficient of Variance in Daily Traffic According to the Change in Hourly Traffic Volume Jung-Ah Ha Research Specialist, Korea Institute of Construction Technology,

More information

Aquaculture Technology - PBBT301 UNIT I - MARINE ANIMALS IN AQUACULTURE

Aquaculture Technology - PBBT301 UNIT I - MARINE ANIMALS IN AQUACULTURE Aquaculture Technology - PBBT301 UNIT I - MARINE ANIMALS IN AQUACULTURE PART A 1. Define aquaculture. 2. Write two objectives of aquaculture? 3. List the types of aquaculture. 4. What is monoculture? 5.

More information

Preliminary statistical analysis of. the international eventing. results 2013

Preliminary statistical analysis of. the international eventing. results 2013 Lausanne 28/1/14 Preliminary statistical analysis of the international eventing results 2013 Overview of the talk Statistical analysis The data The statistical technique Analysis of the falls data (related

More information

ISDS 4141 Sample Data Mining Work. Tool Used: SAS Enterprise Guide

ISDS 4141 Sample Data Mining Work. Tool Used: SAS Enterprise Guide ISDS 4141 Sample Data Mining Work Taylor C. Veillon Tool Used: SAS Enterprise Guide You may have seen the movie, Moneyball, about the Oakland A s baseball team and general manager, Billy Beane, who focused

More information

Section 5 Critiquing Data Presentation - Teachers Notes

Section 5 Critiquing Data Presentation - Teachers Notes Topics from GCE AS and A Level Mathematics covered in Sections 5: Interpret histograms and other diagrams for single-variable data Select or critique data presentation techniques in the context of a statistical

More information

CHAPTER 1 ORGANIZATION OF DATA SETS

CHAPTER 1 ORGANIZATION OF DATA SETS CHAPTER 1 ORGANIZATION OF DATA SETS When you collect data, it comes to you in more or less a random fashion and unorganized. For example, what if you gave a 35 item test to a class of 50 students and collect

More information

Projecting Three-Point Percentages for the NBA Draft

Projecting Three-Point Percentages for the NBA Draft Projecting Three-Point Percentages for the NBA Draft Hilary Sun hsun3@stanford.edu Jerold Yu jeroldyu@stanford.edu December 16, 2017 Roland Centeno rcenteno@stanford.edu 1 Introduction As NBA teams have

More information

ESTIMATION OF THE DESIGN WIND SPEED BASED ON

ESTIMATION OF THE DESIGN WIND SPEED BASED ON The Seventh Asia-Pacific Conference on Wind Engineering, November 8-12, 2009, Taipei, Taiwan ESTIMATION OF THE DESIGN WIND SPEED BASED ON UNCERTAIN PARAMETERS OF THE WIND CLIMATE Michael Kasperski 1 1

More information

Relationship between lower limb strength and running performance in 3 populations of athletes

Relationship between lower limb strength and running performance in 3 populations of athletes Relationship between lower limb strength and running performance in 3 populations of athletes Authors Emma M Beckman 1, Mark J Connick 1, Peter Bukhala 2, and Sean M Tweedy 1 Affiliations 1 The University

More information

Improving the Serving Motion in a Volleyball Game: A Design of Experiment Approach

Improving the Serving Motion in a Volleyball Game: A Design of Experiment Approach www.ijcsi.org 206 Improving the Serving Motion in a Volleyball Game: A Design of Experiment Approach Maryam Mohammadi 1 and Afagh Malek 2 1&2 Department of Manufacturing and Industrial Engineering, Universiti

More information

Organizing Quantitative Data

Organizing Quantitative Data Organizing Quantitative Data MATH 130, Elements of Statistics I J. Robert Buchanan Department of Mathematics Fall 2018 Objectives At the end of this lesson we will be able to: organize discrete data in

More information

Emergence of a professional sports league and human capital formation for sports: The Japanese Professional Football League.

Emergence of a professional sports league and human capital formation for sports: The Japanese Professional Football League. MPRA Munich Personal RePEc Archive Emergence of a professional sports league and human capital formation for sports: The Japanese Professional Football League. Eiji Yamamura 26. February 2013 Online at

More information

Session 2: Introduction to Multilevel Modeling Using SPSS

Session 2: Introduction to Multilevel Modeling Using SPSS Session 2: Introduction to Multilevel Modeling Using SPSS Exercise 1 Description of Data: exerc1 This is a dataset from Kasia Kordas s research. It is data collected on 457 children clustered in schools.

More information

8-1. The Pythagorean Theorem and Its Converse. Vocabulary. Review. Vocabulary Builder. Use Your Vocabulary

8-1. The Pythagorean Theorem and Its Converse. Vocabulary. Review. Vocabulary Builder. Use Your Vocabulary 8-1 The Pythagorean Theorem and Its Converse Vocabulary Review 1. Write the square and the positive square root of each number. Number 9 Square Positive Square Root 1 4 1 16 Vocabulary Builder leg (noun)

More information

DIFFERENCES BETWEEN THE WINNING AND DEFEATED FEMALE HANDBALL TEAMS IN RELATION TO THE TYPE AND DURATION OF ATTACKS

DIFFERENCES BETWEEN THE WINNING AND DEFEATED FEMALE HANDBALL TEAMS IN RELATION TO THE TYPE AND DURATION OF ATTACKS DIFFERENCES BETWEEN THE WINNING AND DEFEATED FEMALE HANDBALL TEAMS IN RELATION TO THE TYPE AND DURATION OF ATTACKS Katarina OHNJEC, Dinko VULETA, Lidija BOJIĆ-ĆAĆIĆ Faculty of Kinesiology, University of

More information

A new Decomposition Algorithm for Multistage Stochastic Programs with Endogenous Uncertainties

A new Decomposition Algorithm for Multistage Stochastic Programs with Endogenous Uncertainties A new Decomposition Algorithm for Multistage Stochastic Programs with Endogenous Uncertainties Vijay Gupta Ignacio E. Grossmann Department of Chemical Engineering Carnegie Mellon University, Pittsburgh

More information

MJA Rev 10/17/2011 1:53:00 PM

MJA Rev 10/17/2011 1:53:00 PM Problem 8-2 (as stated in RSM Simplified) Leonard Lye, Professor of Engineering and Applied Science at Memorial University of Newfoundland contributed the following case study. It is based on the DOE Golfer,

More information

A computer program that improves its performance at some task through experience.

A computer program that improves its performance at some task through experience. 1 A computer program that improves its performance at some task through experience. 2 Example: Learn to Diagnose Patients T: Diagnose tumors from images P: Percent of patients correctly diagnosed E: Pre

More information

Setting up group models Part 1 NITP, 2011

Setting up group models Part 1 NITP, 2011 Setting up group models Part 1 NITP, 2011 What is coming up Crash course in setting up models 1-sample and 2-sample t-tests Paired t-tests ANOVA! Mean centering covariates Identifying rank deficient matrices

More information

MIS0855: Data Science In-Class Exercise: Working with Pivot Tables in Tableau

MIS0855: Data Science In-Class Exercise: Working with Pivot Tables in Tableau MIS0855: Data Science In-Class Exercise: Working with Pivot Tables in Tableau Objective: Work with dimensional data to navigate a data set Learning Outcomes: Summarize a table of data organized along dimensions

More information

NAME: A graph contains five major parts: a. Title b. The independent variable c. The dependent variable d. The scales for each variable e.

NAME: A graph contains five major parts: a. Title b. The independent variable c. The dependent variable d. The scales for each variable e. NAME: Graphing is an important procedure used by scientists to display the data that is collected during a controlled experiment. Line graphs demonstrate change over time and must be constructed correctly

More information

Table 4.1: Descriptive Statistics for FAAM 26-Item ADL Subscale

Table 4.1: Descriptive Statistics for FAAM 26-Item ADL Subscale Table 4.1: Descriptive Statistics for FAAM 26-Item ADL Subscale Item Content Number missing Mean Median SD Skewness (Std. Error) Kurtosis (Std. Error) 1) Standing 52(5.3%) 2.74 3 1.09-0.55(.078) -0.41(.16)

More information

How Effective is Change of Pace Bowling in Cricket?

How Effective is Change of Pace Bowling in Cricket? How Effective is Change of Pace Bowling in Cricket? SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries.

More information

Is lung capacity affected by smoking, sport, height or gender. Table of contents

Is lung capacity affected by smoking, sport, height or gender. Table of contents Sample project This Maths Studies project has been graded by a moderator. As you read through it, you will see comments from the moderator in boxes like this: At the end of the sample project is a summary

More information

CS 7641 A (Machine Learning) Sethuraman K, Parameswaran Raman, Vijay Ramakrishnan

CS 7641 A (Machine Learning) Sethuraman K, Parameswaran Raman, Vijay Ramakrishnan CS 7641 A (Machine Learning) Sethuraman K, Parameswaran Raman, Vijay Ramakrishnan Scenario 1: Team 1 scored 200 runs from their 50 overs, and then Team 2 reaches 146 for the loss of two wickets from their

More information

Decision Trees. Nicholas Ruozzi University of Texas at Dallas. Based on the slides of Vibhav Gogate and David Sontag

Decision Trees. Nicholas Ruozzi University of Texas at Dallas. Based on the slides of Vibhav Gogate and David Sontag Decision Trees Nicholas Ruozzi University of Texas at Dallas Based on the slides of Vibhav Gogate and David Sontag Announcements Course TA: Hao Xiong Office hours: Friday 2pm-4pm in ECSS2.104A1 First homework

More information

Physical Fitness For Futsal Referee Of Football Association In Thailand

Physical Fitness For Futsal Referee Of Football Association In Thailand Journal of Physics: Conference Series PAPER OPEN ACCESS Physical Fitness For Futsal Referee Of Football Association In Thailand To cite this article: Thaweesub Koeipakvaen Acting Sub L.t. 2018 J. Phys.:

More information

Math SL Internal Assessment What is the relationship between free throw shooting percentage and 3 point shooting percentages?

Math SL Internal Assessment What is the relationship between free throw shooting percentage and 3 point shooting percentages? Math SL Internal Assessment What is the relationship between free throw shooting percentage and 3 point shooting percentages? fts6 Introduction : Basketball is a sport where the players have to be adept

More information

Lesson 3 Pre-Visit Teams & Players by the Numbers

Lesson 3 Pre-Visit Teams & Players by the Numbers Lesson 3 Pre-Visit Teams & Players by the Numbers Objective: Students will be able to: Review how to find the mean, median and mode of a data set. Calculate the standard deviation of a data set. Evaluate

More information

Evaluation of pedestrians speed with investigation of un-marked crossing

Evaluation of pedestrians speed with investigation of un-marked crossing Evaluation of pedestrians speed with investigation of un-marked crossing Iraj Bargegol, Naeim Taghizadeh, Vahid Najafi Moghaddam Gilani Abstract Pedestrians are one of the most important users of urban

More information

A Machine Learning Approach to Predicting Winning Patterns in Track Cycling Omnium

A Machine Learning Approach to Predicting Winning Patterns in Track Cycling Omnium A Machine Learning Approach to Predicting Winning Patterns in Track Cycling Omnium Bahadorreza Ofoghi 1,2, John Zeleznikow 1, Clare MacMahon 1,andDanDwyer 2 1 Victoria University, Melbourne VIC 3000, Australia

More information

save percentages? (Name) (University)

save percentages? (Name) (University) 1 IB Maths Essay: What is the correlation between the height of football players and their save percentages? (Name) (University) Table of Contents Raw Data for Analysis...3 Table 1: Raw Data...3 Rationale

More information