COMP6053 lecture: Principal components analysis.

Size: px
Start display at page:

Download "COMP6053 lecture: Principal components analysis."

Transcription

1 COMP6053 lecture: Principal components analysis

2 Dealing with many variables Last week we looked at multivariate ANOVA, in which multiple continuous outcome variables are related to categorical predictor variables. What about situations in which we have many variables and are not yet sure which ones we want to regard as predictors and which as outcomes?

3 Dealing with many variables Suppose you've given personality tests to a large sample of people, and recorded scores on multiple traits such as extraversion, neuroticism, openness, etc. Or you've asked 500 people to score 100 different foods on a scale between 1 and 10 to say whether they like that food.

4 Dealing with many variables You have a large number of continuous variables for each subject or case. What structure might there be in the relationships between these variables? You don't have explicit predictors and outcomes: you just want to know whether liking wine goes with liking cheese, whether or not one causes or predicts the other.

5 Dealing with many variables Principal components analysis (PCA) is the right tool for the job here. Closely related technique: factor analysis. Essentially we're looking for structure in the covariance or correlation matrix. Can also view it as reducing our large set of variables to a smaller set that can explain much of the variance.

6 An example data set: heptathlon Heptathlon is a seven-event Olympic sport for women. It includes: hurdles high jump shot put 200m run long jump javelin 800m run.

7 An example data set: heptathlon Our sample data set is the results from the heptathlon at the 1988 Olympic games in Seoul. Won by Jackie Joyner-Kersee (right).

8 An example data set: heptathlon We're asking about the relationship between the results for component events. Is there a "running factor", or a "jumping factor", or a "throwing factor", for example? Seven (variables) is not a large number: PCA comes into its own in larger data sets, but seven will keep things manageable for presentation here.

9 Some housekeeping in R To get access to the heptathlon data set, we need to download the HSAUR package ("Handbook of Statistical Analyses Using R"). In the R GUI, set a CRAN mirror from the packages window (e.g., London or Bristol). Then type install.packages("hsaur") library(hsaur)

10 Examining the data There were 25 competitors in the heptathlon; here are the top 3. hurdles highjump shot run200m longjump javelin run800m score Joyner-Kersee (USA) John (GDR) Behmer (GDR) Some results are measured in seconds (lower numbers better), others in metres (higher numbers better).

11 Transforming the data In order to get all of the scores pointing in the same direction, we transform the times to be differences from the slowest time. heptathlon$hurdles = max(heptathlon$hurdles) - heptathlon$hurdles heptathlon$run200m = max(heptathlon$run200m) - heptathlon$run200m heptathlon$run800m = max(heptathlon$run800m) - heptathlon$run800m Now higher numbers are better in all cases.

12 The correlation matrix hurdles highjump shot run200m longjump javelin run800m hurdles highjump shot run200m longjump javelin run800m Can we see any structure here? What goes with what?

13 The correlation matrix hurdles highjump shot run200m longjump javelin run800m hurdles highjump shot run200m longjump javelin run800m With some colour-coding we see a sprinting / jumping factor start to emerge. Javelin results stand out as being unrelated.

14

15 Pairs plot Scatterplots of all seven variables against each other reinforces the impression we get from the correlation matrix. Clear linear relationships between hurdles, high jump, shot put, 200m, and long jump. Javelin and, to some extent, 800m results are less correlated with the other events.

16 Scaling the data Note that the seven events have very different variances. Standard deviation for the 800m is 8.29 (sec) whereas for the high jump it's only (m). If we work with unscaled scores, the 800m results will have a disproportionate effect. Thus we will tell the PCA function to scale all results to have a variance of 1.0.

17 What are the components in PCA? We're ready to run the PCA analysis now. PCA is going to give us seven components: but what are they? The first component is a line through the centroid of the data that covers as much variance as possible. Your score on C1 is where you sit on that line.

18

19 What are the components in PCA? The second component also goes through the centroid but is orthogonal to (i.e., uncorrelated with) the first. It is also chosen to explain the maximum amount of the remaining variance. Third and subsequent components continue in the same way, explaining less variance each time.

20 What are the components in PCA? Knowing only a woman's score on component 1 (i.e., where they fit along the first line) we could still recover a pretty good guess about their results, i.e., their location in 7-dimensional data-space. If we knew components 1 and 2, the guess would be more accurate.

21 What are the components in PCA? If we knew all 7 components we could completely reconstruct the person's scores. However, there would be little point to this: we started out knowing their scores. The idea is to choose a small subset of the most useful components and thereby compress the high-dimensional data down to a shorter description.

22 Running the PCA The R commands are easy. heppca = prcomp(heptathlon[,c(1:7)],scale=true) print(heppca) summary(heppca) The orange part is about specifying the first seven columns only. The green part is to force automatic scaling of the event results to a variance of 1.0.

23 What results do we get? print(heppca) gives us the seven principal components, expressed in terms of their loadings on each event result. heppca$rotation[,1] gives us the loadings just for the first component. hurdles highjump shot run200m longjump javelin run800m

24 Component loadings We can see that component 1 contains a little of everything, except for the javelin. It also happens to be negative: the sign is not really important here, as C1 is an artificial variable designed to explain variance. With predict(heppca)[,1] we can ask what each woman's C1 score is.

25 Component 1 scores Joyner-Kersee (USA) John (GDR) Behmer (GDR) Sablovskaite (URS) Choubenkova (URS) Schulz (GDR) Fleming (AUS) Greiner (USA) Lajbnerova (CZE) Bouraga (URS) Wijnsma (HOL) Dimitrova (BUL) Scheider (SWI) Braun (FRG) Ruotsalainen (FIN) Yuping (CHN) Hagger (GB) Brown (USA) Mulliner (GB) Hautenauve (BEL) Kytola (FIN) Geremias (BRA) Hui-Ing (TAI) Jeong-Mi (KOR) Launa (PNG)

26 Component 1 and total heptathlon score In the real heptathlon, there's a scoring system that gives each competitor a points total. The correlation between scores on our component 1 and the official scores is Thus we have clearly explained a lot of the relevant variance with our first factor alone.

27 How much variance does each component explain? summary(heppca) gives us information on how much variance each component covers. Importance of components: PC1 PC2 PC3 PC4 PC5 PC6 PC7 Standard deviation Proportion of Variance Cumulative Proportion C1 covers 63.7%, C2 covers 17.1%, C3 covers 7.4%, etc. plot(heppca) shows this graphically.

28 Variance explained by each component Plot shows the scaled variance explained by each component. Also known as a "scree plot".

29 Variance explained by each component There were 7 event results, each scaled to have a variance of 1.0. This makes a total of 7.0 units of scaled variance to be explained, so the area under the scree plot is 7.0. The first factor always "takes" the largest share of this variance.

30 How many components do we need? If we take all 7 components, we've achieved nothing in terms of compressing the highdimensional data. So we want a small subset of the components: one? Two? Three? Later components explain very little variance anyway.

31 How many components do we need? The usual criterion is to accept components that do at least their share of explanation. The original measurements explain 1.0 units of variance each (given the scaling). Thus only a component that explains more than 1.0 units of variance is really helpful.

32 How many components do we need? By this criterion we only want components 1 and 2 (i.e., we've compressed the data set from 7 dimensions to 2). In doing that we still explain 81% of the variance, so we have lost little. This criterion is sometimes expressed in terms of wanting a factor to have an "eigenvalue" of 1.0 or more.

33 How many components do we need? The criterion is not absolute. Some people argue for choosing all components before the scree plot "falls away". If a component explains slightly less than 1.0 units of variance but has an easily interpreted meaning (based on its loading scores) we would be inclined to keep it.

34 Assessing components 2 and 3 > heppca$rotation[,2] hurdles highjump shot run200m longjump javelin run800m > heppca$rotation[,3] hurdles highjump shot run200m longjump javelin run800m Component 2 has a strong (negative) loading on javelin ability. Component 3 seems to cover shot put ability.

35 Interpreting our PCA Let's go with 2 components that explain 81% of the total variance. Component 1 seems to reflect general athletic ability. Component 2 covers the specific skill of javelin throwing, but with a minor influence from shot put and 200m running ability.

36

37 Interpreting our PCA We can plot our 25 competitors in our reduced 2-D component space with biplot (heppca). This plot also shows the way each event loads on each component. We now have a better understanding of the structure implicit in the correlation matrix, and could use our two components as predictor or outcome variables in further analyses.

38 Relationship to factor analysis? Factor analysis is a closely related technique. Rather than breaking the data down into principal components, FA hypothesizes hidden variables that explain variation in the observed data. There is only one PCA result for a data set, but there can be many reasonable FA models.

39 Additional material The R script for running the PCA analysis of the heptathlon data set. The lecture borrows heavily from the PCA tutorial in "A Handbook of Statistical Analyses Using R" by Brian S. Everitt and Torsten Hothorn.

Variable Selection Methods for Multivariate Process Monitoring

Variable Selection Methods for Multivariate Process Monitoring Proceedings of the World Congress on Engineering 04 Vol II, WCE 04, July - 4, 04, London, U.K. Variable Selection Methods for Multivariate Process Monitoring Luan Jaupi Abstract In the first stage of a

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

FREE. calculators included!

FREE. calculators included! The 8 Fundamental ecommerce Metrics and how to act on them today! Stop wasting time on Vanity Metrics! This guide explains the 8 essential ecommerce metrics that you should focus on to grow your business.

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

A is used to answer questions about the quantity of what is being measured. A quantitative variable is comprised of numeric values.

A is used to answer questions about the quantity of what is being measured. A quantitative variable is comprised of numeric values. Stats: Modeling the World Chapter 2 Chapter 2: Data What are data? In order to determine the context of data, consider the W s Who What (and in what units) When Where Why How There are two major ways to

More information

Forecasting Introduction Version 1.7

Forecasting Introduction Version 1.7 Forecasting Introduction Version 1.7 Dr. Ron Tibben-Lembke Sept. 3, 2006 This introduction will cover basic forecasting methods, how to set the parameters of those methods, and how to measure forecast

More information

Examination of Cross Validation techniques and the biases they reduce.

Examination of Cross Validation techniques and the biases they reduce. Examination of Cross Validation techniques and the biases they reduce. Dr. Jon Starkweather, Research and Statistical Support consultant. The current article continues from last month s brief examples

More information

MdAIR Spring Institute. April 28, 2006

MdAIR Spring Institute. April 28, 2006 Introduction to Factor Analysis MdAIR Spring Institute Denise Nadasen April 28, 2006 Today s Objective To understand the general application To learn some of the language To review various decision points

More information

introduction by Stacey Barr

introduction by Stacey Barr The business questions your performance measures should you can't make informed decisions if the information you're using can't your questions by Stacey Barr introduction The report design working group

More information

Sad (s2) anxious (ax2) self-confidence (sc2) compliance (co2)

Sad (s2) anxious (ax2) self-confidence (sc2) compliance (co2) PC Example A community-based treatment center for adolescents with behavior disorders collects daily data for all residents, including the variables listed below. The question asked was, "How many different

More information

1. Contingency Table (Cross Tabulation Table)

1. Contingency Table (Cross Tabulation Table) II. Descriptive Statistics C. Bivariate Data In this section Contingency Table (Cross Tabulation Table) Box and Whisker Plot Line Graph Scatter Plot 1. Contingency Table (Cross Tabulation Table) Bivariate

More information

Connector Ability Preparation and Frequently Asked Questions

Connector Ability Preparation and Frequently Asked Questions P E O P L E I M P R O V E P E R F O R M A N C E Connector Ability Preparation and Frequently Asked Questions www.picompany.biz Contents Connector Ability... 3 Taking the test... 4 Frequently Asked Questions...

More information

Job and Work Attitude Determinants: An Application of Multivariate Analysis

Job and Work Attitude Determinants: An Application of Multivariate Analysis Job and Work Attitude Determinants: An Application of Multivariate Analysis Peter Josephat (Corresponding author) Dept. of Statistics, University of Dodoma P. O. Box 338, Dodoma, Tanzania E-mail: mtakwimu@yahoo.com

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

+? Mean +? No change -? Mean -? No Change. *? Mean *? Std *? Transformations & Data Cleaning. Transformations

+? Mean +? No change -? Mean -? No Change. *? Mean *? Std *? Transformations & Data Cleaning. Transformations Transformations Transformations & Data Cleaning Linear & non-linear transformations 2-kinds of Z-scores Identifying Outliers & Influential Cases Univariate Outlier Analyses -- trimming vs. Winsorizing

More information

BrandCompass measures and visualizes Brand Identity

BrandCompass measures and visualizes Brand Identity Identikit Company: Sanoma Media Belgium Title: Sanoma s BrandCompass a research tool for collaborative magazine planning Authors: Geert Van Boxem & Filip Huwaert Contact: geert.vanboxem@sanoma.com 1 Background

More information

Using Factor Analysis to Generate Clusters of Agile Practices

Using Factor Analysis to Generate Clusters of Agile Practices Using Factor Analysis to Generate Clusters of Agile Practices (A Guide for Agile Process Improvement) Noura Abbas University of Southampton School of Electronics and Computer Science Southampton, UK, SO17

More information

Churn Prediction Model Using Linear Discriminant Analysis (LDA)

Churn Prediction Model Using Linear Discriminant Analysis (LDA) IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 18, Issue 5, Ver. IV (Sep. - Oct. 2016), PP 86-93 www.iosrjournals.org Churn Prediction Model Using Linear Discriminant

More information

Limited Government means that government can do only what the people allow it to do.

Limited Government means that government can do only what the people allow it to do. Popular Sovereignty The Idea that the power of government lies with the people is called popular sovereignty. Popular sovereignty means the right to rule or the people s right to rule. The Declaration

More information

Regression Analysis I & II

Regression Analysis I & II Data for this session is available in Data Regression I & II Regression Analysis I & II Quantitative Methods for Business Skander Esseghaier 1 In this session, you will learn: How to read and interpret

More information

INTERVIEW SERIES GRAEME PLOWMAN WITH INTERVIEWED BY TIM CARROLL. Strategy Domain Group

INTERVIEW SERIES GRAEME PLOWMAN WITH INTERVIEWED BY TIM CARROLL. Strategy Domain Group 325 CONSULTING INTERVIEW SERIES WITH GRAEME PLOWMAN Strategy Director @ Domain Group BIOGRAPHY Graeme Plowman is the Strategy Director at Domain Group, a leading real estate media & services business.

More information

Nonparametric Synthetic Control Method for program evaluation: Model and Stata implementation

Nonparametric Synthetic Control Method for program evaluation: Model and Stata implementation 23rd London Stata Users Group Meeting 7-8 September 2017 Cass Business School, London, UK Nonparametric Synthetic Control Method for program evaluation: Model and Stata implementation Giovanni Cerulli

More information

Multivariate Methods for Evaluating Building Energy Efficiency

Multivariate Methods for Evaluating Building Energy Efficiency Multivariate Methods for Evaluating Building Energy Efficiency Thomas Olofsson, Staffan Andersson and Jan-Ulric Sjögren, Umeå University ABSTRACT For an owner or operator of a building, benchmarking can

More information

A Beginners' Guide to B2B Social Media Marketing

A Beginners' Guide to B2B Social Media Marketing A Beginners' Guide to B2B Social Media Marketing These are tough times for B2B marketers. Faced with industry disruption and an increasingly skeptical audience, they have to be at the top of their game

More information

Sawtooth Software. Sample Size Issues for Conjoint Analysis Studies RESEARCH PAPER SERIES. Bryan Orme, Sawtooth Software, Inc.

Sawtooth Software. Sample Size Issues for Conjoint Analysis Studies RESEARCH PAPER SERIES. Bryan Orme, Sawtooth Software, Inc. Sawtooth Software RESEARCH PAPER SERIES Sample Size Issues for Conjoint Analysis Studies Bryan Orme, Sawtooth Software, Inc. 1998 Copyright 1998-2001, Sawtooth Software, Inc. 530 W. Fir St. Sequim, WA

More information

Segmentation and Targeting

Segmentation and Targeting Segmentation and Targeting Outline The segmentation-targeting-positioning (STP) framework Segmentation The concept of market segmentation Managing the segmentation process Deriving market segments and

More information

Pareto Charts [04-25] Finding and Displaying Critical Categories

Pareto Charts [04-25] Finding and Displaying Critical Categories Introduction Pareto Charts [04-25] Finding and Displaying Critical Categories Introduction Pareto Charts are a very simple way to graphically show a priority breakdown among categories along some dimension/measure

More information

Episode 3: Inbound Marketing vs Outbound Marketing

Episode 3: Inbound Marketing vs Outbound Marketing Episode 3: Inbound Marketing vs Outbound Marketing 00:02 Ken Franzen: Hey everyone, this is Ken from Neon Goldfish. In this episode of the Neon Noise podcast, Justin and I discuss the differences between

More information

Title : Analytics in Agile Project Management Theme: Project Management Leadership > In a Rapidly Changing World Keywords: Agile, Metrics, Analytics, Regression Model Abstract: In the Information revolution

More information

FUZZY SET QUALITATIVE COMPARATIVE ANALYSIS PART 2

FUZZY SET QUALITATIVE COMPARATIVE ANALYSIS PART 2 FUZZY SET QUALITATIVE COMPARATIVE ANALYSIS PART 2 THOMAS ELLIOTT These instructions build on a previous handout, which give an introduction to the basics of set theory and fsqca. Here, we will use software

More information

Customers Value Research

Customers Value Research Customers Value Research Sue McKnight Director of Libraries and Knowledge Resources Nottingham Trent University Libraries & Knowledge Resources The Boots Library Goldsmith Street Nottingham NG1 5LS sue.mcknight@ntu.ac.uk

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

Worksheet 10 - Multivariate analysis

Worksheet 10 - Multivariate analysis Worksheet 10 - Multivariate analysis Multivariate analysis Quinn & Keough (2002) - Chpt 15, 17-18 Question 1 - Principal Components Analysis (PCA) Gittens(1985) measured the abundance of 8 species of plants

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

COMPARISON OF LOGISTIC REGRESSION MODEL AND MARS CLASSIFICATION RESULTS ON BINARY RESPONSE FOR TEKNISI AHLI BBPLK SERANG TRAINING GRADUATES STATUS

COMPARISON OF LOGISTIC REGRESSION MODEL AND MARS CLASSIFICATION RESULTS ON BINARY RESPONSE FOR TEKNISI AHLI BBPLK SERANG TRAINING GRADUATES STATUS International Journal of Humanities, Religion and Social Science ISSN : 2548-5725 Volume 2, Issue 1 2017 www.doarj.org COMPARISON OF LOGISTIC REGRESSION MODEL AND MARS CLASSIFICATION RESULTS ON BINARY

More information

**************************************************** I guess the real problem is this:

**************************************************** I guess the real problem is this: The following discussion took place on the CRAN website in 2005. It is very interesting from a history of statistics point of view, but is also important to know if you use R for statistics: -----Original

More information

) ln (GDP t /Hours t ) ln (GDP deflator t ) capacity utilization t ln (Hours t

) ln (GDP t /Hours t ) ln (GDP deflator t ) capacity utilization t ln (Hours t Tutorial on Estimation and Analysis of a VAR November 11, 2004 Christiano This is a tutorial that takes you through the estimation and analysis of the vector autoregression (VAR) used in Altig, Christiano,

More information

Why do Gage R&Rs fail?

Why do Gage R&Rs fail? Why do Gage R&Rs fail? Common reasons a gage fails a gage R&R Consider these in all gage system designs. 1) The part itself is awkward or encumbering Maybe the part needs a holding fixture to free up your

More information

CHAPTER 4 EXAMPLES: EXPLORATORY FACTOR ANALYSIS

CHAPTER 4 EXAMPLES: EXPLORATORY FACTOR ANALYSIS Examples: Exploratory Factor Analysis CHAPTER 4 EXAMPLES: EXPLORATORY FACTOR ANALYSIS Exploratory factor analysis (EFA) is used to determine the number of continuous latent variables that are needed to

More information

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

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 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

More information

Office paper bulk optimization in a paper machine using multivariate techniques

Office paper bulk optimization in a paper machine using multivariate techniques Office paper bulk optimization in a paper machine using multivariate techniques Authors*: Gabriel Duarte Almeida Sousa 1 Cidália T. Abreu 2 José L. Amaral 3 Carlos Brás 4 Keywords: Bulk, multivariate,

More information

The Multivariate Dustbin

The Multivariate Dustbin UCLA Statistical Consulting Group (Ret.) Stata Conference Baltimore - July 28, 2017 Back in graduate school... My advisor told me that the future of data analysis was multivariate. By multivariate he meant...

More information

App Math Simple methods to know market

App Math Simple methods to know market Member Login (888) 737-0652 support@appempire.com Home» Market Research» App Math Simple methods to know market numbers App Math Simple methods to know market numbers The App Store is such a vital tool

More information

Agile Teamwork: 3 Ways to Minimize Handoffs. by Mike Cohn 8 Comments originally published in Better Software on

Agile Teamwork: 3 Ways to Minimize Handoffs. by Mike Cohn 8 Comments originally published in Better Software on Agile Teamwork: 3 Ways to Minimize Handoffs by Mike Cohn 8 Comments originally published in Better Software on 2010-04-05 Agile teamwork can really help to minimize handoffs. Teams using a sequential development

More information

Putting non-service employees on the phones

Putting non-service employees on the phones Putting non-service employees on the phones For the article Vista Print puts its employees on the phones to Learn the Customer in the July issue of Customer Service Newsletter (CSN), editor Bill Keenan

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

DIFFERENT ESTIMATION STRATEGIES FOR THE COMMON FACTOR MODEL

DIFFERENT ESTIMATION STRATEGIES FOR THE COMMON FACTOR MODEL Measurement, Scaling, and Dimensional Analysis Summer 2017 Bill Jacoby DIFFERENT ESTIMATION STRATEGIES FOR THE COMMON FACTOR MODEL As discussed in class, the technical objective in a factor analysis is

More information

Breakeven Cost-per-Lead (CPL)

Breakeven Cost-per-Lead (CPL) Breakeven Cost-per-Lead (CPL) ARE YOU USING DIGITAL ADVERTISING TO DRIVE LEADS FOR YOUR PROGRAM? DO YOU KNOW THE TRUE ROI OF YOUR DIGITAL ADVERTISING CAMPAIGNS? THIS EBOOK WALKS THROUGH HOW TO CALCULATE

More information

Multiple and Single U/M. (copied from the QB2010 Premier User Guide in PDF)

Multiple and Single U/M. (copied from the QB2010 Premier User Guide in PDF) I decided to play around with Unit of Measure (U/M) and see if I could figure it out. There are a lot of questions on the forums about it. The first thing I ran up against is that as a user of the premier

More information

Privacy: The Slow Tipping Point Transcript. Part 1: The Economics of Privacy Breaches

Privacy: The Slow Tipping Point Transcript. Part 1: The Economics of Privacy Breaches Privacy: The Slow Tipping Point Transcript Part 1: The Economics of Privacy Breaches Stephanie Losi: Welcome to the CERT Podcast Series: Security for Business Leaders. The CERT program is part of the Software

More information

IBM SPSS Forecasting 19

IBM SPSS Forecasting 19 IBM SPSS Forecasting 19 Note: Before using this information and the product it supports, read the general information under Notices on p. 108. This document contains proprietary information of SPSS Inc,

More information

About factor analysis

About factor analysis Overview 1. Readings 2. About factor analysis 3. EFA example 1: Facial features 4. EFA example 2: Classroom behaviour 5. Steps / process 6. EFA example 3: Condom use 7. Summary 2 Readings 1. Beavers et

More information

Unit 6 Good Choice. What is the most important thing to consider when you buy a product? Rank them 1 4. (1 = most important) Answer the question.

Unit 6 Good Choice. What is the most important thing to consider when you buy a product? Rank them 1 4. (1 = most important) Answer the question. Unit 6 Good Choice In this unit, I will... talk about products and their characteristics. talk about preferences. report commands and questions. write a product review. Answer the question. What is the

More information

Agile Test Plan How to Construct an Agile Test Plan

Agile Test Plan How to Construct an Agile Test Plan Agile Test Plan How to Construct an Agile Test Plan XBOSoft White Paper How to Construct an Agile Test Plan www.xbosoft.com 2 Agile is changing not only the way we develop software but the way we work

More information

The Complete Step-By-Step Course to Designing Logos From Start to Finish FROM START TO FINISH

The Complete Step-By-Step Course to Designing Logos From Start to Finish FROM START TO FINISH The Complete Step-By-Step Course to Designing Logos From Start to Finish buildingalogo FROM START TO FINISH Building A Logo From Start To Finish No part of this publication may be reproduced, distributed,

More information

Analytical Capability Security Compute Ease Data Scale Price Users Traditional Statistics vs. Machine Learning In-Memory vs. Shared Infrastructure CRAN vs. Parallelization Desktop vs. Remote Explicit vs.

More information

At the end of this module, you will be able to:

At the end of this module, you will be able to: 1 At the end of this module, you will be able to: Outline the principles of the Multiple UoM solution and its advantages. Define the basic Multiple UoM definitions. Describe how Multiple UoM are used across

More information

Counterproductive. Behavior Index

Counterproductive. Behavior Index Counterproductive Company: Unit/Location: Job Applied for: Behavior Index Version 2.0 Sample Company A Sample Job Copyright 2002, 2007, HRD Press, Inc., 22 Amherst Road, MA 01002 (800) 822-2801 www.hrdpress.com

More information

3 Ways to Improve Your Targeted Marketing with Analytics

3 Ways to Improve Your Targeted Marketing with Analytics 3 Ways to Improve Your Targeted Marketing with Analytics Introduction Targeted marketing is a simple concept, but a key element in a marketing strategy. The goal is to identify the potential customers

More information

Inc. Stat-Ease,

Inc. Stat-Ease, Finding the best process setup for one response is hard enough, but what can you do when faced with customer demands for multiple specifications? Do you ever get between a rock and a hard place in trying

More information

CALCULATING THE ROI OF LEAD NURTURING

CALCULATING THE ROI OF LEAD NURTURING Definitive Guide to Lead Nurturing Lead Calculating the ROI of Lead Nurturing In Part One of the Definitive Guide to Lead Nurturing, we learned the value of lead nurturing done well, and in Parts Two and

More information

MODELLING THE 2009 WORK ENVIRONMENT SURVEY RESULTS THE TECHNICAL REPORT APRIL 2010

MODELLING THE 2009 WORK ENVIRONMENT SURVEY RESULTS THE TECHNICAL REPORT APRIL 2010 MODELLING THE 2009 WORK ENVIRONMENT SURVEY RESULTS THE TECHNICAL REPORT APRIL 200 CONTACT INFORMATION This paper was prepared by Taylor Saunders. If you have any questions about the information in this

More information

OFFSHORING AND OUTSOURCING PHILIPPINES

OFFSHORING AND OUTSOURCING PHILIPPINES OFFSHORING AND OUTSOURCING PHILIPPINES NICK SINCLAIR PODCAST INTERVIEW HENRY: Hi. This is the offshoring and outsourcing Philippines podcast. My name is Henry Acosta and I am your host for today. Our guest

More information

5.1 Leadership Versus Management 5.2 Transactional Leadership 5.3 Transformational Leadership 5.4 Situational Leadership

5.1 Leadership Versus Management 5.2 Transactional Leadership 5.3 Transformational Leadership 5.4 Situational Leadership 5. Leading 5.1 Leadership Versus Management 5.2 Transactional Leadership 5.3 Transformational Leadership 5.4 Situational Leadership 5.5 Personality Types 5.6 Power in Organizations 5.7 Leadership in Teams

More information

Welcome to this IBM podcast, Role of Software. in Smart Grid Transformation. I'm Angelique Matheny with

Welcome to this IBM podcast, Role of Software. in Smart Grid Transformation. I'm Angelique Matheny with IBM Podcast [ MUSIC ] Welcome to this IBM podcast, Role of Software in Smart Grid Transformation. I'm Angelique Matheny with IBM. Energy and utility companies have traditionally focused on their core business

More information

Chapter 12. Oligopoly. Oligopoly Characteristics. ) of firms Product differentiation may or may not exist ) to entry. Chapter 12 2

Chapter 12. Oligopoly. Oligopoly Characteristics. ) of firms Product differentiation may or may not exist ) to entry. Chapter 12 2 Chapter Oligopoly Oligopoly Characteristics ( ) of firms Product differentiation may or may not exist ( ) to entry Chapter Oligopoly Equilibrium ( ) Equilibrium Firms are doing the best they can and have

More information

A Walk-Through Taguchi Design of Experiment (DOE) Application

A Walk-Through Taguchi Design of Experiment (DOE) Application A Walk-Through Taguchi Design of Experiment (DOE) Application [Example: Plastic Injection Molding Process Study] NUTEK, INC. August 1, 2008 Authored by: Ranjit K Roy A Walk-Through Taguchi Design of Experiment

More information

Demand Forecasting of New Products Using Attribute Analysis. Marina Kang

Demand Forecasting of New Products Using Attribute Analysis. Marina Kang Demand Forecasting of New Products Using Attribute Analysis Marina Kang A thesis submitted in partial fulfillment of the requirements for the degree of BACHELOR OF APPLIED SCIENCE Supervisors: Professor

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

Agile TesTing MeTrics Quality Before Velocity

Agile TesTing MeTrics Quality Before Velocity Agile TesTing MeTrics Quality Before Velocity Some people never weigh themselves. They may say, i just look at my clothes. if they don t fit, then i know i should lose weight. On the other hand, some people

More information

Welcome to this IBM podcast. What is product. line engineering? I'm Angelique Matheny with IBM. It's not

Welcome to this IBM podcast. What is product. line engineering? I'm Angelique Matheny with IBM. It's not IBM Podcast [ MUSIC ] MATHENY: Welcome to this IBM podcast. What is product line engineering? I'm Angelique Matheny with IBM. It's not easy to build a smarter product. Now try to build more than one at

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

The Shipley 9.6 Step Process OR How to Tailor BIG Processes for Quick Turn Responses

The Shipley 9.6 Step Process OR How to Tailor BIG Processes for Quick Turn Responses The Shipley 9.6 Step Process OR How to Tailor BIG Processes for Quick Turn Responses No matter what process you begin with, it is never right for all the opportunities you pursue. Hopefully, this discussion

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

Weka Evaluation: Assessing the performance

Weka Evaluation: Assessing the performance Weka Evaluation: Assessing the performance Lab3 (in- class): 21 NOV 2016, 13:00-15:00, CHOMSKY ACKNOWLEDGEMENTS: INFORMATION, EXAMPLES AND TASKS IN THIS LAB COME FROM SEVERAL WEB SOURCES. Learning objectives

More information

The Coca Cola Branding And Packaging Marketing Essay

The Coca Cola Branding And Packaging Marketing Essay The Coca Cola Branding And Packaging Marketing Essay ukessays.com /essays/marketing/the-coca-cola-branding-and-packaging-marketing-essay.php Present customer encouragement strategies may differ to a great

More information

A Tutorial for Analyzing Structural Equation Modelling

A Tutorial for Analyzing Structural Equation Modelling A Tutorial for Analyzing Structural Equation Modelling Hashem Salarzadeh Jenatabadi Department of Science and Technology Studies University of Malaya, Kuala Lumpur, Malaysia salarzadeh@um.edu.my +60178777662

More information

A FIRST COURSE IN STATISTICAL PROGRAMMING WITH R BY W. JOHN BRAUN, DUNCAN J. MURDOCH

A FIRST COURSE IN STATISTICAL PROGRAMMING WITH R BY W. JOHN BRAUN, DUNCAN J. MURDOCH A FIRST COURSE IN STATISTICAL PROGRAMMING WITH R BY W. JOHN BRAUN, DUNCAN J. MURDOCH DOWNLOAD EBOOK : A FIRST COURSE IN STATISTICAL PROGRAMMING WITH R BY W. JOHN BRAUN, DUNCAN J. MURDOCH PDF Click link

More information

Runs of Homozygosity Analysis Tutorial

Runs of Homozygosity Analysis Tutorial Runs of Homozygosity Analysis Tutorial Release 8.7.0 Golden Helix, Inc. March 22, 2017 Contents 1. Overview of the Project 2 2. Identify Runs of Homozygosity 6 Illustrative Example...............................................

More information

PERCENTS - Teacher Notes Unit 6-7 th grade

PERCENTS - Teacher Notes Unit 6-7 th grade PERCENTS - Teacher Notes Unit 6-7 th grade Percents are special fractions whose denominators are. The number in front of the percent symbol (%) is the numerator. The denominator is not written, but understood

More information

SAS Enterprise Guide: Point, Click and Run is all that takes

SAS Enterprise Guide: Point, Click and Run is all that takes ABSTRACT SAS Enterprise Guide: Point, Click and Run is all that takes Aruna Buddana, TiVo Inc, Alviso, CA The Audience Research and Measurement team at TiVo constantly collects and processes anonymous

More information

Governance Watch Webcast #4: The Role of the Independent Director on Private Equity Boards

Governance Watch Webcast #4: The Role of the Independent Director on Private Equity Boards Governance Watch Webcast #4: The Role of the Independent Director on Private Equity Boards Egon Zehnder and The Conference Board Governance Center are pleased to present a new Governance Watch webcast

More information

STP Segmentation, Targeting, Positioning

STP Segmentation, Targeting, Positioning Marketing mix Positioning STP Segmentation, Targeting, Positioning Product All consumers in the market Price Communication Target marketing and positioning Target market segment(s) Distribution Marketing

More information

Overview: ADVERTISING ON FACEBOOK

Overview: ADVERTISING ON FACEBOOK Overview: ADVERTISING ON FACEBOOK Are you active on Facebook? If not, you could be missing out on building connections with your current clients and finding new relationships. First Heartland is happy

More information

A Closer Look at the Impacts of Olympic Averaging of Prices and Yields

A Closer Look at the Impacts of Olympic Averaging of Prices and Yields A Closer Look at the Impacts of Olympic Averaging of Prices and Yields Bruce Sherrick Department of Agricultural and Consumer Economics University of Illinois November 21, 2014 farmdoc daily (4):226 Recommended

More information

CHAPTER-V CHILDREN S ATTITUDE TOWARDS TV ADS

CHAPTER-V CHILDREN S ATTITUDE TOWARDS TV ADS CHAPTER-V CHILDREN S ATTITUDE TOWARDS TV ADS Children s attitude towards ads would not only determine their product purchase behaviour but also other behavioural influences of ads on them. Priya et al.

More information

Getting Started. Logging In Log into Flowserve Network > Open Passport > Human Resources Tab

Getting Started. Logging In Log into Flowserve Network > Open Passport > Human Resources Tab Getting Started Logging In Log into Flowserve Network > Open Passport > Human Resources Tab Exploring the Performance Management Homepage Homepage: This is the start page when you login to the system.

More information

RESIDUAL FILES IN HLM OVERVIEW

RESIDUAL FILES IN HLM OVERVIEW HLML09_20120119 RESIDUAL FILES IN HLM Ralph B. Taylor All materials copyright (c) 1998-2012 by Ralph B. Taylor OVERVIEW Residual files in multilevel models where people are grouped into some type of cluster

More information

Group 6... Page 3/7. Group 7... Page 8/12. Group 8... Page 13/17

Group 6... Page 3/7. Group 7... Page 8/12. Group 8... Page 13/17 QUESTIONS 2018 CONTENT Group 6... Page 3/7 Group 7... Page 8/12 Group 8... Page 13/17 GROUP 6 1 The group of friends has made a list of the things they need for the Vlog Studio. They also put down how

More information

Copyright 2012, Business Directors New Zealand Limited, Graeme Owen,

Copyright 2012, Business Directors New Zealand Limited, Graeme Owen, 1 of 13 Welcome Thank you for visiting the successful builder site and for downloading this e book. In it you will find three of the reasons I have found that builders lose money and how to fix these in

More information

Tools for Effective Decision Making

Tools for Effective Decision Making Tools for Effective Decision Making Problem solving and decision-making are important skills for business and life. Problemsolving often involves decision-making, and decision-making is especially important

More information

Segmentation and Targeting

Segmentation and Targeting Segmentation and Targeting Outline The segmentation-targeting-positioning (STP) framework Segmentation The concept of market segmentation Managing the segmentation process Deriving market segments and

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

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

Contributed to AIChE 2006 Annual Meeting, San Francisco, CA. With the rapid growth of biotechnology and the PAT (Process Analytical Technology)

Contributed to AIChE 2006 Annual Meeting, San Francisco, CA. With the rapid growth of biotechnology and the PAT (Process Analytical Technology) Bio-reactor monitoring with multiway-pca and Model Based-PCA Yang Zhang and Thomas F. Edgar Department of Chemical Engineering University of Texas at Austin, TX 78712 Contributed to AIChE 2006 Annual Meeting,

More information

Structured interviews are a dramatic improvement over unstructured interviews

Structured interviews are a dramatic improvement over unstructured interviews Are you hiring the best person for the job? Is it time to upgrade your competency or behavioral questions to performance-based interviews? For many organizations, interviews are the only or most important

More information

Out Of The Box: How You Could Cash In With QR Codes. Caleb Spilchen

Out Of The Box: How You Could Cash In With QR Codes. Caleb Spilchen Out Of The Box: How You Could Cash In With QR Codes. Caleb Spilchen Blah. Ok, I m sure you were ready for this, you know the boring info page, where they tell you the usual baloney, that you just skip,

More information

Applied Multivariate Statistical Modeling Prof. J. Maiti Department of Industrial Engineering and Management Indian Institute of Technology, Kharagpur

Applied Multivariate Statistical Modeling Prof. J. Maiti Department of Industrial Engineering and Management Indian Institute of Technology, Kharagpur Applied Multivariate Statistical Modeling Prof. J. Maiti Department of Industrial Engineering and Management Indian Institute of Technology, Kharagpur Lecture - 20 MANOVA Case Study (Refer Slide Time:

More information

WhitePaper. Revealing Implicit Brand Drivers

WhitePaper. Revealing Implicit Brand Drivers WhitePaper Revealing Implicit Brand Drivers Marco Vriens, Chief Research Officer, Ipsos MarketQuest Alessandro Martins-Alves, Director, Ipsos Marketing, Brazil Douwe Rademaker, CEO, Ipsos MarketQuest Summary

More information

Studying the Employee Satisfaction Using Factor Analysis

Studying the Employee Satisfaction Using Factor Analysis CASES IN MANAGEMENT 259 Studying the Employee Satisfaction Using Factor Analysis Situation Mr LN seems to be excited as he is going to learn a new technique in the statistical methods class today. His

More information