Session 2: Introduction to Multilevel Modeling Using SPSS

Size: px
Start display at page:

Download "Session 2: Introduction to Multilevel Modeling Using SPSS"

Transcription

1 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. Child level variables: Case = Unique child identifier Sex = Gender of the child; 0 = female, 1= male Suppl = Supplementation treatment; 4 different levels ge = age of the child in years Interest = Parental interest in school work; 0 = yes, 1 = no Ownhome = Does the family own their home; 0 = no, 1 = yes SES = Socio economic status of the family; 0=low, 1=average, 2=high Crowding = continuous crowding measure Weight = weight of the child Height = height of the child Hb = hemoglobin level of the child MI = ody Mass Index of the child Pb = lead level of the child IQ = IQ of the child School level variables: School = unique school identifier Crowdings = average crowding of the families in the school Ownhomes = proportion of families that own their home in the school Distcat = distance from the foundry; 0=<=1700, 1=>1700 1

2 Data Exploration 1. The SPSS menus are convenient for preliminary data exploration. To open a data file in SPSS choose Open in the File menu and look for the file Exerc1. t the bottom of the spreadsheet you will see two tabs: data view and variable view. When clicking on the variable view tab, you will see a spreadsheet containing information pertaining to all the different variables, such as variable labels and value labels. You can add or change this information later if needed. 2. During the first phase of the data exploration you might want to look at one variable at a time. This will allow you to answer the following types of questions:. How many schools are there? How many children are there in each school? What is the mean age of these children and what is the range? How many males and females does this dataset contain? Useful menus: To obtain basic summary statistics for continuous variables, use the menu: nalyze>descriptive Statistics>Descriptives. For example, enter the following variables in the variable box: iq, pb. y clicking on the option button, you can obtain additional statistics. You can also graph these variables with a histogram. To obtain a histogram, use the menu: Graphs>Histogram. To obtain frequency tables for categorical variables, use the menu nalyze>descriptive Statistics>Frequencies. For example, enter the variable sex in the frequencies box. Clicking on the Statistics button will allow you to change some of the default output. You can easily obtain the corresponding bar graph with the Graph button. 3. In a second phase you can examine two variables at a time using nalyze>compare means>means or nalyze>descriptives>crosstabs or nalyze>correlate>ivariate. This will allow you to answer the following type of questions:. What is the mean IQ for each school? How many males and females are there in each school? re the IQ level and Pb level correlated? 2

3 To obtain means across different categories use nalyze>compare means>means. In the dependent variable enter for example IQ, in the independent variable list you can enter school. To obtain cross tabulations use the menu nalyze>descriptive Statistics>Crosstabs. Enter school in the row box and suppl in the column box. To obtain a correlation matrix showing the correlations between different variables use the menu nalyze>correlate>ivariate. In the variable box enter the following variables: Pb, IQ, Hb, and weight To obtain scatterplots corresponding to the above correlations use the menu Graphs>Scatter. 4. On the left hand side of the Output window you will see the Navigator output. This window records the various outputs you have requested. y clicking on any of these entries, you can easily retrieve or delete a previous analysis. 5. To run a simple regression, use the menu nalyze>regression>linear. In the independent variable box enter Pb and in the dependent variable box enter IQ. 6. If you wish to run a separate but similar analysis for each school, the afore-mentioned simple regression, split the file before running the analysis. To achieve this, use the menu Data>Split File. In the menu, choose the bullet Compare Groups and enter school in the groups based on: box. The data file will remain split and all the subsequent analysis and graphs will be replicated for each school until you go back to the split file menu and choose the bullet nalyze all cases, do not create groups. 3

4 nalysis 1. The menus in SPSS are convenient for exploratory analysis but sometimes it is more useful to use SPSS in command mode. Indeed, not all possible commands are available through the menus, and the commands are sometimes easier to use (certainly when you have to repeatedly use a similar command). Each menu has a paste button along with the OK button. If you hit the paste button rather than the OK button after you have filled out the menu, it will bring you to the syntax window where the menu is translated into a command file. You can then highlight the part of the command file you wish to run and hit the arrow in the toolbar. This will generate exactly the same output as if you had hit the OK button. From now on, we will use SPSS in the command mode. 2. Let us experiment with the SPSS connection between the menus and the commands by running an overall regression on all the children using IQ as the dependent variable and sex, age, interest, Pb, and as independent variables. This can be done in the menus using nalyze>general Linear Models>Univariate. In the dependent variable box put IQ, and all other variables can be brought over to the covariate box. Under the Option button, click on Parameter Estimates. fter clicking Paste, you should obtain the following command file in the syntax window. You could also have typed this file directly. In the SPSS syntax editor highlight the command and submit them together: UNINOV IQ WITH sex age interest Pb distcat /METHOD = SSTYPE(3) /INTERCEPT = INCLUDE /PRINT = PRMETER /CRITERI = LPH(.05) /DESIGN = sex age interest Pb distcat. When we run this analysis, we violate the assumption of the residuals being independent (i.e., uncorrelated) which would yield erroneous standard errors. 3. We could then run a separate regression for each school. To do this, we first split the data set by school. To do this, you could use the menu or the following commands: SORT CSES Y school. SPLIT FILE LYERED Y school. 4

5 4. Then we run a series of simple linear regressions for each individual school saving the parameter estimates to a new SPSS file called regout. REGRESSION /MISSING LISTWISE /STTISTICS COEFF /CRITERI=PIN(.05) POUT(.10) /NOORIGIN /DEPENDENT IQ /METHOD=ENTER sex age MI interest Hb Pb /OUTFILE=COV('c:\My Downloads \regout.sav'). You can open the regout.sav file using the menus: 5. fter examining the parameter estimates of the previous regressions close the regout.sav file and open the exerc1.sav data set again (if you closed it): 6. We could estimate the variability of IQ between schools and within schools with the following command file (after removing the split file if it is still on): MIXED IQ Y school /CRITERI = CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0, SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED = SSTYPE(3) /RNDOM school /PRINT solutions /METHOD = REML. 7. Similar results can be obtained with the following commands that fit a random intercept model: MIXED IQ Y school /CRITERI = CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0, SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED = SSTYPE(3) /RNDOM intercept SUJECT(school) /PRINT solutions /METHOD = REML. 8. We can then add covariates both at the child and school level: MIXED IQ WITH sex age distcat Y school /CRITERI = CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0, SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED = sex age distcat SSTYPE(3) 5

6 /RNDOM school /PRINT solutions /METHOD = REML. or MIXED IQ WITH sex age distcat Y school /CRITERI = CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0, SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED = sex age distcat SSTYPE(3) /RNDOM intercept SUJECT(school) /PRINT solutions /METHOD = REML. 9. better approach yet would be to fit a random coefficient (intercept and slope) model using restricted maximum likelihood with an unstructured covariance matrix. This can also be done using mixed. MIXED IQ WITH sex age distcat Y school /CRITERI = CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0, SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED = sex age distcat SSTYPE(3) /RNDOM intercept age SUJECT(school) covtype(un) /PRINT solutions /METHOD = REML. 6

7 Exercise 2 This data is based on data collected by Julie Kikkert, a research associate in CLS. This was an experiment with beets. The data set is called Exerc4. lock = Row Width 1 24 in Plot = plant population or 2 18 in 3 20 in 4 22 in 5 18 in 6 20 in 7 24 in 8 22 in Subplot = Harvest Date 1, 2, or 3 - Four row widths (18, 20, 22, 24 in) were randomly assigned to 8 blocks. - Two plant populations (, ) were randomly assigned to each of the 4 plots within the blocks. - From each plot we take one measurement at each of the 3 harvest dates (1, 2, 3). - There are 96 observations. - The response is fresh weight (kg) of roots. You can also consider instead this alternate scenario: - Four trial medications for a lung disease were randomly assigned to be tested at 8 different hospitals. - Patients are categorized in two groups: patients in group are under 50 years old and patients in group are over 50 years old. - Each patient it repeatedly measured at the three stages of the disease: early, middle and advanced stage. - The response is a scaled measure of lung health. 7

8 1. The data set that we will be using is called exerc2. In an initial step let us analyze only the first harvest day. We will select the first harvest date with the following commands: USE LL. COMPUTE filter_$=(hrvest_dte =1). VRILE LEL filter_$ 'HRVEST_DTE =1 (FILTER)'. VLUE LELS filter_$ 0 'Not Selected' 1 'Selected'. FORMT filter_$ (f1.0). FILTER Y filter_$. EXECUTE. In addition, if we ignore the blocks in this experiment we would consider that this data comes from a completely randomized experiment. In such a case we would run the following two-way NOV using GLM or Mixed: UNINOV fw Y ROW_WIDTH POPULTION /METHOD=SSTYPE(3) /INTERCEPT=INCLUDE /CRITERI=LPH(0.05) /DESIGN=ROW_WIDTH POPULTION. MIXED fw Y ROW_WIDTH POPULTION /CRITERI=CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0,SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED=ROW_WIDTH POPULTION SSTYPE(3) /METHOD=REML. Not taking the blocking of this experiment into account does not yield an appropriate test for row_width. 2. Taking the blocks into account can be done using the following commands: UNINOV fw Y ROW_WIDTH POPULTION LOCK /RNDOM=LOCK /METHOD=SSTYPE(3) /INTERCEPT=INCLUDE /CRITERI=LPH(0.05) /DESIGN=ROW_WIDTH POPULTION LOCK*ROW_WIDTH. 8

9 MIXED fw Y ROW_WIDTH POPULTION LOCK /CRITERI=CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0,SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED=ROW_WIDTH POPULTION SSTYPE(3) /METHOD=REML /RNDOM=LOCK COVTYPE(VC). 3. Since the row_width is a significant variable, we would like to find the least square means for each row width and the corresponding standard errors. We can do this with a lsmeans statement in both Proc GLM and Proc Mixed as follows: UNINOV fw Y ROW_WIDTH POPULTION LOCK /RNDOM=LOCK /METHOD=SSTYPE(3) /INTERCEPT=INCLUDE /EMMENS=TLES(ROW_WIDTH) COMPRE DJ(LSD) /CRITERI=LPH(.05) /DESIGN=ROW_WIDTH POPULTION LOCK*ROW_WIDTH. MIXED fw Y ROW_WIDTH POPULTION LOCK /CRITERI=CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0,SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED=ROW_WIDTH POPULTION SSTYPE(3) /METHOD=REML /RNDOM=LOCK COVTYPE(VC) /EMMENS=TLES(ROW_WIDTH) COMPRE DJ(LSD). re the outputs identical? 4. Consider that we want to treat row_width as a continuous variable. We simply can do this by leaving row_width out of the class statement in the model. ut notice the error message you obtain with the following Proc GLM command using row_width in the random statement. UNINOV fw Y POPULTION LOCK WITH ROW_WIDTH /RNDOM=LOCK /METHOD=SSTYPE(3) /INTERCEPT=INCLUDE /CRITERI=LPH(.05) /DESIGN=ROW_WIDTH POPULTION LOCK*ROW_WIDTH. 9

10 MIXED fw Y POPULTION LOCK WITH ROW_WIDTH /CRITERI=CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0,SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED=ROW_WIDTH POPULTION SSTYPE(3) /METHOD=REML /RNDOM=LOCK COVTYPE(VC). 5. The dataset exerc2 is completely balanced. similar data set with some missing observations is called exerc2b. re the outputs from the two following programs still identical? UNINOV fw Y ROW_WIDTH POPULTION LOCK /RNDOM=LOCK /METHOD=SSTYPE(3) /INTERCEPT=INCLUDE /CRITERI=LPH(0.05) /DESIGN=ROW_WIDTH POPULTION LOCK*ROW_WIDTH. MIXED fw Y ROW_WIDTH POPULTION LOCK /CRITERI=CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0,SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED=ROW_WIDTH POPULTION SSTYPE(3) /METHOD=REML /RNDOM=LOCK COVTYPE(VC). 6. To analyze all harvest dates together we need to take one more level of clustering into account. MIXED fw Y ROW_WIDTH POPULTION LOCK PLOT HRVEST_DTE /CRITERI=CIN(95) MXITER(100) MXSTEP(5) SCORING(1) SINGULR( ) HCONVERGE(0,SOLUTE) LCONVERGE(0, SOLUTE) PCONVERGE( , SOLUTE) /FIXED=ROW_WIDTH POPULTION HRVEST_DTE SSTYPE(3) /METHOD=REML /RNDOM=LOCK LOCK *PLOT COVTYPE(VC). 10

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

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

Chapter 12 Practice Test

Chapter 12 Practice Test Chapter 12 Practice Test 1. Which of the following is not one of the conditions that must be satisfied in order to perform inference about the slope of a least-squares regression line? (a) For each value

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

Lesson 14: Modeling Relationships with a Line

Lesson 14: Modeling Relationships with a Line Exploratory Activity: Line of Best Fit Revisited 1. Use the link http://illuminations.nctm.org/activity.aspx?id=4186 to explore how the line of best fit changes depending on your data set. A. Enter any

More information

In addition to reading this assignment, also read Appendices A and B.

In addition to reading this assignment, also read Appendices A and B. 1 Kinematics I Introduction In addition to reading this assignment, also read Appendices A and B. We will be using a motion detector to track the positions of objects with time in several lab exercises

More information

Section I: Multiple Choice Select the best answer for each problem.

Section I: Multiple Choice Select the best answer for each problem. Inference for Linear Regression Review Section I: Multiple Choice Select the best answer for each problem. 1. Which of the following is NOT one of the conditions that must be satisfied in order to perform

More information

Microsoft Windows Software Manual for FITstep Stream Version 4

Microsoft Windows Software Manual for FITstep Stream Version 4 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

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

Combination Analysis Tutorial

Combination Analysis Tutorial Combination Analysis Tutorial 3-1 Combination Analysis Tutorial It is inherent in the Swedge analysis (when the Block Shape = Wedge), that tetrahedral wedges can only be formed by the intersection of 2

More information

by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada

by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada Manual for FISH 4.0 by Robert Gifford and Jorge Aranda University of Victoria, British Columbia, Canada Brief Introduction FISH 4.0 is a microworld exercise designed by University of Victoria professor

More information

ESP 178 Applied Research Methods. 2/26/16 Class Exercise: Quantitative Analysis

ESP 178 Applied Research Methods. 2/26/16 Class Exercise: Quantitative Analysis ESP 178 Applied Research Methods 2/26/16 Class Exercise: Quantitative Analysis Introduction: In summer 2006, my student Ted Buehler and I conducted a survey of residents in Davis and five other cities.

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

DATA SCIENCE SUMMER UNI VIENNA

DATA SCIENCE SUMMER UNI VIENNA Prerequisites - You have installed Tableau Desktop on your computer. Available here: http://www.tableau.com/academic/students - You have downloaded the data (athlete_events.csv) available here: https://www.kaggle.com/heesoo37/120-years-of-olympic-historyathletes-and-results

More information

GLMM standardisation of the commercial abalone CPUE for Zones A-D over the period

GLMM standardisation of the commercial abalone CPUE for Zones A-D over the period GLMM standardisation of the commercial abalone for Zones A-D over the period 1980 2015 Anabela Brandão and Doug S. Butterworth Marine Resource Assessment & Management Group (MARAM) Department of Mathematics

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

Boyle s Law: Pressure-Volume Relationship in Gases

Boyle s Law: Pressure-Volume Relationship in Gases Boyle s Law: Pressure-Volume Relationship in Gases The primary objective of this experiment is to determine the relationship between the pressure and volume of a confined gas. The gas we will use is air,

More information

MTB 02 Intermediate Minitab

MTB 02 Intermediate Minitab MTB 02 Intermediate Minitab This module will cover: Advanced graphing Changing data types Value Order Making similar graphs Zooming worksheet Brushing Multi-graphs: By variables Interactively upgrading

More information

Managing Timecard Exceptions

Managing Timecard Exceptions Managing Timecard Exceptions 1. General Exception Information Exceptions are flags in timecards, reports and Genies that identify when information on the timecard deviates from the employee s schedule.

More information

Complete Wristband System Tutorial PITCHING

Complete Wristband System Tutorial PITCHING Complete Wristband System Tutorial PITCHING Type Of Wristband Brands Cutter Nike Under Armour Neumann Specifications: 5 inch by 3 inch window Youth - Durable 2.25 x 4.50 Vinyl Windows X100 Youth X200 Adult

More information

Mac Software Manual for FITstep Pro Version 2

Mac Software Manual for FITstep Pro Version 2 Thank you for purchasing this product from Gopher. If you are not satisfied with any Gopher purchase for any reason at any time, contact us and we will replace the product, credit your account, or refund

More information

Lab 13: Hydrostatic Force Dam It

Lab 13: Hydrostatic Force Dam It Activity Overview: Students will use pressure probes to model the hydrostatic force on a dam and calculate the total force exerted on it. Materials TI-Nspire CAS handheld Vernier Gas Pressure Sensor 1.5

More information

McKnight Hockey Association

McKnight Hockey Association McKnight Hockey Association Electronic Evaluation Tool Manual 2013-2014 Table of Contents Introduction...3 Evaluation Tool...3 Login to OneClickIce...3 Evaluations...4 PROCESS...4 Evaluation Procedure...5

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

The ICC Duckworth-Lewis-Stern calculator. DLS Edition 2016

The ICC Duckworth-Lewis-Stern calculator. DLS Edition 2016 The ICC Duckworth-Lewis-Stern calculator DLS Edition 2016 (DLS2-2016) Installation and operating instructions Queries about program operation should be sent to: Steven.Stern@qut.edu.au 2016 International

More information

[CROSS COUNTRY SCORING]

[CROSS COUNTRY SCORING] 2018 The Race Director Guide [CROSS COUNTRY SCORING] This document describes the setup and scoring processes employed when scoring a cross country race with Race Director. Contents Intro... 3 Division

More information

USA Jump Rope Tournament Software User Guide 2014 Edition

USA Jump Rope Tournament Software User Guide 2014 Edition USA Jump Rope Tournament Software User Guide www.usajumprope.org Table of Contents Contents System Requirements... 3 System Conventions... 4 Phase 1 Tournament Pre registration Preparation... 5 Name Your

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

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

3. Select a colour and then use the Rectangle drawing tool to draw a rectangle like the one below.

3. Select a colour and then use the Rectangle drawing tool to draw a rectangle like the one below. Pong Game Creating the Bat 1. Delete the cat sprite. 2. Click the Paint new sprite button. 3. Select a colour and then use the Rectangle drawing tool to draw a rectangle like the one below. 4. Click the

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

The ICC Duckworth-Lewis Calculator. Professional Edition 2008

The ICC Duckworth-Lewis Calculator. Professional Edition 2008 The ICC Duckworth-Lewis Calculator Professional Edition 2008 (Version 1.1) Installation and operating instructions Any queries about operating the program should be sent to steven.stern@anu.edu.au 2008

More information

CENTER PIVOT EVALUATION AND DESIGN

CENTER PIVOT EVALUATION AND DESIGN CENTER PIVOT EVALUATION AND DESIGN Dale F. Heermann Agricultural Engineer USDA-ARS 2150 Centre Avenue, Building D, Suite 320 Fort Collins, CO 80526 Voice -970-492-7410 Fax - 970-492-7408 Email - dale.heermann@ars.usda.gov

More information

Online League Management lta.tournamentsoftware.com. User Manual. Further support is available online at

Online League Management lta.tournamentsoftware.com. User Manual. Further support is available online at Online League Management lta.tournamentsoftware.com User Manual Further support is available online at www.lta.org.uk/leagueplanner Contents Welcome... 3 Using this guide... 3 Further support?... 3 Publishing

More information

UNITY 2 TM. Air Server Series 2 Operators Manual. Version 1.0. February 2008

UNITY 2 TM. Air Server Series 2 Operators Manual. Version 1.0. February 2008 UNITY 2 TM Air Server Series 2 Operators Manual Version 1.0 February 2008 1. Introduction to the Air Server Accessory for UNITY 2...2 1.1. Summary of Operation...2 2. Developing a UNITY 2-Air Server method

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

Name Student Activity

Name Student Activity Open the TI-Nspire document Boyles_Law.tns. In this activity, you will use a Gas Pressure Sensor to measure the pressure of an air sample inside a syringe. Using graphs, you will apply your results to

More information

Fun with Gas Laws. Prepared by Vance O. Kennedy and Ross S. Nord, Eastern Michigan University PURPOSE

Fun with Gas Laws. Prepared by Vance O. Kennedy and Ross S. Nord, Eastern Michigan University PURPOSE Experiment 2 Fun with Gas Laws Prepared by Vance O. Kennedy and Ross S. Nord, Eastern Michigan University PURPOSE The purpose of this laboratory experience is to explore the gas law relationships between

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

Taking Your Class for a Walk, Randomly

Taking Your Class for a Walk, Randomly Taking Your Class for a Walk, Randomly Daniel Kaplan Macalester College Oct. 27, 2009 Overview of the Activity You are going to turn your students into an ensemble of random walkers. They will start at

More information

Lab 4: Root Locus Based Control Design

Lab 4: Root Locus Based Control Design Lab 4: Root Locus Based Control Design References: Franklin, Powell and Emami-Naeini. Feedback Control of Dynamic Systems, 3 rd ed. Addison-Wesley, Massachusetts: 1994. Ogata, Katsuhiko. Modern Control

More information

[CROSS COUNTRY SCORING]

[CROSS COUNTRY SCORING] 2015 The Race Director Guide [CROSS COUNTRY SCORING] This document describes the setup and scoring processes employed when scoring a cross country race with Race Director. Contents Intro... 3 Division

More information

The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD

The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD The Simple Linear Regression Model ECONOMETRICS (ECON 360) BEN VAN KAMMEN, PHD Outline Definition. Deriving the Estimates. Properties of the Estimates. Units of Measurement and Functional Form. Expected

More information

Objectives. Materials

Objectives. Materials . Objectives Activity 1 To investigate the relationship between temperature and the number of cricket chirps To find the x value of a function, given the y value To find the y value of a function, given

More information

WMS 8.4 Tutorial Hydraulics and Floodplain Modeling HY-8 Modeling Wizard Learn how to model a culvert using HY-8 and WMS

WMS 8.4 Tutorial Hydraulics and Floodplain Modeling HY-8 Modeling Wizard Learn how to model a culvert using HY-8 and WMS v. 8.4 WMS 8.4 Tutorial Hydraulics and Floodplain Modeling HY-8 Modeling Wizard Learn how to model a culvert using HY-8 and WMS Objectives Define a conceptual schematic of the roadway, invert, and downstream

More information

2017 Census Reporting To access the SOI s Census Reporting web site go to:

2017 Census Reporting To access the SOI s Census Reporting web site go to: To access the SOI s Census Reporting web site go to: https://census.specialolympics.org/login You will need to enter your username (valid email address) and password. If you have not received your password

More information

SWIM MEET MANAGER 5.0 NEW FEATURES

SWIM MEET MANAGER 5.0 NEW FEATURES SWIM MEET MANAGER 5.0 NEW FEATURES Updated January 24, 2014 1 ABOUT SWIMMING MEET MANAGER 5.0 MEET MANAGER 5.0 for ming (SWMM) is HY-TEK's 6th generation of Meet Management software. Provides the very

More information

Access will be via the same Player Registration tab via the Player Registrations Officer role section.

Access will be via the same Player Registration tab via the Player Registrations Officer role section. The process for registering a player via the Whole Game System Portal requires input from the club, player, league, and in some instances the County FA. Once the league has confirmed the set-up process

More information

How to Setup and Score a Tournament. May 2018

How to Setup and Score a Tournament. May 2018 How to Setup and Score a Tournament May 2018 What s new for 2018 As the rules change, the programmers must adjust the scoring program as well. Feedback from scorers also assist in providing ways to make

More information

[MYLAPS INTEGRATION]

[MYLAPS INTEGRATION] 2018 The Race Director MyLaps Integration Manual [MYLAPS INTEGRATION] This document explains how to manage the results data between your MyLaps readers and Race Director using manual file transfers. Contents

More information

Lab 5: Descriptive Statistics

Lab 5: Descriptive Statistics Page 1 Technical Math II Lab 5: Descriptive Stats Lab 5: Descriptive Statistics Purpose: To gain experience in the descriptive statistical analysis of a large (173 scores) data set. You should do most

More information

Guidelines for Applying Multilevel Modeling to the NSCAW Data

Guidelines for Applying Multilevel Modeling to the NSCAW Data Guidelines for Applying Multilevel Modeling to the NSCAW Data by Sharon Christ, Paul Biemer and Christopher Wiesen Odum Institute for Research in Social Science May 2007 Summary. This document is intended

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

TEAM MANAGER LITE ENTRY INSTRUCTIONS

TEAM MANAGER LITE ENTRY INSTRUCTIONS TEAM MANAGER LITE ENTRY INSTRUCTIONS SLSWA would like to help make the entries process as simple as possible so to assist you all we have created a step by step guide that outlines all of the key details

More information

Working with Marker Maps Tutorial

Working with Marker Maps Tutorial Working with Marker Maps Tutorial Release 8.2.0 Golden Helix, Inc. September 25, 2014 Contents 1. Overview 2 2. Create Marker Map from Spreadsheet 4 3. Apply Marker Map to Spreadsheet 7 4. Add Fields

More information

GN21 Frequently Asked Questions For Golfers

GN21 Frequently Asked Questions For Golfers Posting Scores (My Score Center) 1. Click on the Enter Score button to enter an adjusted gross score or click on the Enter Hole-By-Hole Score button to enter your score hole-by-hole. NOTE: to use the Game

More information

Using the GHIN Handicap Allocation Utility with GHP Golfer

Using the GHIN Handicap Allocation Utility with GHP Golfer Using the GHIN Handicap Allocation Utility with GHP Golfer In order to gather Hole by Hole (HBH) scores to be used with the GHIN Handicap Allocation Utility, the golf club must have individual tee information

More information

Allocation of referees, hours and pistes User manual of Engarde - August, 2013

Allocation of referees, hours and pistes User manual of Engarde - August, 2013 Allocation of referees, hours and pistes User manual of Engarde - August, 2013 Introduction 1. Launching the advanced allocation of referees 1.1. Poules 1.2. Tableaux 2. The advanced allocation window

More information

16. Studio ScaleChem Calculations

16. Studio ScaleChem Calculations 16. Studio ScaleChem Calculations Calculations Overview Calculations: Adding a new brine sample Studio ScaleChem can be used to calculate scaling at one or more user specified temperatures and pressures.

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

Transpiration. DataQuest OBJECTIVES MATERIALS

Transpiration. DataQuest OBJECTIVES MATERIALS Transpiration DataQuest 13 Water is transported in plants, from the roots to the leaves, following a decreasing water potential gradient. Transpiration, or loss of water from the leaves, helps to create

More information

USA Jump Rope Regional Tournament Registration User Guide 2014 Edition

USA Jump Rope Regional Tournament Registration User Guide 2014 Edition USA Jump Rope Regional Tournament Registration User Guide www.usajumprope.org Table of Contents Contents System Requirements... 3 Instructions... 4 Page 2 of 2 System Requirements The Team Registration

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

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

The Gas Laws: Boyle's Law and Charles Law

The Gas Laws: Boyle's Law and Charles Law Exercise 6 Page 1 Illinois Central College CHEMISTRY 130 Name The Gas Laws: Boyle's Law and Charles Law Objective The simple laws governing the properties of gases can be readily demonstrated experimentally.

More information

SIDRA INTERSECTION 6.1 UPDATE HISTORY

SIDRA INTERSECTION 6.1 UPDATE HISTORY Akcelik & Associates Pty Ltd PO Box 1075G, Greythorn, Vic 3104 AUSTRALIA ABN 79 088 889 687 For all technical support, sales support and general enquiries: support.sidrasolutions.com SIDRA INTERSECTION

More information

Boyle s Law: Pressure-Volume Relationship in Gases. PRELAB QUESTIONS (Answer on your own notebook paper)

Boyle s Law: Pressure-Volume Relationship in Gases. PRELAB QUESTIONS (Answer on your own notebook paper) Boyle s Law: Pressure-Volume Relationship in Gases Experiment 18 GRADE LEVEL INDICATORS Construct, interpret and apply physical and conceptual models that represent or explain systems, objects, events

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

CS Problem Solving and Object-Oriented Programming Lab 2 - Methods, Variables and Functions in Alice Due: September 23/24

CS Problem Solving and Object-Oriented Programming Lab 2 - Methods, Variables and Functions in Alice Due: September 23/24 CS 101 - Problem Solving and Object-Oriented Programming Lab 2 - Methods, Variables and Functions in Alice Due: September 23/24 Pre-lab Preparation Before coming to lab, you are expected to have: Read

More information

SmartMan Code User Manual Section 5.0 Results

SmartMan Code User Manual Section 5.0 Results SmartMan Code User Manual Section 5.0 Results For SmartMan Code, Megacode and Megacode Low Volume Table of Contents SmartMan Code User Manual Section 5.0 Results... 1 SMARTMAN CODE MEGACODE MEGACODE LOW

More information

Lab #12:Boyle s Law, Dec. 20, 2016 Pressure-Volume Relationship in Gases

Lab #12:Boyle s Law, Dec. 20, 2016 Pressure-Volume Relationship in Gases Chemistry Unit 6:States of Matter & Basic Gas Laws Name Lab Partner Lab #12:Boyle s Law, Dec. 20, 2016 Pressure-Volume Relationship in Gases Purpose: The primary objective of this experiment is to determine

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

Lab 3. The Respiratory System (designed by Heather E. M. Liwanag with T.M. Williams)

Lab 3. The Respiratory System (designed by Heather E. M. Liwanag with T.M. Williams) Name Lab Partners Lab 3. The Respiratory System (designed by Heather E. M. Liwanag with T.M. Williams) Part 1. Lung Volumes and Capacities Objectives 1. Obtain graphical representation of lung capacities

More information

Lesson 20: Estimating a Population Proportion

Lesson 20: Estimating a Population Proportion Student Outcome Students use data from a random sample to estimate a population proportion. Lesson tes In this lesson, students continue to work with random samples and the distribution of the sample proportions.

More information

Diameter in cm. Bubble Number. Bubble Number Diameter in cm

Diameter in cm. Bubble Number. Bubble Number Diameter in cm Bubble lab Data Sheet Blow bubbles and measure the diameter to the nearest whole centimeter. Record in the tables below. Try to blow different sized bubbles. Name: Bubble Number Diameter in cm Bubble Number

More information

Overview 1. Handicap Overview 12. Types of Handicapping...12 The Handicap Cycle...12 Calculating handicaps...13 Handicap Nomenclature...

Overview 1. Handicap Overview 12. Types of Handicapping...12 The Handicap Cycle...12 Calculating handicaps...13 Handicap Nomenclature... Handicap System Overview 1 The Handicap System...1 Creating a Roster...1 Entering Courses...2 Entering Golfers...3 Entering Scores...4 Viewing Scores...7 Combing two nine holes scores to form an 18 hole

More information

Novel empirical correlations for estimation of bubble point pressure, saturated viscosity and gas solubility of crude oils

Novel empirical correlations for estimation of bubble point pressure, saturated viscosity and gas solubility of crude oils 86 Pet.Sci.(29)6:86-9 DOI 1.17/s12182-9-16-x Novel empirical correlations for estimation of bubble point pressure, saturated viscosity and gas solubility of crude oils Ehsan Khamehchi 1, Fariborz Rashidi

More information

Sample Final Exam MAT 128/SOC 251, Spring 2018

Sample Final Exam MAT 128/SOC 251, Spring 2018 Sample Final Exam MAT 128/SOC 251, Spring 2018 Name: Each question is worth 10 points. You are allowed one 8 1/2 x 11 sheet of paper with hand-written notes on both sides. 1. The CSV file citieshistpop.csv

More information

Fastball Baseball Manager 2.5 for Joomla 2.5x

Fastball Baseball Manager 2.5 for Joomla 2.5x Fastball Baseball Manager 2.5 for Joomla 2.5x Contents Requirements... 1 IMPORTANT NOTES ON UPGRADING... 1 Important Notes on Upgrading from Fastball 1.7... 1 Important Notes on Migrating from Joomla 1.5x

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

GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT

GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT v. 10.0 GMS 10.0 Tutorial SEAWAT Viscosity and Pressure Effects Examine the Effects of Pressure on Fluid Density with SEAWAT Objectives Learn how to simulate the effects of viscosity and how pressure impacts

More information

Lab 2: Probability. Hot Hands. Template for lab report. Saving your code

Lab 2: Probability. Hot Hands. Template for lab report. Saving your code Lab 2: Probability Hot Hands Basketball players who make several baskets in succession are described as having a hot hand. Fans and players have long believed in the hot hand phenomenon, which refutes

More information

Oracle ebusiness CCTM Supplier: Rate Card

Oracle ebusiness CCTM Supplier: Rate Card S1.2 CREATE A RATE CARD: INTRODUCTION... 1 S1.2.1 Create a Rate Card Online... 2 S1.2.2 Download a Rate Card Template... 16 S1.2.3 Rate Card Template Field Descriptions... 20 S1.2.4 Upload a Rate Card

More information

Announcements. Lecture 19: Inference for SLR & Transformations. Online quiz 7 - commonly missed questions

Announcements. Lecture 19: Inference for SLR & Transformations. Online quiz 7 - commonly missed questions Announcements Announcements Lecture 19: Inference for SLR & Statistics 101 Mine Çetinkaya-Rundel April 3, 2012 HW 7 due Thursday. Correlation guessing game - ends on April 12 at noon. Winner will be announced

More information

(c) The hospital decided to collect the data from the first 50 patients admitted on July 4, 2010.

(c) The hospital decided to collect the data from the first 50 patients admitted on July 4, 2010. Math 155, Test 1, 18 October 2011 Name: Instructions. This is a closed-book test. You may use a calculator (but not a cell phone). Make sure all cell-phones are put away and that the ringer is off. Show

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

INSTRUCTIONS FOR USING HMS 2016 Scoring (v1)

INSTRUCTIONS FOR USING HMS 2016 Scoring (v1) INSTRUCTIONS FOR USING HMS 2016 Scoring (v1) HMS 2016 Scoring (v1).xlsm is an Excel Workbook saved as a Read Only file. Intended for scoring multi-heat events run under HMS 2016, it can also be used for

More information

Experiment P18: Buoyant Force (Force Sensor)

Experiment P18: Buoyant Force (Force Sensor) PASCO scientific Physics Lab Manual: P18-1 Experiment P18: (Force Sensor) Concept Time SW Interface Macintosh file Windows file Newton's Laws 45 m 300/500/700 P18 P18_BUOY.SWS EQUIPMENT NEEDED CONSUMABLES

More information

Announcements. Unit 7: Multiple Linear Regression Lecture 3: Case Study. From last lab. Predicting income

Announcements. Unit 7: Multiple Linear Regression Lecture 3: Case Study. From last lab. Predicting income Announcements Announcements Unit 7: Multiple Linear Regression Lecture 3: Case Study Statistics 101 Mine Çetinkaya-Rundel April 18, 2013 OH: Sunday: Virtual OH, 3-4pm - you ll receive an email invitation

More information

GEOG2113: Geographical Information Systems Week 7 Mapping Hazards & Threats Practical Task

GEOG2113: Geographical Information Systems Week 7 Mapping Hazards & Threats Practical Task GEOG2113: Geographical Information Systems Week 7 Mapping Hazards & Threats Practical Task Theme: Mapping a zombie outbreak! Key datasets & sources: ITN Network (road network) Location of Defence Research

More information

How-to Pull & Schedule Club Reports

How-to Pull & Schedule Club Reports This guide will give you step-by-step instructions on how to pull numerous types of club reports in the USGA s GHIN Handicap System. TABLE OF CONTENTS How-to Pull a Report 2 How-to Schedule (Automatically

More information

TRAP MOM FUN SHOOT 2011

TRAP MOM FUN SHOOT 2011 TRAP MOM FUN SHOOT 2011 Program Manual 2011 - Trap Mom Software - CYSSA Fun Shoot - Build 8 REQUIRED TO RUN THIS PROGRAM APPLE USERS: 1. OS X Mac Computer (Intel Preferred) 2. Printer (Laser recommended)

More information

Club s Homepage Welcome Club Calendar Logout Add a Request Play Date Requested Time Hole Selection # of Tee Times Break Link

Club s Homepage Welcome Club Calendar Logout Add a Request Play Date Requested Time Hole Selection # of Tee Times Break Link The first time the golfer logs into the Internet Golf Reservation System, the member # is the club assigned golfer number plus 1 for male and 2 for female, the default password is 1234. The golfer will

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

Quick Start Guide. For Gold and Silver Editions

Quick Start Guide. For Gold and Silver Editions Quick Start Guide For Gold and Silver Editions Table of Content Introduction... 3 Prerequisites... 3 Installation and Setup... 4 Download and Install QQEvolution 2... 4 Create Users... 8 Create Agent/CSR/Producer...

More information

BVIS Beach Volleyball Information System

BVIS Beach Volleyball Information System BVIS Beach Volleyball Information System Developments in computer science over the past few years, together with technological innovation, has in turn stimulated the development of tailored software solutions

More information

GolfLogix: Golf GPS. User Guide for: BlackBerry Curve. Version 1.0. Software Release , 8330, 8350i, 8800, 8820, 8830, 8900

GolfLogix: Golf GPS. User Guide for: BlackBerry Curve. Version 1.0. Software Release , 8330, 8350i, 8800, 8820, 8830, 8900 GolfLogix: Golf GPS User Guide for: BlackBerry Curve 8310, 8330, 8350i, 8800, 8820, 8830, 8900 Version 1.0 Software Release 1.0 1 Table of Contents Topic Page Topic Page Getting Started Statistics Downloading

More information

Ameren Oracle ebusiness CCTM Supplier

Ameren Oracle ebusiness CCTM Supplier CCTM PROCESS... 1 S1.1 CREATE A RATE CARD: INTRODUCTION... 2 S1.1.1 Create a Rate Card Online... 3 S1.1.2 Download a Rate Card Template... 29 S1.1.3 Rate Card Template Field Descriptions... 40 S1.1.4 Upload

More information

Nucula. Nucula User Guide

Nucula. Nucula User Guide Nucula Nucula User Guide Table of Contents 1. Basic Navigation 2. My Account 3. Certifications 4. Work Record 5. Manual Work Record 6. Umpire List / Address Book 7. Event List 8. Browser Tabs and Wndows

More information

Running head: DATA ANALYSIS AND INTERPRETATION 1

Running head: DATA ANALYSIS AND INTERPRETATION 1 Running head: DATA ANALYSIS AND INTERPRETATION 1 Data Analysis and Interpretation Final Project Vernon Tilly Jr. University of Central Oklahoma DATA ANALYSIS AND INTERPRETATION 2 Owners of the various

More information