After your yearly checkup, the doctor has bad news and good news.

Size: px
Start display at page:

Download "After your yearly checkup, the doctor has bad news and good news."

Transcription

1 Modeling Belief How much do you believe it will rain? How strong is your belief in democracy? How much do you believe Candidate X? How much do you believe Car x is faster than Car y? How long do you think you will live?

2 After your yearly checkup, the doctor has bad news and good news. The bad news is that you tested positive for a serious disease, and that the test is 99% accurate (i.e. the probability of testing positive given that you have the disease is 0.99, as is the probability of testing negative given that you don't have the disease). The good news is that this is a rare disease, striking only one in 10,000 people. Why is it good news that the disease is rare? What are the chances that you actually have the disease?

3 What is probability? A numerical measure of the strength of a belief in a certain proposition:p(proposition). Provides rules for coherent inductive reasoning: addition p(this OR That) Multiplication p(this AND That) conditional probability p(this Given THAT) independence. This and That are not related

4

5

6

7

8 Birthday Problem What s the chance two people in a room share the same birthday? Events? Define probabilities? Answer in MATLAB code: n=0:60; p = 1-cumprod((365-n)/365)

9 Birthday Problem What s the chance at least two people in a room share the same birthday? P( B ) = 1- P( Not B) = 1-P(NOONE shares the same birthday. ) Events? Events A i = Person i s birthday is different from Persons {0,,i-1} Define probabilities? P(A i ) = P(i s birthday is different from preceding persons) = (365-i)/365 (i.e. How many chances out of the total) P(Not B) = P(A 0 & A 1 & & A i )= P(A 0, A 1,, A i ) = P(A 0 )P( A 1 ) P( A i ) = j=0 P(A j ) = (365*364*.(365-i))/ 365 i = 365!/((365-i)! 365 i ) i

10 Posterior Probabilities Knowing right prob to compute! P(s O) = P(O s)p(s)/p(o) s = world property O = Observation Example: Medical Testing You test positive for cancer A doctor tells you that the test only misses 10% of people who have cancer, so prepare for the worst Do you seek a second opinion? Why?

11 Mr. Dupont is a professional wine taster. When given a French wine, he will identify it with probability 0.9 correctly as French, and will mistake it for a Californian wine with probability 0.1. When given a Californian wine, he will identify it with probability 0.8 correctly as Californian, and will mistake it for a French wine with probability 0.2. Suppose that Mr. Dupont is given ten unlabelled glasses of wine, three with French and seven with Californian wines. He randomly picks a glass, tries the wine, and solemnly says: "French". What is the probability that the wine he tasted was Californian?

12

13 Prob Computations.. Estimate the probability of some event E when it depends on F. Estimate the probability of E given some other event F, p(e F) Estimate p(e not-f) Estimate p(f) Compute P(E) as p(f) p(e F) + p(not-f) p(e not-f)

14 Bayes Example

15 Mr. Dupont is a professional wine taster. When given a French wine, he will identify it with probability 0.9 correctly as French, and will mistake it for a Californian wine with probability 0.1. When given a Californian wine, he will identify it with probability 0.8 correctly as Californian, and will mistake it for a French wine with probability 0.2. Suppose that Mr. Dupont is given ten unlabelled glasses of wine, three with French and seven with Californian wines. He randomly picks a glass, tries the wine, and solemnly says: "French". What is the probability that the wine he tasted was Californian? Rf Rc F C P(F) = 0.3; P(C) = 0.7; P(C Rf) = P(Rf C) p( C )/P(Rf) = 0.2*0.7/Σ w P(Rf w)p(w) = 0.2*0.7/(0.9* *0.7) = = 0.2*0.7/0.41 =

16 Visualizing 0.9 D H = Hypothesis, Patient has cancer" D = Datum 0.3 H 0.1 ~D 0.7 ~H 0.2 D D ~D H ~H ~D P(H) = 0.3; P(~H) = 0.7;

17 WHAT YOU NEED TO KNOW Joint Probability Conditioning P(x, y) = P(A " B) P(y x) = P(x,y) /P(x) Marginalization P(x) = # y P(x,y)

18

19 Matlab code for computing sum of two die % Need to enumerate all possibilities % die1 = 1:6; % die2 = 1:6; % Now a basic control structure % for die1value=1:6, for die2value = 1:6, possibilities(die1value,die2value) = die1value + die2value; end end % possibilities = % % % % % % % % sort our table into a long list possibilities = reshape(possibilities,[1,36]) % possibilities = % % Columns 1 through 18 % % % % % Columns 19 through 36 % % % % now the minimum value of the sum is 2 % and the max is 12 for sumvalues = 2:12, testifequal = (possibilities == sumvalues); % testifequal returns a new list of the same size % possibilities with a 1 for every element in % possibilities that is equal to the current sumvalue % (2,3,4, etc) and zero for all other values count(sumvalues-1) = sum(testifequal); end probsum = count/36

20

21

22

23

24 Binomial Events

25

26

27

28

29

30 Normal & Multivariate Normal Σ= [σ x σ y 2 ] Σ= [σ x 2 ρσ x σ y ρσ x σ y σ y 2 ]

The Wild Bean Population: Estimating Population Size Using the Mark and Recapture Method

The Wild Bean Population: Estimating Population Size Using the Mark and Recapture Method Name Date The Wild Bean Population: Estimating Population Size Using the Mark and Recapture Method Introduction: In order to effectively study living organisms, scientists often need to know the size of

More information

STA Module 6 The Normal Distribution

STA Module 6 The Normal Distribution STA 2023 Module 6 The Normal Distribution Learning Objectives 1. Explain what it means for a variable to be normally distributed or approximately normally distributed. 2. Explain the meaning of the parameters

More information

STA Module 6 The Normal Distribution. Learning Objectives. Examples of Normal Curves

STA Module 6 The Normal Distribution. Learning Objectives. Examples of Normal Curves STA 2023 Module 6 The Normal Distribution Learning Objectives 1. Explain what it means for a variable to be normally distributed or approximately normally distributed. 2. Explain the meaning of the parameters

More information

Wine-Tasting by Numbers: Using Binary Logistic Regression to Reveal the Preferences of Experts

Wine-Tasting by Numbers: Using Binary Logistic Regression to Reveal the Preferences of Experts Wine-Tasting by Numbers: Using Binary Logistic Regression to Reveal the Preferences of Experts When you need to understand situations that seem to defy data analysis, you may be able to use techniques

More information

ESTIMATING ANIMAL POPULATIONS ACTIVITY

ESTIMATING ANIMAL POPULATIONS ACTIVITY ESTIMATING ANIMAL POPULATIONS ACTIVITY VOCABULARY mark capture/recapture ecologist percent error ecosystem population species census MATERIALS Two medium-size plastic or paper cups for each pair of students

More information

Business Statistics /82 Spring 2011 Booth School of Business The University of Chicago Final Exam

Business Statistics /82 Spring 2011 Booth School of Business The University of Chicago Final Exam Business Statistics 41000-81/82 Spring 2011 Booth School of Business The University of Chicago Final Exam Name You may use a calculator and two cheat sheets. You have 3 hours. I pledge my honor that I

More information

STAT 5302 Applied Regression Analysis. Hawkins

STAT 5302 Applied Regression Analysis. Hawkins Homework 3 sample solution 1. MinnLand data STAT 5302 Applied Regression Analysis. Hawkins newdata

More information

-- Final exam logistics -- Please fill out course evaluation forms (THANKS!!!)

-- Final exam logistics -- Please fill out course evaluation forms (THANKS!!!) -- Final exam logistics -- Please fill out course evaluation forms (THANKS!!!) CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu 3/12/18 Jure Leskovec, Stanford

More information

Thought: The Great Coffee Experiment

Thought: The Great Coffee Experiment Thought: The Great Coffee Experiment 7/7/16 By Kevin DeLuca ThoughtBurner Opportunity Cost of Reading this ThoughtBurner post: $1.97 about 8.95 minutes I drink a lot of coffee. In fact, I m drinking a

More information

A Note on a Test for the Sum of Ranksums*

A Note on a Test for the Sum of Ranksums* Journal of Wine Economics, Volume 2, Number 1, Spring 2007, Pages 98 102 A Note on a Test for the Sum of Ranksums* Richard E. Quandt a I. Introduction In wine tastings, in which several tasters (judges)

More information

EAT TOGETHER EAT BETTER MY PERFECT PLATE. 40 minutes

EAT TOGETHER EAT BETTER MY PERFECT PLATE. 40 minutes EAT TOGETHER MY PERFECT PLATE EAT BETTER TARGET AUDIENCE Grades 5 & 6 ESTIMATED TIME NUTRITION EDUCATION LEARNING OBJECTIVE 40 minutes By the end of this activity, students will be able to: Place food

More information

Lollapalooza Did Not Attend (n = 800) Attended (n = 438)

Lollapalooza Did Not Attend (n = 800) Attended (n = 438) D SDS H F 1, 16 ( ) Warm-ups (A) Which bands come to ACL Fest? Is it true that if a band plays at Lollapalooza, then it is more likely to play at Austin City Limits (ACL) that year? To be able to provide

More information

Deliciously Edible Plant Parts (Page 1 of 2) LESSON 1 HANDOUT 1

Deliciously Edible Plant Parts (Page 1 of 2) LESSON 1 HANDOUT 1 Deliciously Edible Plant Parts (Page 1 of 2) LESSON 1 HANDOUT 1 Fruits and vegetables are the deliciously edible parts of a plant! Identify! Look at the images below and see if you can identify each fruit

More information

Lack of Credibility, Inflation Persistence and Disinflation in Colombia

Lack of Credibility, Inflation Persistence and Disinflation in Colombia Lack of Credibility, Inflation Persistence and Disinflation in Colombia Second Monetary Policy Workshop, Lima Andrés González G. and Franz Hamann Banco de la República http://www.banrep.gov.co Banco de

More information

Going Strong. Comparing Ratios. to Solve Problems

Going Strong. Comparing Ratios. to Solve Problems Going Strong Comparing Ratios 2 to Solve Problems WARM UP Use reasoning to compare each pair of fractions. 1. 6 7 and 8 9 2. 7 13 and 5 11 LEARNING GOALS Apply qualitative ratio reasoning to compare ratios

More information

Imputation of multivariate continuous data with non-ignorable missingness

Imputation of multivariate continuous data with non-ignorable missingness Imputation of multivariate continuous data with non-ignorable missingness Thais Paiva Jerry Reiter Department of Statistical Science Duke University NCRN Meeting Spring 2014 May 23, 2014 Thais Paiva, Jerry

More information

Team Davis Good Foods Lesson 2: Breakfast

Team Davis Good Foods Lesson 2: Breakfast I. INTRODUCTION (Emily ~10 min) Team Davis Good Foods Lesson 2: Breakfast OBJECTIVE: To warm up the group to the day s topic of breakfast. We will begin by talking about what kinds of foods they put on

More information

Testing Taste. FRAMEWORK I. Scientific and Engineering Practices 1,3,4,6,7,8 II. Cross-Cutting Concepts III. Physical Sciences

Testing Taste. FRAMEWORK I. Scientific and Engineering Practices 1,3,4,6,7,8 II. Cross-Cutting Concepts III. Physical Sciences Testing Taste FRAMEWORK I. Scientific and Engineering Practices 1,3,4,6,7,8 II. Cross-Cutting Concepts III. Physical Sciences SKILLS/OBJECTIVES In this activity, we will do two experiments involving taste

More information

Release #2461 Release Date: Thursday, February 20, 2014

Release #2461 Release Date: Thursday, February 20, 2014 THE FIELD POLL THE INDEPENDENT AND NON-PARTISAN SURVEY OF PUBLIC OPINION ESTABLISHED IN 1947 AS THE CALIFORNIA POLL BY MERVIN FIELD Field Research Corporation 601 California Street, Suite 900 San Francisco,

More information

5 Populations Estimating Animal Populations by Using the Mark-Recapture Method

5 Populations Estimating Animal Populations by Using the Mark-Recapture Method Name: Period: 5 Populations Estimating Animal Populations by Using the Mark-Recapture Method Background Information: Lincoln-Peterson Sampling Techniques In the field, it is difficult to estimate the population

More information

Food Allergies on the Rise in American Children

Food Allergies on the Rise in American Children Transcript Details This is a transcript of an educational program accessible on the ReachMD network. Details about the program and additional media formats for the program are accessible by visiting: https://reachmd.com/programs/hot-topics-in-allergy/food-allergies-on-the-rise-in-americanchildren/3832/

More information

ENGI E1006 Percolation Handout

ENGI E1006 Percolation Handout ENGI E1006 Percolation Handout NOTE: This is not your assignment. These are notes from lecture about your assignment. Be sure to actually read the assignment as posted on Courseworks and follow the instructions

More information

THE STATISTICAL SOMMELIER

THE STATISTICAL SOMMELIER THE STATISTICAL SOMMELIER An Introduction to Linear Regression 15.071 The Analytics Edge Bordeaux Wine Large differences in price and quality between years, although wine is produced in a similar way Meant

More information

Predicting Wine Quality

Predicting Wine Quality March 8, 2016 Ilker Karakasoglu Predicting Wine Quality Problem description: You have been retained as a statistical consultant for a wine co-operative, and have been asked to analyze these data. Each

More information

Coffee, Health & Consumption: Reaching Coffee Drinkers

Coffee, Health & Consumption: Reaching Coffee Drinkers Coffee, Health & Consumption: Reaching Coffee Drinkers Bill Murray, CAE President & CEO NCA USA For The International Coffee Organization April, 2018 Coffee & Health: Communicating the Message International

More information

Level 2 Mathematics and Statistics, 2016

Level 2 Mathematics and Statistics, 2016 91267 912670 2SUPERVISOR S Level 2 Mathematics and Statistics, 2016 91267 Apply probability methods in solving problems 9.30 a.m. Thursday 24 November 2016 Credits: Four Achievement Achievement with Merit

More information

Online Appendix to. Are Two heads Better Than One: Team versus Individual Play in Signaling Games. David C. Cooper and John H.

Online Appendix to. Are Two heads Better Than One: Team versus Individual Play in Signaling Games. David C. Cooper and John H. Online Appendix to Are Two heads Better Than One: Team versus Individual Play in Signaling Games David C. Cooper and John H. Kagel This appendix contains a discussion of the robustness of the regression

More information

2017 Summary of changes to rules for World Coffee In Good Spirits Championship

2017 Summary of changes to rules for World Coffee In Good Spirits Championship 2017 Summary of changes to rules for World Coffee In Good Spirits Championship To take effect in Budapest WCIGS 2017 For internal use only not to be used in replacement of the WCIGS Rules. Please refer

More information

CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University

CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University CS 322: (Social and Information) Network Analysis Jure Leskovec Stanford University Progress reports are due on Thursday! What do we expect from you? About half of the work should be done Milestone/progress

More information

MBA 503 Final Project Guidelines and Rubric

MBA 503 Final Project Guidelines and Rubric MBA 503 Final Project Guidelines and Rubric Overview There are two summative assessments for this course. For your first assessment, you will be objectively assessed by your completion of a series of MyAccountingLab

More information

Activity 2.3 Solubility test

Activity 2.3 Solubility test Activity 2.3 Solubility test Can you identify the unknown crystal by the amount that dissolves in water? In Demonstration 2a, students saw that more salt is left behind than sugar when both crystals are

More information

Directions: Read the passage. Then answer the questions below.

Directions: Read the passage. Then answer the questions below. READTHEORY Reading Comprehension 2 Level 7 Name Date Directions: Read the passage. Then answer the questions below. For two months, I have been trying to decide who makes the best ice cream. I have narrowed

More information

Statistics: Final Project Report Chipotle Water Cup: Water or Soda?

Statistics: Final Project Report Chipotle Water Cup: Water or Soda? Statistics: Final Project Report Chipotle Water Cup: Water or Soda? Introduction: For our experiment, we wanted to find out how many customers at Chipotle actually get water when they order a water cup.

More information

Wine On-Premise UK 2018

Wine On-Premise UK 2018 Wine On-Premise UK 2018 T H E M E N U Introduction... Page 5 The UK s Best On-Premise Distributors... Page 7 The UK s Most Listed Wine Brands... Page 17 The Big Picture... Page 26 The Style Mix... Page

More information

Big Green Lessons Germination: Kindergarten-2 nd Grade

Big Green Lessons Germination: Kindergarten-2 nd Grade Big Green Lessons Germination: Kindergarten-2 nd Grade Lesson Outcomes In this lesson, students will identify that seeds germinate and grow into plants. A seed is made up of different parts (cotyledon,

More information

Archdiocese of New York Practice Items

Archdiocese of New York Practice Items Archdiocese of New York Practice Items Mathematics Grade 8 Teacher Sample Packet Unit 1 NY MATH_TE_G8_U1.indd 1 NY MATH_TE_G8_U1.indd 2 1. Which choice is equivalent to 52 5 4? A 1 5 4 B 25 1 C 2 1 D 25

More information

What Is This Module About?

What Is This Module About? What Is This Module About? Do you enjoy shopping or going to the market? Is it hard for you to choose what to buy? Sometimes, you see that there are different quantities available of one product. Do you

More information

Decision making with incomplete information Some new developments. Rudolf Vetschera University of Vienna. Tamkang University May 15, 2017

Decision making with incomplete information Some new developments. Rudolf Vetschera University of Vienna. Tamkang University May 15, 2017 Decision making with incomplete information Some new developments Rudolf Vetschera University of Vienna Tamkang University May 15, 2017 Agenda Problem description Overview of methods Single parameter approaches

More information

Wine On-Premise UK 2016

Wine On-Premise UK 2016 Wine On-Premise UK 2016 T H E M E N U Introduction... Page 5 The UK s Best On-Premise Distributors... Page 7 The UK s Most Listed Wine Brands... Page 17 The Big Picture... Page 26 The Style Mix... Page

More information

DELIVERED FREE A FREE 2 LITER. FOR ONLY $ tax PIZZA MENU 16 X-L THIN CRUST PIZZA. UPTO 5 FREE Toppings Of your choice "CREATE YOUR OWN"

DELIVERED FREE A FREE 2 LITER. FOR ONLY $ tax PIZZA MENU 16 X-L THIN CRUST PIZZA. UPTO 5 FREE Toppings Of your choice CREATE YOUR OWN PIZZA MENU WE SERVE ONE STYLE, ONE SIZE OF PIZZA 16 X-L THIN CRUST PIZZA ALL PIZZA ORDERED COME WITH UPTO 5 FREE Toppings Of your choice & A FREE 2 LITER OF PEPSI OR DIET PEPSI DELIVERED FREE FOR ONLY

More information

Math Released Item Grade 5. Bean Soup M01289

Math Released Item Grade 5. Bean Soup M01289 Math Released Item 2016 Grade 5 Bean Soup M01289 Prompt Task is worth a total of 3 points. Rubric Bean Soup Score Description Student response includes the following 3 elements: 3 Computation point = 1

More information

SENIOR VCAL NUMERACY INVESTIGATION SENIOR VCAL NUMERACY INVESTIGATION Only A Little Bit Over. Name:

SENIOR VCAL NUMERACY INVESTIGATION SENIOR VCAL NUMERACY INVESTIGATION Only A Little Bit Over. Name: Instructions SENIOR VCAL NUMERACY INVESTIGATION 2013 SENIOR VCAL NUMERACY INVESTIGATION Only A Little Bit Over Name: This investigation is split into 3 Sections (A, B & C). You must ensure the following

More information

To: Professor Roger Bohn & Hyeonsu Kang Subject: Big Data, Assignment April 13th. From: xxxx (anonymized) Date: 4/11/2016

To: Professor Roger Bohn & Hyeonsu Kang Subject: Big Data, Assignment April 13th. From: xxxx (anonymized) Date: 4/11/2016 To: Professor Roger Bohn & Hyeonsu Kang Subject: Big Data, Assignment April 13th. From: xxxx (anonymized) Date: 4/11/2016 Data Preparation: 1. Separate trany variable into Manual which takes value of 1

More information

Research Background: Weedy radish is considered one of the world s

Research Background: Weedy radish is considered one of the world s Fast weeds in farmer's fields Featured scientists: Ashley Carroll from Gull Lake Middle School and Jeff Conner from the Kellogg Biological Station at Michigan State University Research Background: Weeds

More information

DISCRETE MATHEMATICS AND COUNTING DERANGEMENTS IN BLIND WINE TASTINGS

DISCRETE MATHEMATICS AND COUNTING DERANGEMENTS IN BLIND WINE TASTINGS ------------------------------------------------------------------------------ 4. EXPOSITORY ARTICLE DISCRETE MATHEMATICS AND COUNTING DERANGEMENTS IN BLIND WINE TASTINGS JOHN D. NYSTUEN College of Architecture

More information

FOOD ALLERGIES. React with Respect

FOOD ALLERGIES. React with Respect FOOD ALLERGIES React with Respect Some kids can get very sick when they eat certain foods. This is called a food allergy. If someone tells you they have a food allergy, you should react with respect. How

More information

The multivariate piecewise linear growth model for ZHeight and zbmi can be expressed as:

The multivariate piecewise linear growth model for ZHeight and zbmi can be expressed as: Bi-directional relationships between body mass index and height from three to seven years of age: an analysis of children in the United Kingdom Millennium Cohort Study Supplementary material The multivariate

More information

Sponsored by: Center For Clinical Investigation and Cleveland CTSC

Sponsored by: Center For Clinical Investigation and Cleveland CTSC Selected Topics in Biostatistics Seminar Series Association and Causation Sponsored by: Center For Clinical Investigation and Cleveland CTSC Vinay K. Cheruvu, MSc., MS Biostatistician, CTSC BERD cheruvu@case.edu

More information

Rock Candy Lab Series Boiling Point, Crystallization, and Saturation

Rock Candy Lab Series Boiling Point, Crystallization, and Saturation Name and Section: Rock Candy Lab Series Boiling Point, Crystallization, and Saturation You will do a series of short, mini-labs that will lead up to a lab in which you make your very own rock candy. The

More information

The Jawbreakers of the Popcorn Industry. By Mr. Mo COVER PAGE

The Jawbreakers of the Popcorn Industry. By Mr. Mo COVER PAGE The Jawbreakers of the Popcorn Industry By Mr. Mo COVER PAGE The Jawbreakers of the Popcorn Industry Problem: (headings should be 18-26 font size) Which brand off popcorn yields the least amount of un-popped

More information

Economics 101 Spring 2019 Answers to Homework #1 Due Thursday, February 7 th, Directions:

Economics 101 Spring 2019 Answers to Homework #1 Due Thursday, February 7 th, Directions: Economics 101 Spring 2019 Answers to Homework #1 Due Thursday, February 7 th, 2019 Directions: The homework will be collected in a box labeled with your TA s name before the lecture. Please place your

More information

Eukaryotic Comparative Genomics

Eukaryotic Comparative Genomics Eukaryotic Comparative Genomics Detecting Conserved Sequences Charles Darwin Motoo Kimura Evolution of Neutral DNA A A T C TA AT T G CT G T GA T T C A GA G T A G CA G T GA AT A GT C T T T GA T GT T G T

More information

MAMA SID'S PIZZA by Faith Goddard-Allen

MAMA SID'S PIZZA by Faith Goddard-Allen MAMA SID'S PIZZA by Faith Goddard-Allen The problem states: Every Friday night my friends and I go to Mama Sid's for dinner. If we want to order a different pizza every Friday for a whole year, how many

More information

ECO231 Chapter 2 Homework. Name: Date:

ECO231 Chapter 2 Homework. Name: Date: ECO231 Chapter 2 Homework Name: Date: 1. Specialization and trade can the per-unit cost of production because. A) decrease; it allows for more small-scale production. B) decrease; it creates economies

More information

1. Simplify the following expression completely, leaving no exponents remaining.

1. Simplify the following expression completely, leaving no exponents remaining. Team 4 GEM GEMS Team 1. Simplify the following expression completely, leaving no exponents remaining. 2 5! 2 3 2 4! 2 "3 2. The number 0. 9 represents a never-ending string of nines after the decimal

More information

Objective: Decompose a liter to reason about the size of 1 liter, 100 milliliters, 10 milliliters, and 1 milliliter.

Objective: Decompose a liter to reason about the size of 1 liter, 100 milliliters, 10 milliliters, and 1 milliliter. NYS COMMON CORE MATHEMATICS CURRICULUM Lesson 9 3 2 Lesson 9 Objective: Decompose a liter to reason about the size of 1 liter, 100 milliliters, 10 milliliters, and 1 milliliter. Suggested Lesson Structure

More information

Association Rule Mining

Association Rule Mining ICS 624 Spring 2013 Association Rule Mining Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 2/27/2013 Lipyeow Lim -- University of Hawaii at Manoa 1 The

More information

Missing value imputation in SAS: an intro to Proc MI and MIANALYZE

Missing value imputation in SAS: an intro to Proc MI and MIANALYZE Victoria SAS Users Group November 26, 2013 Missing value imputation in SAS: an intro to Proc MI and MIANALYZE Sylvain Tremblay SAS Canada Education Copyright 2010 SAS Institute Inc. All rights reserved.

More information

Predicting Fruitset Model Philip Schwallier, Amy Irish- Brown, Michigan State University

Predicting Fruitset Model Philip Schwallier, Amy Irish- Brown, Michigan State University Predicting Fruitset Model Philip Schwallier, Amy Irish- Brown, Michigan State University Chemical thinning is the most critical annual apple orchard practice. Yet chemical thinning is the most stressful

More information

Clash of Cultures: Two Worlds Collide By UShistory.org 2017

Clash of Cultures: Two Worlds Collide By UShistory.org 2017 Name: Class: Clash of Cultures: Two Worlds Collide By UShistory.org 2017 The Aztec empire was an advanced civilization that ruled in Mexico before Spanish explorers arrived. This informational text discusses

More information

PSYC 6140 November 16, 2005 ANOVA output in R

PSYC 6140 November 16, 2005 ANOVA output in R PSYC 6140 November 16, 2005 ANOVA output in R Type I, Type II and Type III Sums of Squares are displayed in ANOVA tables in a mumber of packages. The car library in R makes these available in R. This handout

More information

Summary of Main Points

Summary of Main Points 1 Model Selection in Logistic Regression Summary of Main Points Recall that the two main objectives of regression modeling are: Estimate the effect of one or more covariates while adjusting for the possible

More information

Holiday Meal. In the foodservice industry, preparing meals on a. Steps to a Safe and Successful FOOD PROTECTION CONNECTION

Holiday Meal. In the foodservice industry, preparing meals on a. Steps to a Safe and Successful FOOD PROTECTION CONNECTION FOOD PROTECTION CONNECTION 1 HOUR SAN Steps to a Safe and Successful Holiday Meal by Melissa Vaccaro, MS, CHO In the foodservice industry, preparing meals on a daily basis is routine. Schools, hospitals,

More information

RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS ABSTRACT

RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS ABSTRACT RELATIVE EFFICIENCY OF ESTIMATES BASED ON PERCENTAGES OF MISSINGNESS USING THREE IMPUTATION NUMBERS IN MULTIPLE IMPUTATION ANALYSIS Nwakuya, M. T. (Ph.D) Department of Mathematics/Statistics University

More information

MATH Section 5.4

MATH Section 5.4 MATH 1311 Section 5.4 Combining Functions There are times when different functions can be combined based on their individual properties. Very often, this will involve a limiting value (given as a linear

More information

Argument Paper, MLA Style (Zhang)

Argument Paper, MLA Style (Zhang) Argument Paper, MLA Style (Zhang) Zhang 1 Amy Zhang Professor Swain English 101 23 October XXXX Slow Down and Eat Better Drive on any highway in America and you ll find fast-food restaurants at every exit

More information

Lecture 9: Tuesday, February 10, 2015

Lecture 9: Tuesday, February 10, 2015 Com S 611 Spring Semester 2015 Advanced Topics on Distributed and Concurrent Algorithms Lecture 9: Tuesday, February 10, 2015 Instructor: Soma Chaudhuri Scribe: Brian Nakayama 1 Introduction In this lecture

More information

VTCSOM Wellness Weekly

VTCSOM Wellness Weekly V I R G I N I A T E C H C A R I L I O N S C H O O L O F M E D I C I N E VTCSOM Wellness Weekly V O L U M E 1, I S S U E 1 4 N O V E M B E R 2 5, 2 0 1 6 Cauliflower Crust Pizza T I P O F T H E W E E K

More information

PICA FAQS Page 1 of 5. Below are the answers to frequently asked questions from our members about the ESI administered PICA program.

PICA FAQS Page 1 of 5. Below are the answers to frequently asked questions from our members about the ESI administered PICA program. PICA FAQS Page 1 of 5 PICA FAQs CITY OF NEW YORK Psychotropic, Injectable, Chemotherapy and Asthma (PICA) Program Below are the answers to frequently asked questions from our members about the ESI administered

More information

Notes on the Philadelphia Fed s Real-Time Data Set for Macroeconomists (RTDSM) Capacity Utilization. Last Updated: December 21, 2016

Notes on the Philadelphia Fed s Real-Time Data Set for Macroeconomists (RTDSM) Capacity Utilization. Last Updated: December 21, 2016 1 Notes on the Philadelphia Fed s Real-Time Data Set for Macroeconomists (RTDSM) Capacity Utilization Last Updated: December 21, 2016 I. General Comments This file provides documentation for the Philadelphia

More information

wine 1 wine 2 wine 3 person person person person person

wine 1 wine 2 wine 3 person person person person person 1. A trendy wine bar set up an experiment to evaluate the quality of 3 different wines. Five fine connoisseurs of wine were asked to taste each of the wine and give it a rating between 0 and 10. The order

More information

INSTITUTE AND FACULTY OF ACTUARIES CURRICULUM 2019 SPECIMEN SOLUTIONS. Subject CS1B Actuarial Statistics

INSTITUTE AND FACULTY OF ACTUARIES CURRICULUM 2019 SPECIMEN SOLUTIONS. Subject CS1B Actuarial Statistics INSTITUTE AND FACULTY OF ACTUARIES CURRICULUM 2019 SPECIMEN SOLUTIONS Subject CS1B Actuarial Statistics Question 1 (i) # Data entry before

More information

Activity 10. Coffee Break. Introduction. Equipment Required. Collecting the Data

Activity 10. Coffee Break. Introduction. Equipment Required. Collecting the Data . Activity 10 Coffee Break Economists often use math to analyze growth trends for a company. Based on past performance, a mathematical equation or formula can sometimes be developed to help make predictions

More information

Markets for Breakfast and Through the Day

Markets for Breakfast and Through the Day 2 Markets for Breakfast and Through the Day Market design is so pervasive that it touches almost every facet of our lives, from the moment we wake up. The blanket you chose to sleep under, the commercial

More information

Building Reliable Activity Models Using Hierarchical Shrinkage and Mined Ontology

Building Reliable Activity Models Using Hierarchical Shrinkage and Mined Ontology Building Reliable Activity Models Using Hierarchical Shrinkage and Mined Ontology Emmanuel Munguia Tapia 1, Tanzeem Choudhury and Matthai Philipose 2 1 Massachusetts Institute of Technology 2 Intel Research

More information

Mini Project 3: Fermentation, Due Monday, October 29. For this Mini Project, please make sure you hand in the following, and only the following:

Mini Project 3: Fermentation, Due Monday, October 29. For this Mini Project, please make sure you hand in the following, and only the following: Mini Project 3: Fermentation, Due Monday, October 29 For this Mini Project, please make sure you hand in the following, and only the following: A cover page, as described under the Homework Assignment

More information

Candidate Name: Assessment Centre: Prepare, finish and present canapés and cocktail products. This Unit has the following element:

Candidate Name: Assessment Centre: Prepare, finish and present canapés and cocktail products. This Unit has the following element: This Unit has the following element: Element 1 (3FPC10.1) Candidate Name: Assessment Centre: I have completed the requirements of this Unit. Candidate signature: I can confirm the candidate has completed

More information

Name: Period: Number: OD-

Name: Period: Number: OD- Mr. O Donnell s Class Coffee D.B.Q. Name: Period: Number: OD- Historical Context: Throughout history man has sought the answers to many important questions. How many licks does it take to get to the center

More information

Online Appendix to Voluntary Disclosure and Information Asymmetry: Evidence from the 2005 Securities Offering Reform

Online Appendix to Voluntary Disclosure and Information Asymmetry: Evidence from the 2005 Securities Offering Reform Online Appendix to Voluntary Disclosure and Information Asymmetry: Evidence from the 2005 Securities Offering Reform This document contains several additional results that are untabulated but referenced

More information

2 nd Midterm Exam-Solution

2 nd Midterm Exam-Solution 2 nd Midterm Exam- اس تعن ابهلل وكن عىل يقني بأ ن لك ما ورد يف هذه الورقة تعرفه جيدا وقد تدربت عليه مبا فيه الكفاية Question #1: Answer the following with True or False: 1. The non-parametric input modeling

More information

Appendix Table A1 Number of years since deregulation

Appendix Table A1 Number of years since deregulation Appendix Table A1 Number of years since deregulation This table presents the results of -in-s models incorporating the number of years since deregulation and using data for s with trade flows are above

More information

Activity Sheet Chapter 6, Lesson 6 Using Chemical Change to Identify an Unknown

Activity Sheet Chapter 6, Lesson 6 Using Chemical Change to Identify an Unknown Activity Sheet Chapter 6, Lesson 6 Using Chemical Change to Identify an Unknown Name Date DEMONSTRATION 1. Your teacher poured iodine solution on top of two white powders. How do you know that these two

More information

Questionnaire on quality of life for pharmacoeconomic purposes

Questionnaire on quality of life for pharmacoeconomic purposes Pour remplir le questionnaire de façon électronique, vous pouvez utiliser le logiciel Adobe acrobat. Pour le télécharger gratuitement: https://get.adobe.com/fr/reader/ Oral immunotherapy clinic (OITC)

More information

Using the Forest to see the Trees: A computational model relating features, objects and scenes

Using the Forest to see the Trees: A computational model relating features, objects and scenes Using the Forest to see the Trees: A computational model relating features, objects and scenes Antonio Torralba CSAIL-MIT Joint work with Aude Oliva, Kevin Murphy, William Freeman Monica Castelhano, John

More information

THE MEAT PRODUCTS REGULATIONS 2003 SUMMARY GUIDANCE NOTES

THE MEAT PRODUCTS REGULATIONS 2003 SUMMARY GUIDANCE NOTES THE MEAT PRODUCTS REGULATIONS 2003 SUMMARY GUIDANCE NOTES These Guidance Notes are designed for bakers and similar small businesses that make and sell meat products. Comprehensive Guidance Notes covering

More information

Math Practice Use Operations

Math Practice Use Operations 5. Ratio Tables How can you find two ratios that describe the same relationship? ACTIVITY: Making a Mixture Work with a partner. A mixture calls for cup of lemonade and cups of iced tea. Lemonade de Iced

More information

Flexible Imputation of Missing Data

Flexible Imputation of Missing Data Chapman & Hall/CRC Interdisciplinary Statistics Series Flexible Imputation of Missing Data Stef van Buuren TNO Leiden, The Netherlands University of Utrecht The Netherlands crc pness Taylor &l Francis

More information

8 ROOKIE CANNING MISTAKES (And How You Can Overcome Them)

8 ROOKIE CANNING MISTAKES (And How You Can Overcome Them) 8 ROOKIE CANNING MISTAKES (And How You Can Overcome Them) After all my years of teaching people how to can and preserve food, I ve found that sometimes a few simple mistakes can prevent canning success.

More information

Candidate Name: Assessment Centre: Cook, finish and present flour, dough and tray-baked. This Unit has the following elements: products

Candidate Name: Assessment Centre: Cook, finish and present flour, dough and tray-baked. This Unit has the following elements: products This Unit has the following elements: Element 1 (2P & C3.1) Element 2 (2P & C3.2) Prepare flour, dough and tray-bake products Cook, finish and present flour, dough and tray-baked products Candidate Name:

More information

Can You Tell the Difference? A Study on the Preference of Bottled Water. [Anonymous Name 1], [Anonymous Name 2]

Can You Tell the Difference? A Study on the Preference of Bottled Water. [Anonymous Name 1], [Anonymous Name 2] Can You Tell the Difference? A Study on the Preference of Bottled Water [Anonymous Name 1], [Anonymous Name 2] Abstract Our study aims to discover if people will rate the taste of bottled water differently

More information

Online Appendix for. To Buy or Not to Buy: Consumer Constraints in the Housing Market

Online Appendix for. To Buy or Not to Buy: Consumer Constraints in the Housing Market Online Appendix for To Buy or Not to Buy: Consumer Constraints in the Housing Market By Andreas Fuster and Basit Zafar, Federal Reserve Bank of New York 1. Main Survey Questions Highlighted parts correspond

More information

Economics Homework 4 Fall 2006

Economics Homework 4 Fall 2006 Economics 31 - Homework 4 Fall 26 Stacy Dickert-Conlin Name Due: October 12, at the start of class Three randomly selected questions will be graded for credit. All graded questions are worth 1 points.

More information

Final Exam Financial Data Analysis (6 Credit points/imp Students) March 2, 2006

Final Exam Financial Data Analysis (6 Credit points/imp Students) March 2, 2006 Dr. Roland Füss Winter Term 2005/2006 Final Exam Financial Data Analysis (6 Credit points/imp Students) March 2, 2006 Note the following important information: 1. The total disposal time is 60 minutes.

More information

Mr Coffee Iced Tea Maker Instructions How Many Tea Bags

Mr Coffee Iced Tea Maker Instructions How Many Tea Bags Mr Coffee Iced Tea Maker Instructions How Many Tea Bags mrcoffee.com/specialty/iced-tea/iced-tea-maker-3-qt/tm.html. TM Use tea bags or tea leaves to create refreshing iced tea drinks, whether you prefer

More information

Candidate Name: Assessment Centre: This Unit has the following element: Prepare, cook and finish basic rice dishes. Candidate signature:

Candidate Name: Assessment Centre: This Unit has the following element: Prepare, cook and finish basic rice dishes. Candidate signature: This Unit has the following element: Element 1 (2FPC4.1) Candidate Name: Assessment Centre: I have completed the requirements of this Unit. Candidate signature: I can confirm the candidate has completed

More information

Interpret and Compute Quotients of Fractions - Step-by-Step Lesson

Interpret and Compute Quotients of Fractions - Step-by-Step Lesson Interpret and Compute Quotients of Fractions - Step-by-Step Lesson Lesson 1 Fraction Problem: 1. How many 3/4-cup servings are in 3/2 cups of coffee? Explanation: Step 1) First we look to see what is being

More information

-- CS341 info session is on Thu 3/18 7pm in Gates Final exam logistics

-- CS341 info session is on Thu 3/18 7pm in Gates Final exam logistics -- CS341 info session is on Thu 3/18 7pm in Gates104 -- Final exam logistics CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu 3/10/2014 Jure Leskovec, Stanford

More information

Laboratory Performance Assessment. Report. Analysis of Pesticides and Anthraquinone. in Black Tea

Laboratory Performance Assessment. Report. Analysis of Pesticides and Anthraquinone. in Black Tea Laboratory Performance Assessment Report Analysis of Pesticides and Anthraquinone in Black Tea May 2013 Summary This laboratory performance assessment on pesticides in black tea was designed and organised

More information

Panel A: Treated firm matched to one control firm. t + 1 t + 2 t + 3 Total CFO Compensation 5.03% 0.84% 10.27% [0.384] [0.892] [0.

Panel A: Treated firm matched to one control firm. t + 1 t + 2 t + 3 Total CFO Compensation 5.03% 0.84% 10.27% [0.384] [0.892] [0. Online Appendix 1 Table O1: Determinants of CMO Compensation: Selection based on both number of other firms in industry that have CMOs and number of other firms in industry with MBA educated executives

More information

Algorithms in Percolation. Problem: how to identify and measure cluster size distribution

Algorithms in Percolation. Problem: how to identify and measure cluster size distribution Algorithms in Percolation Problem: how to identify and measure cluster size distribution 1 Single-Cluster growth Leath-Alexandrowicz method Paul Leath Rutgers University P. L. Leath, Phys. Rev. B 14, 5046

More information