CHAPTER 8 T Tests. A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test

Size: px
Start display at page:

Download "CHAPTER 8 T Tests. A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test"

Transcription

1 CHAPTER 8 T Tests A number of t tests are available, including: The One-Sample T Test The Paired-Samples Test The Independent-Samples T Test 8.1. One-Sample T Test The One-Sample T Test procedure: Tests the difference between a sample mean and a known or hypothesized value Allows you to specify the level of confidence for the difference Produces a table of descriptive statistics for each test variable A Production-Line Problem A manufacturer of high-performance automobiles produces disc brakes that must measure 322 millimeters in diameter. Quality control randomly draws 16 discs made by each of eight production machines and measures their diameters. This example uses the file brakes.sav. See the topic Sample Files for more information. Use One Sample T Test to determine whether or not the mean diameters of the brakes in each sample significantly differ from 322 millimeters. A nominal variable, Machine Number, identifies the production machine used to make the disc brake. Because the data from each machine must be tested as a separate sample, the file must first be split into groups bymachine Number. 83

2 Treating Each Machine as a Separate Sample To split the file, from the Data Editor menus choose: Data > Split File... Figure 101 Split File dialog box 1. Select Compare groups. 2. Select Machine Number. 3. Click OK Testing Sample Means against a Known Value To begin the one-sample t test, from the menus choose: Analyze > Compare Means > One-Sample T Test... Figure 102 One-Sample T Test dialog box 1. Select Disc Brake Diameter (mm) as the test variable. 2. Type 322 as the test value. 3. Click Options. 84

3 Figure 103 One-Sample T Test Options dialog box 4. Type 90 as the confidence interval percentage. 5. Click Continue. 6. Click OK in the One-Sample T Test dialog box Descriptive Statistics Figure 104 Descriptive statistics, by Machine Number The Descriptives table displays the sample size, mean, standard deviation, and standard error for each of the eight samples. The sample means disperse around the 322mm standard by what appears to be a small amount of variation. 85

4 Test Results Figure 105 Test statistics, by Machine Number The test statistic table shows the results of the one-sample t test. The t column displays the observed t statistic for each sample, calculated as the ratio of the mean difference divided by the standard error of the sample mean. The df column displays degrees of freedom. In this case, this equals the number of cases in each group minus 1. The column labeled Sig. (2-tailed) displays a probability from the t distribution with 15 degrees of freedom. The value listed is the probability of obtaining an absolute value greater than or equal to the observed t statistic, if the difference between the sample mean and the test value is purely random. The Mean Difference is obtained by subtracting the test value (322 in this example) from each sample mean. The 90% Confidence Interval of the Difference provides an estimate of the boundaries between which the true mean difference lies in 90% of all possible random samples of 16 disc brakes produced by this machine. 86

5 Since their confidence intervals lie entirely above 0.0, you can safely say that machines 2, 5 and 7 are producing discs that are significantly wider than 322mm on the average. Similarly, because its confidence interval lies entirely below 0.0, machine 4 is producing discs that are not wide enough Summary The one-sample t test can be used whenever sample means must be compared to a known test value. As with all t tests, the one-sample t test assumes that the data be reasonably normally distributed, especially with respect to skewness. Extreme or outlying values should be carefully checked; boxplots are very handy for this Paired-Samples T Test One of the most common experimental designs is the "pre-post" design. A study of this type often consists of two measurements taken on the same subject, one before and one after the introduction of a treatment or a stimulus. The basic idea is simple. If the treatment had no effect, the average difference between the measurements is equal to 0 and the null hypothesis holds. On the other hand, if the treatment did have an effect (intended or unintended!), the average difference is not 0 and the null hypothesis is rejected. The Paired-Samples T Test procedure is used to test the hypothesis of no difference between two variables. The data may consist of two measurements taken on the same subject or one measurement taken on a matched pair of subjects. Additionally, the procedure produces: Descriptive statistics for each test variable The Pearson correlation between each pair and its significance 87

6 A confidence interval for the average difference (95% or a value you specify) Does Diet Make a Difference? A physician is evaluating a new diet for her patients with a family history of heart disease. To test the effectiveness of this diet, 16 patients are placed on the diet for 6 months. Their weights and triglyceride levels are measured before and after the study, and the physician wants to know if either set of measurements has changed. This example uses the file dietstudy.sav. See the topic Sample Files for more information. Use Paired-Samples T Test to determine whether there is a statistically significant difference between the pre- and postdiet weights and triglyceride levels of these patients Running the Analysis To begin the analysis, from the menus choose: Analyze > Compare Means > Paired-Samples T Test... Figure 106 Paired-Samples T Test dialog box 1. Select Triglyceride and Final Triglyceride as the first set of paired variables. 2. Select Weight and Final Weight as the second pair. 3. Click OK. 88

7 Descriptive Statistics The Descriptives table displays the mean, sample size, standard deviation, and standard error for both groups. Across all 16 subjects, triglyceride levels dropped between 14 and 15 points on average after 6 months of the new diet. The subjects clearly lost weight over the course of the study; on average, about 8 pounds. The standard deviations for pre- and post-diet measurements reveal that subjects were more variable with respect to weight than to triglyceride levels Pearson Correlations At , the correlation between the baseline and six-month triglyceride levels is not statistically significant. Levels were lower overall, but the change was inconsistent across subjects. Several lowered their levels, but several others either did not change or increased their levels. On the other hand, the Pearson correlation between the baseline and six-month weight measurements is 0.996, almost a perfect correlation. Unlike the triglyceride levels, all subjects lost weight and did so quite consistently Paired Test Table Figure 107 Paired-samples t table 89

8 The Mean column in the paired-samples t test table displays the average difference between triglyceride and weight measurements before the diet and six months into the diet. The Std. Deviation column displays the standard deviation of the average difference score. The Std. Error Mean column provides an index of the variability one can expect in repeated random samples of 16 patients similar to the ones in this study. The 95% Confidence Interval of the Difference provides an estimate of the boundaries between which the true mean difference lies in 95% of all possible random samples of 16 patients similar to the ones participating in this study. The t statistic is obtained by dividing the mean difference by its standard error. The Sig. (2-tailed) column displays the probability of obtaining a t statistic whose absolute value is equal to or greater than the obtained t statistic. Since the significance value for change in weight is less than 0.05, you can conclude that the average loss of 8.06 pounds per patient is not due to chance variation, and can be attributed to the diet. However, the significance value greater than 0.10 for change in triglyceride level shows the diet did not significantly reduce their triglyceride levels Summary The paired-samples t test is appropriate whenever two related sample means are to be compared. The difference scores are assumed to follow a reasonably normal distribution, especially with respect to skewness. Before running the t test, you can assess the distribution of difference scores by examining the histogram of a computed difference variable. 90

9 Test variables with extreme or outlying values should be carefully checked; boxplots can be used for this. If you compute the difference between the paired variables, you can alternatively use the One-Sample T Test procedure Independent-Samples T Test The Independent-Samples T Test procedure tests the significance of the difference between two sample means. Also displayed are: Descriptive statistics for each test variable A test of variance equality A confidence interval for the difference between the two variables (95% or a value you specify) Determining the Groups in an Independent-Samples T Test Usually, the groups in a two-sample t test are fixed by design, and the grouping variable has one value for each group. However, there are times when assignment to one of two groups can be made on the basis of an existing scale variable. For example, consider math and verbal test scores. You would like to perform a t test on verbal scores, using the students above and below a given cutoff score on the math as the independent groups. With the Independent-Samples T Test procedure, all you need to provide is the cut point. The program divides the sample in two at the cut point and performs the t test. The virtue of this method is that the cut point can easily be changed without the need to re-create the grouping variable by hand every time Testing Two Independent Sample Means An analyst at a department store wants to evaluate a recent credit card promotion. To this end, 500 cardholders were randomly selected. Half 91

10 received an ad promoting a reduced interest rate on purchases made over the next three months, and half received a standard seasonal ad. This example uses the file creditpromo.sav. See the topic Sample Files for more information. Use Independent-Samples T Test to compare the spending of the two groups Running the Analysis To begin the analysis, from the menus choose: Analyze > Compare Means > Independent-Samples T Test... Figure 108 Independent-Samples T Test dialog box 1. Select $ spent during promotional period as the test variable. 2. Select Type of mail insert received as the grouping variable. 3. Click Define Groups. Figure 109 Define Groups dialog box 4. Type 0 as the Group 1 value and 1 as the Group 2 value. 5. Click Continue. 6. Click OK in the Independent-Samples T Test dialog box. 92

11 Group Statistics Table Figure 110 Descriptive statistics The Descriptives table displays the sample size, mean, standard deviation, and standard error for both groups. On average, customers who received the interest-rate promotion charged about $70 more than the comparison group, and they vary a little more around their average Independent Samples Test Table Figure 111 Test for equality of group variances The procedure produces two tests of the difference between the two groups. One test assumes that the variances of the two groups are equal. The Levene statistic tests this assumption. In this example, the significance value of the statistic is Because this value is greater than 0.10, you can assume that the groups have equal variances and ignore the second test. Using the pivoting trays, you can change the default layout of the table so that only the "equal variances" test is displayed Pivoting the Test Table 1. Double-click the test table to activate it. 2. From the Viewer menus choose: Pivot > Pivoting Trays 93

12 Figure 112 Pivot window 3. Move Assumptions from the row to the layer. 4. Close the pivoting trays window The Pivoted Test Table Figure 113 t Test statistics, equal variances assumed With the test table pivoted so that assumptions are in the layer, the Equal variances assumed panel is displayed. The t column displays the observed t statistic for each sample, calculated as the ratio of the difference between sample means divided by the standard error of the difference. The df column displays degrees of freedom. For the independent samples t test, this equals the total number of cases in both samples minus 2. The column labeled Sig. (2-tailed) displays a probability from the t distribution with 498 degrees of freedom. The value listed is 94

13 the probability of obtaining an absolute value greater than or equal to the observed t statistic, if the difference between the sample means is purely random. The Mean Difference is obtained by subtracting the sample mean for group 2 (the New Promotiongroup) from the sample mean for group 1. The 95% Confidence Interval of the Difference provides an estimate of the boundaries between which the true mean difference lies in 95% of all possible random samples of 500 cardholders. Since the significance value of the test is less than 0.05, you can safely conclude that the average of dollars more spent by cardholders receiving the reduced interest rate is not due to chance alone. The store will now consider extending the offer to all credit customers Using a Cut Point to Define the Samples Churn propensity scores are applied to accounts at a cellular phone company. Ranging from 0 to 100, an account scoring 50 or above may be looking to change providers. A manager with 50 customers above the threshold randomly samples 200 below it, wanting to compare them on average minutes used per month. This example uses the file cellular.sav. See the topic Sample Files for more information. Use Independent-Samples T Test to determine whether these groups have different levels of cell-phone usage Running the Analysis To begin the analysis, from the menus choose: Analyze > Compare Means > Independent-Samples T Test... 95

14 Figure 114 Independent-Samples T Test dialog box 1. Select Avg monthly minutes as the test variable. 2. Select Propensity to leave as the grouping variable. 3. Click Define Groups. Figure 115 Define Groups dialog box 4. Select Cut point. 5. Type 50 as the cut point value. 6. Click Continue. 7. Click OK in the Independent-Samples T Test dialog box Group Statistics by Cut Point Figure 116 Descriptive statistics, cellular-phone example The Descriptives table shows that customers with propensity scores of 50 or more are using their cell phones about 78 minutes more per month on the average than customers with scores below

15 Test Table by Cut Point Figure 117 Test for equality of group variances The significance value of the Levene statistic is greater than 0.10, so you can assume that the groups have equal variances and ignore the second test. Using the pivoting trays, change the default layout of the table so that only the "equal variances" test is displayed Pivoting the Test Table 1. Double-click the test table to activate it. 2. From the Viewer menus choose: Pivot > Pivoting Trays Figure 118 Pivot window 3. Move Assumptions from the row to the layer. 4. Close the pivoting trays window Pivoted Test Table by Cut Point Now just the Equal variances assumed panel is displayed. 97

16 The t statistic provides strong evidence of a difference in monthly minutes between accounts more and less likely to change cellular providers. The confidence interval suggests that in repeated samplings, the difference is unlikely to be much lower than 67 minutes. The company will look into ways to retain these accounts Summary The independent-samples t test is appropriate whenever two means drawn from independent samples are to be compared. The variable used to form the groups may already exist; however, a cut point on a continuous variable can be provided to dynamically create the groups during the analysis. As with all t tests, the independent-samples t test assumes that each sample mean comes from a population that is reasonably normally distributed, especially with respect to skewness. Test variables with extreme or outlying values should be carefully checked; boxplots can be used for this. If your grouping variable has more than two groups, try the One-Way ANOVA procedure. 98

17 CHAPTER 9 One-Way analysis of variance You can use the One-Way ANOVA procedure to test the hypothesis that the means of two or more groups are not significantly different. One-Way ANOVA also offers: Group-level statistics for the dependent variable A test of variance equality A plot of group means Range tests, pairwise multiple comparisons, and contrasts, to describe the nature of the group differences 9.1. Testing the equality of group variances An important first step in the analysis of variance is establishing the validity of assumptions. One assumption of ANOVA is that the variances of the groups are equivalent. This example illustrates how that test is performed. A sales manager wishes to determine the optimal number of product training days needed for new employees. He has performance scores for three groups: employees with one, two, or three days of training. The data are in the filesalesperformance.sav. See the topic Sample Files for more information An error bar chart Before running the analysis of variance, you graph the means and standard errors. 1. To create an error bar chart, from the menus choose: Graphs > Chart Builder Select the Gallery tab, and select Bar from the list of chart types. 3. Drag and drop the Simple Error Bar icon onto the canvas area. 99

18 4. Drag and drop Score on training exam onto the y axis. 5. Right-click Sales training group and select Nominal for the measurement level. 6. Drag and drop Sales training group onto the x axis. Figure 119 Simple error bar in Chart Builder 7. Click Element Properties. 8. In the Error Bars Represent group, click Standard Error. 100

19 Figure 120 Chart Builder, Element Properties 9. Click Apply and then click OK in the Chart Builder to create the error bar chart. Figure 121 An error bar chart of performance scores by training group 101

20 Average performance clearly increases with added training days, but variation in performance decreases at the same time. ANOVA assumes equality of variance across groups; that assumption may not hold for these data Running the analysis To test the equality of variance assumption, from the menus choose: Analyze > Compare Means > One-Way ANOVA... Figure 122 One-Way ANOVA dialog box 1. Select Score on training exam as the dependent variable. 2. Select Sales training group as the factor variable. 3. Click Options. Figure 123 Options dialog box 4. Select Homogeneity of variance test. 5. Click Continue. 102

21 6. Click OK in the One-Way ANOVA dialog box Descriptive statistics table Figure 124 One-way ANOVA descriptive statistics table The standard deviation and standard error statistics confirm that as training days increase, variation in performance decreases Levene test table Figure 125 Homogeneity of variance table The Levene statistic rejects the null hypothesis that the group variances are equal. ANOVA is robust to this violation when the groups are of equal or near equal size; however, you may choose to transform the data or perform a nonparametric test that does not require this assumption Performing a One-Way ANOVA In response to customer requests, an electronics firm is developing a new DVD player. Using a prototype, the marketing team has collected focus group data. ANOVA is being used to discover if consumers of various ages rated the design differently. This example uses the file dvdplayer.sav. See the topic Sample Files for more information Running the analysis To begin the analysis, from the menus choose: Analyze > Compare Means > One-Way ANOVA

22 Figure 126 One-Way ANOVA dialog box 1. Select Total DVD assessment as the dependent variable. 2. Select Age Group as the factor variable. 3. Click Options. Figure 127 Options dialog box The means plot is a useful way to visualize the group differences. 4. Select Means plot. 5. Click Continue. 6. Click OK in the One-Way ANOVA dialog box ANOVA table Figure 128 One-Way ANOVA table 104

23 The significance value of the F test in the ANOVA table is less than Thus, you must reject the hypothesis that average assessment scores are equal across age groups. Now that you know the groups differ in some way, you need to learn more about the structure of the differences A Plot of Group Means Figure 129 One-Way ANOVA means plot The means plot helps you to "see" this structure. Participants between the ages of 35 and 54 rated the DVD player more highly than their counterparts. If more detailed analyses are desired, then the team can use the range tests, pairwise comparisons, or contrast features in One- Way ANOVA Contrasts between means In general, F statistics establish that there is or is not a difference between group means, and means plots suggest where the difference may lie. As this section shows, you can use the One-Way ANOVA procedure to specify exactly how the means differ and test those specifications. 105

24 Looking at the DVD data, market researchers ask: Are the two groups between the ages of 35 and 54 really different from each other? Can participants under 35 and over 54 be considered statistically equivalent? This example uses the file dvdplayer.sav. See the topic Sample Files for more information Running the analysis To begin the analysis, from the menus choose: Analyze > Compare Means > One-Way ANOVA... Figure 130 One-Way ANOVA dialog box 1. Select Total DVD assessment as the dependent variable. 2. Select Age Group as the factor variable. 3. Click Contrasts. 106

25 Figure 131 Contrasts dialog box, second contrast The first contrast compares only groups 3 and 4; the others are eliminated by giving them weights of Enter the following contrast coefficients: 0, 0, -1, 1, 0, 0. Make sure to click Add after entering each value. 5. Click Next to move to the second contrast. Figure 132 Contrasts dialog box, second contrast The second contrast compares groups 1 and 2 with groups 5 and 6. Groups 3 and 4 are eliminated. 107

26 6. Enter the following contrast coefficients:.5,.5, 0, 0, -.5, -.5. Make sure to click Add after entering each value. 7. Click Continue. 8. Click OK in the One-Way ANOVA dialog box Contrast coefficients table Figure 133 One-Way ANOVA contrast-coefficient table The contrast-coefficient table is a convenient way to check that the proper weights were given to the groups. If the mean assessments of the DVD player for the and age groups are equal, then you would expect the observed difference in the mean assessment for these groups to be near 0. By specifying - 1 and 1 as the contrast coefficients for these groups, the first contrast tests whether the observed difference is statistically significant. Similarly, if the mean assessments of the under-35 age groups and over-54 age groups are equal, you would expect the sum of the first two groups to be equal to the sum of the last two groups, and the difference of these sums to be near Contrast test table Figure 134 One-Way ANOVA contrast-test table Note that the results are displayed in two panels: the first assumes that the variances of the groups are equal, and the second assumes that they 108

27 are unequal. In this case, the variances of the groups are assumed equal, so we focus on the first panel. The significance values for the tests of the first contrast are both larger than This indicates that the age group is not significantly more favorable toward the DVD player than the age group. Likewise, the significance values for the tests of the second contrast are larger than Participants under 35 and over 54 have statistically equivalent assessment scores All possible comparisons between means Contrasts are an efficient, powerful method for comparing exactly the groups that you want to compare, using whatever contrast weights that you require. However, there are times when you do not have, or do not need, such specific comparisons. The One-Way ANOVA procedure allows you to compare every group mean against every other, a method known as pairwise multiple comparisons. A sales manager has analyzed training data using One-Way ANOVA. While significant group differences were found, there are no prior hypotheses about how the three groups should differ. Therefore, he has decided to simply compare every group to every other group. This example uses the file salesperformance.sav. See the topic Sample Files for more information Running the analysis To begin the analysis, from the menus choose: Analyze > Compare Means > One-Way ANOVA

28 Figure 135 One-Way ANOVA dialog box 1. Select Score on training exam as the dependent variable. 2. Select Sales training group as the factor variable. 3. Click Post Hoc. The Post Hoc tests are divided into two sets: The first set assumes groups with equal variances. The second set does not assume that the variances are equal. Because the Levene test has already established that the variances across training groups are significantly different, we select from this list. 4. Select Tamhane's T2. 5. Click Continue. 6. Click OK in the One-Way ANOVA dialog box Post hoc test table The group with one training day performed significantly lower than the other groups. Trainees with two and three days do not statistically differ in average performance. Despite this equality, the manager may still consider the added benefit of the third training day, given the large decrease in variability Summary With the One-Way ANOVA procedure, you are able to: 110

29 Validate the assumption of variance equality Obtain the ANOVA table and results Visually inspect the group means Perform custom contrasts, tailored to your specific hypotheses Compare each mean to every other mean, assuming variance equality or not Perform two types of robust analysis of variance 9.6. Related procedures The One-Way ANOVA procedure is used to test the hypothesis that several sample means are equal. You can alternately use the Means procedure to obtain a one-way analysis of variance with a test for linearity procedure. If you have multiple factors, use the GLM Univariate procedure to obtain two-way analysis of variance, analysis of covariance, and more. 111

SCENARIO: We are interested in studying the relationship between the amount of corruption in a country and the quality of their economy.

SCENARIO: We are interested in studying the relationship between the amount of corruption in a country and the quality of their economy. Introduction to SPSS Center for Teaching, Research and Learning Research Support Group American University, Washington, D.C. Hurst Hall 203 rsg@american.edu (202) 885-3862 This workshop is designed to

More information

Using Excel s Analysis ToolPak Add-In

Using Excel s Analysis ToolPak Add-In Using Excel s Analysis ToolPak Add-In Bijay Lal Pradhan, PhD Introduction I have a strong opinions that we can perform different quantitative analysis, including statistical analysis, in Excel. It is powerful,

More information

ANALYSING QUANTITATIVE DATA

ANALYSING QUANTITATIVE DATA 9 ANALYSING QUANTITATIVE DATA Although, of course, there are other software packages that can be used for quantitative data analysis, including Microsoft Excel, SPSS is perhaps the one most commonly subscribed

More information

The Dummy s Guide to Data Analysis Using SPSS

The Dummy s Guide to Data Analysis Using SPSS The Dummy s Guide to Data Analysis Using SPSS Univariate Statistics Scripps College Amy Gamble April, 2001 Amy Gamble 4/30/01 All Rights Rerserved Table of Contents PAGE Creating a Data File...3 1. Creating

More information

5 CHAPTER: DATA COLLECTION AND ANALYSIS

5 CHAPTER: DATA COLLECTION AND ANALYSIS 5 CHAPTER: DATA COLLECTION AND ANALYSIS 5.1 INTRODUCTION This chapter will have a discussion on the data collection for this study and detail analysis of the collected data from the sample out of target

More information

SPSS 14: quick guide

SPSS 14: quick guide SPSS 14: quick guide Edition 2, November 2007 If you would like this document in an alternative format please ask staff for help. On request we can provide documents with a different size and style of

More information

JMP TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING

JMP TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING JMP TIP SHEET FOR BUSINESS STATISTICS CENGAGE LEARNING INTRODUCTION JMP software provides introductory statistics in a package designed to let students visually explore data in an interactive way with

More information

SPSS Guide Page 1 of 13

SPSS Guide Page 1 of 13 SPSS Guide Page 1 of 13 A Guide to SPSS for Public Affairs Students This is intended as a handy how-to guide for most of what you might want to do in SPSS. First, here is what a typical data set might

More information

CHAPTER FIVE CROSSTABS PROCEDURE

CHAPTER FIVE CROSSTABS PROCEDURE CHAPTER FIVE CROSSTABS PROCEDURE 5.0 Introduction This chapter focuses on how to compare groups when the outcome is categorical (nominal or ordinal) by using SPSS. The aim of the series of exercise is

More information

Opening SPSS 6/18/2013. Lesson: Quantitative Data Analysis part -I. The Four Windows: Data Editor. The Four Windows: Output Viewer

Opening SPSS 6/18/2013. Lesson: Quantitative Data Analysis part -I. The Four Windows: Data Editor. The Four Windows: Output Viewer Lesson: Quantitative Data Analysis part -I Research Methodology - COMC/CMOE/ COMT 41543 The Four Windows: Data Editor Data Editor Spreadsheet-like system for defining, entering, editing, and displaying

More information

Exploratory Data Analysis

Exploratory Data Analysis Exploratory Data Analysis Brawijaya Professional Statistical Analysis BPSA MALANG Jl. Kertoasri 66 Malang (0341) 580342 Exploratory Data Analysis Exploring data can help to determine whether the statistical

More information

AcaStat How To Guide. AcaStat. Software. Copyright 2016, AcaStat Software. All rights Reserved.

AcaStat How To Guide. AcaStat. Software. Copyright 2016, AcaStat Software. All rights Reserved. AcaStat How To Guide AcaStat Software Copyright 2016, AcaStat Software. All rights Reserved. http://www.acastat.com Table of Contents Frequencies... 3 List Variables... 4 Descriptives... 5 Explore Means...

More information

CHAPTER 5 RESULTS AND ANALYSIS

CHAPTER 5 RESULTS AND ANALYSIS CHAPTER 5 RESULTS AND ANALYSIS This chapter exhibits an extensive data analysis and the results of the statistical testing. Data analysis is done using factor analysis, regression analysis, reliability

More information

Using SPSS for Linear Regression

Using SPSS for Linear Regression Using SPSS for Linear Regression This tutorial will show you how to use SPSS version 12.0 to perform linear regression. You will use SPSS to determine the linear regression equation. This tutorial assumes

More information

How to Get More Value from Your Survey Data

How to Get More Value from Your Survey Data Technical report How to Get More Value from Your Survey Data Discover four advanced analysis techniques that make survey research more effective Table of contents Introduction..............................................................3

More information

= = Name: Lab Session: CID Number: The database can be found on our class website: Donald s used car data

= = Name: Lab Session: CID Number: The database can be found on our class website: Donald s used car data Intro to Statistics for the Social Sciences Fall, 2017, Dr. Suzanne Delaney Extra Credit Assignment Instructions: You have been hired as a statistical consultant by Donald who is a used car dealer to help

More information

Tutorial #7: LC Segmentation with Ratings-based Conjoint Data

Tutorial #7: LC Segmentation with Ratings-based Conjoint Data Tutorial #7: LC Segmentation with Ratings-based Conjoint Data This tutorial shows how to use the Latent GOLD Choice program when the scale type of the dependent variable corresponds to a Rating as opposed

More information

= = Intro to Statistics for the Social Sciences. Name: Lab Session: Spring, 2015, Dr. Suzanne Delaney

= = Intro to Statistics for the Social Sciences. Name: Lab Session: Spring, 2015, Dr. Suzanne Delaney Name: Intro to Statistics for the Social Sciences Lab Session: Spring, 2015, Dr. Suzanne Delaney CID Number: _ Homework #22 You have been hired as a statistical consultant by Donald who is a used car dealer

More information

Section 9: Presenting and describing quantitative data

Section 9: Presenting and describing quantitative data Section 9: Presenting and describing quantitative data Australian Catholic University 2014 ALL RIGHTS RESERVED. No part of this work covered by the copyright herein may be reproduced or used in any form

More information

The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pa

The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pa The SPSS Sample Problem To demonstrate these concepts, we will work the sample problem for logistic regression in SPSS Professional Statistics 7.5, pages 37-64. The description of the problem can be found

More information

How to Use Excel for Regression Analysis MtRoyal Version 2016RevA *

How to Use Excel for Regression Analysis MtRoyal Version 2016RevA * OpenStax-CNX module: m63578 1 How to Use Excel for Regression Analysis MtRoyal Version 2016RevA * Lyryx Learning Based on How to Use Excel for Regression Analysis BSTA 200 Humber College Version 2016RevA

More information

The Kruskal-Wallis Test with Excel In 3 Simple Steps. Kilem L. Gwet, Ph.D.

The Kruskal-Wallis Test with Excel In 3 Simple Steps. Kilem L. Gwet, Ph.D. The Kruskal-Wallis Test with Excel 2007 In 3 Simple Steps Kilem L. Gwet, Ph.D. Copyright c 2011 by Kilem Li Gwet, Ph.D. All rights reserved. Published by Advanced Analytics, LLC A single copy of this document

More information

Introduction to Control Charts

Introduction to Control Charts Introduction to Control Charts Highlights Control charts can help you prevent defects before they happen. The control chart tells you how the process is behaving over time. It's the process talking to

More information

Getting Started with OptQuest

Getting Started with OptQuest Getting Started with OptQuest What OptQuest does Futura Apartments model example Portfolio Allocation model example Defining decision variables in Crystal Ball Running OptQuest Specifying decision variable

More information

CHAPTER 10 REGRESSION AND CORRELATION

CHAPTER 10 REGRESSION AND CORRELATION CHAPTER 10 REGRESSION AND CORRELATION SIMPLE LINEAR REGRESSION: TWO VARIABLES (SECTIONS 10.1 10.3 OF UNDERSTANDABLE STATISTICS) Chapter 10 of Understandable Statistics introduces linear regression. The

More information

STATISTICS PART Instructor: Dr. Samir Safi Name:

STATISTICS PART Instructor: Dr. Samir Safi Name: STATISTICS PART Instructor: Dr. Samir Safi Name: ID Number: Question #1: (20 Points) For each of the situations described below, state the sample(s) type the statistical technique that you believe is the

More information

Correlation and Simple. Linear Regression. Scenario. Defining Correlation

Correlation and Simple. Linear Regression. Scenario. Defining Correlation Linear Regression Scenario Let s imagine that we work in a real estate business and we re attempting to understand whether there s any association between the square footage of a house and it s final selling

More information

AN EMPIRICAL STUDY OF QUALITY OF PAINTS: A CASE STUDY OF IMPACT OF ASIAN PAINTS ON CUSTOMER SATISFACTION IN THE CITY OF JODHPUR

AN EMPIRICAL STUDY OF QUALITY OF PAINTS: A CASE STUDY OF IMPACT OF ASIAN PAINTS ON CUSTOMER SATISFACTION IN THE CITY OF JODHPUR AN EMPIRICAL STUDY OF QUALITY OF PAINTS: A CASE STUDY OF IMPACT OF ASIAN PAINTS ON CUSTOMER SATISFACTION IN THE CITY OF JODHPUR Dr. Ashish Mathur Associate Professor, Department of Management Studies Lachoo

More information

Discussion Solution Mollusks and Litter Decomposition

Discussion Solution Mollusks and Litter Decomposition Discussion Solution Mollusks and Litter Decomposition. Is the rate of litter decomposition affected by the presence of mollusks? 2. Does the effect of mollusks on litter decomposition differ among the

More information

Chapter Analytical Tool and Setting Parameters: determining the existence of differences among several population means

Chapter Analytical Tool and Setting Parameters: determining the existence of differences among several population means Chapter-6 Websites Services Quality Analysis of Data & Results 6.1 Analytical Tool and Setting Parameters: 1. Analysis of Variance (ANOVA): I have shown a relative scenario between his results in the results

More information

Computing Descriptive Statistics Argosy University

Computing Descriptive Statistics Argosy University 2014 Argosy University 2 Computing Descriptive Statistics: Ever Wonder What Secrets They Hold? The Mean, Mode, Median, Variability, and Standard Deviation Introduction Before gaining an appreciation for

More information

Problem Points Score USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT

Problem Points Score USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT STAT 512 EXAM I STAT 512 Name (7 pts) Problem Points Score 1 40 2 25 3 28 USE YOUR TIME WISELY SHOW YOUR WORK TO RECEIVE PARTIAL CREDIT WRITE LEGIBLY. ANYTHING UNREADABLE WILL NOT BE GRADED GOOD LUCK!!!!

More information

APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT YEAR DATA. Corresponding Author

APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT YEAR DATA. Corresponding Author 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 APPLICATION OF SEASONAL ADJUSTMENT FACTORS TO SUBSEQUENT

More information

A Research Note on Correlation

A Research Note on Correlation A Research ote on Correlation Instructor: Jagdish Agrawal, CSU East Bay 1. When to use Correlation: Research questions assessing the relationship between pairs of variables that are measured at least at

More information

Descriptive Statistics Tutorial

Descriptive Statistics Tutorial Descriptive Statistics Tutorial Measures of central tendency Mean, Median, and Mode Statistics is an important aspect of most fields of science and toxicology is certainly no exception. The rationale behind

More information

SPSS Instructions Booklet 1 For use in Stat1013 and Stat2001 updated Dec Taras Gula,

SPSS Instructions Booklet 1 For use in Stat1013 and Stat2001 updated Dec Taras Gula, Booklet 1 For use in Stat1013 and Stat2001 updated Dec 2015 Taras Gula, Introduction to SPSS Read Me carefully page 1/2/3 Entering and importing data page 4 One Variable Scenarios Measurement: Explore

More information

MAS187/AEF258. University of Newcastle upon Tyne

MAS187/AEF258. University of Newcastle upon Tyne MAS187/AEF258 University of Newcastle upon Tyne 2005-6 Contents 1 Collecting and Presenting Data 5 1.1 Introduction...................................... 5 1.1.1 Examples...................................

More information

Chapter 5 Notes Page 1

Chapter 5 Notes Page 1 Chapter 5 Notes Page 1 COST BEHAVIOR When dealing with costs, it helps for you to determine what drives the cost in question. A Cost Driver (also called Cost Base) is an activity that is associated with,

More information

CHAPTER 8 PERFORMANCE APPRAISAL OF A TRAINING PROGRAMME 8.1. INTRODUCTION

CHAPTER 8 PERFORMANCE APPRAISAL OF A TRAINING PROGRAMME 8.1. INTRODUCTION 168 CHAPTER 8 PERFORMANCE APPRAISAL OF A TRAINING PROGRAMME 8.1. INTRODUCTION Performance appraisal is the systematic, periodic and impartial rating of an employee s excellence in matters pertaining to

More information

Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology

Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology Hierarchical Linear Modeling: A Primer 1 (Measures Within People) R. C. Gardner Department of Psychology As noted previously, Hierarchical Linear Modeling (HLM) can be considered a particular instance

More information

Getting Started with HLM 5. For Windows

Getting Started with HLM 5. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 About this Document... 3 1.2 Introduction to HLM... 3 1.3 Accessing HLM... 3 1.4 Getting Help with HLM... 3 Section 2: Accessing

More information

Practice Final Exam STCC204

Practice Final Exam STCC204 Practice Final Exam STCC24 The following are the types of questions you can expect on the final exam. There are 24 questions on this practice exam, so it should give you a good indication of the length

More information

Distinguish between different types of numerical data and different data collection processes.

Distinguish between different types of numerical data and different data collection processes. Level: Diploma in Business Learning Outcomes 1.1 1.3 Distinguish between different types of numerical data and different data collection processes. Introduce the course by defining statistics and explaining

More information

Excel For Statistical Data Analysis

Excel For Statistical Data Analysis 1 of 37 26.08.2008 9:31 AM Excel For Statistical Data Analysis Europe Site Site for Asia Site for Middle East UK Site USA Site This is a webtext companion site of Business Statistics Asia-Pacific Site

More information

Business Statistics (BK/IBA) Tutorial 4 Exercises

Business Statistics (BK/IBA) Tutorial 4 Exercises Business Statistics (BK/IBA) Tutorial 4 Exercises Instruction In a tutorial session of 2 hours, we will obviously not be able to discuss all questions. Therefore, the following procedure applies: we expect

More information

1 BASIC CHARTING. 1.1 Introduction

1 BASIC CHARTING. 1.1 Introduction 1 BASIC CHARTING 1.1 Introduction This section covers the basic principles of how to create and modify a chart in Excel. With Excel 2016, the charting process is user-friendly and offers many ways to amplify

More information

Statistics 201 Summary of Tools and Techniques

Statistics 201 Summary of Tools and Techniques Statistics 201 Summary of Tools and Techniques This document summarizes the many tools and techniques that you will be exposed to in STAT 201. The details of how to do these procedures is intentionally

More information

Chapter 2 Part 1B. Measures of Location. September 4, 2008

Chapter 2 Part 1B. Measures of Location. September 4, 2008 Chapter 2 Part 1B Measures of Location September 4, 2008 Class will meet in the Auditorium except for Tuesday, October 21 when we meet in 102a. Skill set you should have by the time we complete Chapter

More information

CHAPTER 4. Labeling Methods for Identifying Outliers

CHAPTER 4. Labeling Methods for Identifying Outliers CHAPTER 4 Labeling Methods for Identifying Outliers 4.1 Introduction Data mining is the extraction of hidden predictive knowledge s from large databases. Outlier detection is one of the powerful techniques

More information

IT portfolio management template User guide

IT portfolio management template User guide IBM Rational Focal Point IT portfolio management template User guide IBM Software Group IBM Rational Focal Point IT Portfolio Management Template User Guide 2011 IBM Corporation Copyright IBM Corporation

More information

SNPs and Hypothesis Testing

SNPs and Hypothesis Testing Claudia Neuhauser Page 1 6/12/2007 SNPs and Hypothesis Testing Goals 1. Explore a data set on SNPs. 2. Develop a mathematical model for the distribution of SNPs and simulate it. 3. Assess spatial patterns.

More information

Percent Lead Time Visibility

Percent Lead Time Visibility Percent Lead Time Visibility PERCENT LEAD TIME VISIBILITY PAGE 2 of 14 Introduction Percent Visibility uses Lead Time as the key concept when determining when substitutes should be allowed to view jobs

More information

Tutorial Segmentation and Classification

Tutorial Segmentation and Classification MARKETING ENGINEERING FOR EXCEL TUTORIAL VERSION v171025 Tutorial Segmentation and Classification Marketing Engineering for Excel is a Microsoft Excel add-in. The software runs from within Microsoft Excel

More information

16 What Effect Does Changing the Minimum Wage Have on Employment?

16 What Effect Does Changing the Minimum Wage Have on Employment? 16 What Effect Does Changing the Minimum Wage Have on Employment? Introduction Many people advocate raising the minimum wage as a means of raising the standard of living of many of the poor. (The term

More information

Gush vs. Bore: A Look at the Statistics of Sampling

Gush vs. Bore: A Look at the Statistics of Sampling Gush vs. Bore: A Look at the Statistics of Sampling Open the Fathom file Random_Samples.ftm. Imagine that in a nation somewhere nearby, a presidential election will soon be held with two candidates named

More information

Math227 Sample Final 3

Math227 Sample Final 3 Math227 Sample Final 3 You may use TI calculator for this test. However, you must show all details for hypothesis testing. For confidence interval, you must show the critical value and the margin of error.

More information

Chapter 1 INTRODUCTION TO SIMULATION

Chapter 1 INTRODUCTION TO SIMULATION Chapter 1 INTRODUCTION TO SIMULATION Many problems addressed by current analysts have such a broad scope or are so complicated that they resist a purely analytical model and solution. One technique for

More information

A Production Problem

A Production Problem Session #2 Page 1 A Production Problem Weekly supply of raw materials: Large Bricks Small Bricks Products: Table Profit = $20/Table Chair Profit = $15/Chair Session #2 Page 2 Linear Programming Linear

More information

Introduction. Creating Sparklines. Excel 2010 Working with Sparklines. Types of Sparklines. Page 1

Introduction. Creating Sparklines. Excel 2010 Working with Sparklines. Types of Sparklines. Page 1 Excel 2010 Working with Sparklines Introduction Page 1 Sparklines are miniature charts that fit into a single cell. Since they're so compact, you can place a large number of them in your worksheets. For

More information

This paper is not to be removed from the Examination Halls

This paper is not to be removed from the Examination Halls This paper is not to be removed from the Examination Halls UNIVERSITY OF LONDON ST104A ZB (279 004A) BSc degrees and Diplomas for Graduates in Economics, Management, Finance and the Social Sciences, the

More information

Sec Two-Way Analysis of Variance. Bluman, Chapter 12 1

Sec Two-Way Analysis of Variance. Bluman, Chapter 12 1 Sec 12.3 Two-Way Analysis of Variance Bluman, Chapter 12 1 12-3 Two-Way Analysis of Variance In doing a study that involves a twoway analysis of variance, the researcher is able to test the effects of

More information

Starter Watch the video clip In the Field which highlights some of the challenges of collecting data in the Arctic region.

Starter Watch the video clip In the Field which highlights some of the challenges of collecting data in the Arctic region. Ocean Acidification Lesson 2: Data Analysis Key question: How can ocean acidification data be analysed and presented? Aim: To handle data collected during Dr Findlay s ocean acidification research visit

More information

Biostat Exam 10/7/03 Coverage: StatPrimer 1 4

Biostat Exam 10/7/03 Coverage: StatPrimer 1 4 Biostat Exam 10/7/03 Coverage: StatPrimer 1 4 Part A (Closed Book) INSTRUCTIONS Write your name in the usual location (back of last page, near the staple), and nowhere else. Turn in your Lab Workbook at

More information

Using Excel s Analysis ToolPak Add In

Using Excel s Analysis ToolPak Add In Using Excel s Analysis ToolPak Add In Introduction This document illustrates the use of Excel s Analysis ToolPak add in for data analysis. The document is aimed at users who don t believe that Excel s

More information

Two-way CASE ANOVA Using SPSS

Two-way CASE ANOVA Using SPSS Two-way CASE ANOVA Using SPSS Copyright 2015, J. Toby Mordkoff Premises 1. We want the most external validity with respect to the subjects. Therefore, we want to maximize the number of subjects that are

More information

UNIVERSITY OF MORATUWA

UNIVERSITY OF MORATUWA UNIVERSITY OF MORATUWA MSC/POSTGRADUATE DIPLOMA IN OPERATIONAL RESEARCH MA(5001) INTRODUCTION TO STATISTICS THREE HOURS AUGUST 2009 Answer FIVE questions and NO MORE. ADDITIONAL MATERIAL: Statistical Tables

More information

Chapter Six- Selecting the Best Innovation Model by Using Multiple Regression

Chapter Six- Selecting the Best Innovation Model by Using Multiple Regression Chapter Six- Selecting the Best Innovation Model by Using Multiple Regression 6.1 Introduction In the previous chapter, the detailed results of FA were presented and discussed. As a result, fourteen factors

More information

Basic Statistics, Sampling Error, and Confidence Intervals

Basic Statistics, Sampling Error, and Confidence Intervals 02-Warner-45165.qxd 8/13/2007 5:00 PM Page 41 CHAPTER 2 Introduction to SPSS Basic Statistics, Sampling Error, and Confidence Intervals 2.1 Introduction We will begin by examining the distribution of scores

More information

CHAPTER-4 IMPACT OF SOFT SKILLS ON GROWTH AND PRODUCTIVITY IN SERVICES

CHAPTER-4 IMPACT OF SOFT SKILLS ON GROWTH AND PRODUCTIVITY IN SERVICES CHAPTER-4 IMPACT OF SOFT SKILLS ON GROWTH AND PRODUCTIVITY IN SERVICES The job related technical skills are important, there are certain basic eligibility criteria to get the job and to give performance

More information

Multiple Regression. Dr. Tom Pierce Department of Psychology Radford University

Multiple Regression. Dr. Tom Pierce Department of Psychology Radford University Multiple Regression Dr. Tom Pierce Department of Psychology Radford University In the previous chapter we talked about regression as a technique for using a person s score on one variable to make a best

More information

GRACE: Tracking Water from Space. Groundwater Storage Changes in California s Central Valley Data Analysis Protocol for Excel: PC

GRACE: Tracking Water from Space. Groundwater Storage Changes in California s Central Valley Data Analysis Protocol for Excel: PC Groundwater Storage Changes in California s Central Valley Data Analysis Protocol for Excel: PC 2007-10 Before GRACE it was very difficult to estimate how the total volumes of groundwater are changing.

More information

Finding patterns in data: charts and tables

Finding patterns in data: charts and tables 4 Finding patterns in data: charts and tables Prerequisites Some understanding of sampling methods (Chapter 3: Collecting data: surveys and samples) would be useful but is not essential. Objectives To

More information

Confidence Intervals for Large Sample Means

Confidence Intervals for Large Sample Means Confidence Intervals for Large Sample Means Dr Tom Ilvento Department of Food and Resource Economics Overview Let s continue the discussion of Confidence Intervals (C.I.) And I will shift to the C.I. for

More information

Two Way ANOVA. Turkheimer PSYC 771. Page 1 Two-Way ANOVA

Two Way ANOVA. Turkheimer PSYC 771. Page 1 Two-Way ANOVA Page 1 Two Way ANOVA Two way ANOVA is conceptually like multiple regression, in that we are trying to simulateously assess the effects of more than one X variable on Y. But just as in One Way ANOVA, the

More information

WINDOWS, MINITAB, AND INFERENCE

WINDOWS, MINITAB, AND INFERENCE DEPARTMENT OF POLITICAL SCIENCE AND INTERNATIONAL RELATIONS Posc/Uapp 816 WINDOWS, MINITAB, AND INFERENCE I. AGENDA: A. An example with a simple (but) real data set to illustrate 1. Windows 2. The importance

More information

An Exploration of the Relationship between Construction Cost and Duration in Highway Projects

An Exploration of the Relationship between Construction Cost and Duration in Highway Projects University of Colorado, Boulder CU Scholar Civil Engineering Graduate Theses & Dissertations Civil, Environmental, and Architectural Engineering Spring 1-1-2017 An Exploration of the Relationship between

More information

V4 SQL Dashboard Features

V4 SQL Dashboard Features V4 SQL Dashboard Features 2000-2016 NECS, Inc. All Rights Reserved. I entrée V4 SQL System Guide Table of Contents Chapter I Contact NECS 1 Chapter II Using Dashboards 2 1 Dashboard... Features 2 2 Inventory...

More information

Session 7. Introduction to important statistical techniques for competitiveness analysis example and interpretations

Session 7. Introduction to important statistical techniques for competitiveness analysis example and interpretations ARTNeT Greater Mekong Sub-region (GMS) initiative Session 7 Introduction to important statistical techniques for competitiveness analysis example and interpretations ARTNeT Consultant Witada Anukoonwattaka,

More information

Data Visualization. Prof.Sushila Aghav-Palwe

Data Visualization. Prof.Sushila Aghav-Palwe Data Visualization By Prof.Sushila Aghav-Palwe Importance of Graphs in BI Business intelligence or BI is a technology-driven process that aims at collecting data and analyze it to extract actionable insights

More information

Creating a Split-Plot Factorial Protocol

Creating a Split-Plot Factorial Protocol Creating a Split-Plot Factorial Protocol In this tutorial, we will demonstrate: how to set up a factorial protocol, fill in the treatments, and then view a Split-Plot trial to see how the treatments are

More information

ARM 2015 Features. Gylling Data Management, Inc. December

ARM 2015 Features. Gylling Data Management, Inc. December ARM 2015 Features Gylling Data Management, Inc. December 2014 1 New Protocol Option Sets "Save Set" button to create appropriate defaults for different trial types Select set in New Protocol dialog or

More information

Approaches, Methods and Applications in Europe. Guidelines on using SPSS

Approaches, Methods and Applications in Europe. Guidelines on using SPSS Marketing Research Approaches, Methods and Applications in Europe Introduction Guidelines on using SPSS The background to SPSS is explained on p.293 in the text. Your institution will almost certainly

More information

Calculating the Standard Error of Measurement

Calculating the Standard Error of Measurement Calculating the Standard Error of Measurement If we make a series of measurements of the same clinical variable we expect those measurements to show some variability. This may be because the measurement

More information

Timing Production Runs

Timing Production Runs Class 7 Categorical Factors with Two or More Levels 189 Timing Production Runs ProdTime.jmp An analysis has shown that the time required in minutes to complete a production run increases with the number

More information

Super-marketing. A Data Investigation. A note to teachers:

Super-marketing. A Data Investigation. A note to teachers: Super-marketing A Data Investigation A note to teachers: This is a simple data investigation requiring interpretation of data, completion of stem and leaf plots, generation of box plots and analysis of

More information

This chapter will present the research result based on the analysis performed on the

This chapter will present the research result based on the analysis performed on the CHAPTER 4 : RESEARCH RESULT 4.0 INTRODUCTION This chapter will present the research result based on the analysis performed on the data. Some demographic information is presented, following a data cleaning

More information

CHAPTER V RESULT AND ANALYSIS

CHAPTER V RESULT AND ANALYSIS 39 CHAPTER V RESULT AND ANALYSIS In this chapter author will explain the research findings of the measuring customer loyalty through the role of customer satisfaction and the role of loyalty program quality

More information

Chapter 1 Data and Descriptive Statistics

Chapter 1 Data and Descriptive Statistics 1.1 Introduction Chapter 1 Data and Descriptive Statistics Statistics is the art and science of collecting, summarizing, analyzing and interpreting data. The field of statistics can be broadly divided

More information

Questionnaire. (3) (3) Bachelor s degree (3) Clerk (3) Third. (6) Other (specify) (6) Other (specify)

Questionnaire. (3) (3) Bachelor s degree (3) Clerk (3) Third. (6) Other (specify) (6) Other (specify) Questionnaire 1. Age (years) 2. Education 3. Job Level 4.Sex 5. Work Shift (1) Under 25 (1) High school (1) Manager (1) M (1) First (2) 25-35 (2) Some college (2) Supervisor (2) F (2) Second (3) 36-45

More information

GETTING READY FOR DATA COLLECTION

GETTING READY FOR DATA COLLECTION 3 Chapter 7 Data Collection and Descriptive Statistics CHAPTER OBJECTIVES - STUDENTS SHOULD BE ABLE TO: Explain the steps in the data collection process. Construct a data collection form and code data

More information

IT portfolio management template

IT portfolio management template IT portfolio management template User guide lessons IBM Rational Focal Point version 6.5.1 October 2011 Copyright IBM Corporation 1997, 2011 U.S. Government Users Restricted Rights - Use, duplication,

More information

Spreadsheets in Education (ejsie)

Spreadsheets in Education (ejsie) Spreadsheets in Education (ejsie) Volume 2, Issue 2 2005 Article 5 Forecasting with Excel: Suggestions for Managers Scott Nadler John F. Kros East Carolina University, nadlers@mail.ecu.edu East Carolina

More information

Statistics Summary Exercises

Statistics Summary Exercises 1. A marketing firm wants to determine the typical amount spent during a visit to the grocery store. Each day for one week, they record the amount spent by the first 25 shoppers at a major grocery store.

More information

ABSTRACT: Vol-3 Issue

ABSTRACT: Vol-3 Issue Vol-3 Issue-2 217 EMPLOYABILITY SKILLS AMONG GOVERNMENT AND PRIVATE INSTITUTE ENGINEERING GRADUATES: A STUDY *Dr. Vijaylaxmi Iyengar,E-Mail: vijaylaxmiiyengar@rediffmail.com **Prof. Prachi Sharma, E-Mail:

More information

DIGITAL VERSION. Microsoft EXCEL Level 2 TRAINER APPROVED

DIGITAL VERSION. Microsoft EXCEL Level 2 TRAINER APPROVED DIGITAL VERSION Microsoft EXCEL 2013 Level 2 TRAINER APPROVED Module 4 Displaying Data Graphically Module Objectives Creating Charts and Graphs Modifying and Formatting Charts Advanced Charting Features

More information

Using Mapmaker/QTL for QTL mapping

Using Mapmaker/QTL for QTL mapping Using Mapmaker/QTL for QTL mapping M. Maheswaran Tamil Nadu Agriculture University, Coimbatore Mapmaker/QTL overview A number of methods have been developed to map genes controlling quantitatively measured

More information

Capability on Aggregate Processes

Capability on Aggregate Processes Capability on Aggregate Processes CVJ Systems AWD Systems Trans Axle Solutions edrive Systems The Problem Fixture 1 Fixture 2 Horizontal Mach With one machine and a couple of fixtures, it s a pretty easy

More information

Tutorial #3: Brand Pricing Experiment

Tutorial #3: Brand Pricing Experiment Tutorial #3: Brand Pricing Experiment A popular application of discrete choice modeling is to simulate how market share changes when the price of a brand changes and when the price of a competitive brand

More information

CHAPTER IV DATA ANALYSIS

CHAPTER IV DATA ANALYSIS CHAPTER IV DATA ANALYSIS 4.1 Descriptive statistical analysis 4.1.1 The basic characteristics of the sample 145 effective questionnaires are recycled. The sample distribution of each is rational. The specific

More information

Clovis Community College Class Assessment

Clovis Community College Class Assessment Class: Math 110 College Algebra NMCCN: MATH 1113 Faculty: Hadea Hummeid 1. Students will graph functions: a. Sketch graphs of linear, higherhigher order polynomial, rational, absolute value, exponential,

More information