Introduction to Causal Inference. Solutions to Problem Set 1. Required Problems

Size: px
Start display at page:

Download "Introduction to Causal Inference. Solutions to Problem Set 1. Required Problems"

Transcription

1 Introduction to Causal Inference Solutions to Problem Set 1 Professor: Teppei Yamamoto Due Friday, July 15 (at beginning of class) Only the required problems are due on the above date. The optional problems will not directly count toward your grade, though you are encouraged to complete them as your time permits. If you choose not to work on the optional problems, use them for your self-study during the summer vacation. Required Problems Problem 1 Supposed that you have a random sample of size n from the population of interest. Answer the following questions that are designed to help you get familiar with potential outcomes. Try to keep your answers brief and your language precise. Throughout the problem, assume that the Stable Unit Treatment Value Assumption (SUTVA) holds. (a) Explain the notation Y i (0). The potential outcome for subject i if this subject were untreated. Another way to put it: the untreated potential outcome for subject i. (b) Contrast the meaning of Y i (0) with the meaning of Y i. The first is the potential outcome for subject i if this subject were untreated. The second is simply the observed outcome for subject i. (c) Contrast the meaning of Y i (0) with the meaning of Y i (1). Is it ever possible to observe both at the same time? Why? The first is the potential outcome for i under control. The second is the potential outcome for i under treatment. In any moment, only one of the two potential outcomes for i can be realized. A subject cannot be under control and treatment simultaneously, so observing both potential outcomes is not possible. This is known as the fundamental problem of causal inference. 1

2 (d) Explain the notation E[Y i (0) D i = 1], where D i is a binary variable that gives the treatment status for subject i, 1 if treated, 0 if control. The expected value of the potential outcome for subject i if the subject were untreated, given that this subject actually receives treatment. Another way to put it: the expected value of the untreated potential outcome for a subject in the treatment group. (e) Contrast the meaning of E[Y i (0)] with the meaning of E[Y i D i = 0]. The first is the expected value of the untreated potential outcome for subject i; the second is the expected value of observed outcomes for subject i, given that they were untreated. (f) Contrast the meaning of E[Y i (0) D i = 1] with the meaning of E[Y i (0) D i = 0]. The first is the expected value of the untreated potential outcome for a subject who actually receives treatment; the second is the expected value of the untreated potential outcome for a subject who is in fact untreated. (g) Which of the following quantities (that you explained in parts (d) through (f)) can be identified from observed information? Do not make any additional assumptions about the distributions of Y or D, except the SUTVA and also that there is at least one observation with D i = 1, and at least one with D i = 0 in the observed data. E[Y i (0) D i = 1] (1) E[Y i (0)] (2) E[Y i D i = 0] (3) E[Y i (0) D i = 0] (4) We can identify (3) E[Y i D i = 0] and (4) E[Y i (0) D i = 0]. Note also that under the Stable Unit Treatment Value Assumption (SUTVA), these two quantities are equal. (h) Now, assume that D i is randomly assigned to the units in this sample. Which of the above quantities can be identified from the observed data? Now we can also identify both (1) and (2) as E[Y i D i = 0]. Problem 2 This problem is for those of you who are unfamiliar with R, which we will use throughout the rest of the course in lectures and problem sets. If you are already comfortable using R, skip this problem and proceed to Problem If you haven t, download and install R and RStudio on your own computer. Make sure to choose the right versions for your operating system. 2

3 2. Complete Lesson 1 on this website. That is, you should watch each of the video tutorials (Parts 1.1 to 1.6) and complete all the swirl quizzes. (You will be able to find out how to install and use swirl by following the links on the above website.) As proof of your hard work, type the following directly in your console after you complete all the swirl quizzes: > savehistory(file = "pset1prob3.txt") and submit the file along with your problem set answers. Problem 3 This problem is designed for those of you who are already familiar with R and need a quick review of key concepts and operations. If you are new to R and just getting started with it, this problem is optional for you. 1. Using the data given below, answer the following questions in R. Major Foreign Holders of U.S. Treasury Securities Country Dec2007 Dec2006 Dec2005 Dec2004 Dec2003 Japan China, Mainland United Kingdom Oil Exporters Brazil Caribbean Banking Centers All Others Total Total Public Debt Outstanding Year Debt Held by the Public Intra-governmental Holdings Total Dec Dec Dec Dec Dec (a) How much did the debt held by the public increase from 2003 to 2007? What proportion of this new debt was bought up by foreigners? What proportion of the new debt was bought up by the Chinese? 3

4 increase < increase foreign.increase < foreign.increase / increase China.increase < China.increase / increase (b) What proportion of U.S. Treasury Securities held by foreigners in 2007 were held by the top six countries/groupings? top < top / (c) As a percentage, what is the nominal increase in holdings from 2003 to 2007 of these six countries/groupings as a group? What if we exclude Japan? top < (top top6.2003) / top * 100 top minus.japan < top minus.japan < (top minus.japan - top minus.japan) / top minus.japan * 100 (d) Create a vector of the percentage changes for each country from 2003 to Be sure to include names indicating which value corresponds to which country. top.2003 <- c(550.8, 159.0, 82.2, 42.6, 11.8, 47.3) top.2007 <- c(581.2, 477.6, 158.1, 137.9, 129.9, 116.4) percentages <- (top top.2003) / top.2003 * 100 names(percentages) <- c("japan", "China, Mainland", "United Kingdom", "Oil Exporters", "Brazil", "Caribbean Banking Centers") percentages (e) Repeat the exercises in parts (b) and (c) using the vectors you have just created. Use sum() and indices. sum(top.2007) / (sum(top.2007) - sum(top.2003)) / sum(top.2003) (sum(top.2007[-1]) - sum(top.2003[-1])) / sum(top.2003[-1]) (f) What was the ratio of debt held by the public relative to intra-governmental government holdings, for each year ? When did this ratio hit it s high point and low point? Make sure to include year labels. 4

5 public <- c(4044.2, , , , ) gov.holdings <- c(2953.7, , , , ) ratio.pub.gov <- public / gov.holdings names(ratio.pub.gov) <- 2003:2007 ratio.pub.gov 2. (a) Download the Middle East dataset available on the course website and save it to some convenient location. Change your working directory via setwd() or using the pulldown menu to the directory in which you saved the data. Read the data using the read.csv("filename.csv") command. How many observations (countries) are there? How many variables? [Don t just count off the screen. Imagine we were working with a much larger dataset.] ME <- read.csv("middleeast.csv") dim(me) Thus, the number of observations is 13 and the number of variables is 9. (b) Create a new variable in the data frame that equals GDP per capita in each country, and calculate the mean GDP per capita in the entire region. ME$GDP.pc <- ME$GDP / ME$Population mean(me$gdp.pc) # Create the GDP per capita variable. (c) What is the class of the religion variable? If it is not already a character string, coerce the plurality religion for each country to a character string. class(me$religion) ME$Religion <- as.character(me$religion) (d) You can use negative indices to remove rows or columns from objects. For example, X[-1,] will give you the matrix X less its first row. Using this trick, remove the capital and currency variables from the dataset. names(me) # Retrieve the variable names ME <- ME[,-c(5,7)] # Use negative indices # Can also do: # ME <- ME[,c(1:4,6,8:10)] # ME <- subset(me, select=-c(5,7)) ME (e) How many of these countries have an HDI value above 0.75? (Hint: The sum(x) function counts up the number of TRUEs in x if x is a logical vector.) 5

6 sum(me$hdi > 0.75) (f) How many of these countries have both a density equal to or above 35 and a population above 10 million? sum(me$density >= 35 & ME$Population > ) (g) Create a new variable within the Middle East dataset indicating whether each country has a high (above 0.75) or low HDI value. ME$hdi.hi <- ME$HDI > 0.75 ME$hdi.hi (h) Create a new dataset consisting of just the high HDI countries. ME.high.hdi <- ME[ME$hdi.hi==TRUE,] # or ME.high.hdi <- subset(me, hdi.hi==true) ME.high.hdi (i) The save.image function allows you to save your workspace into a file so you can retrieve your work later on. Use the following syntax to save your objects in your working directory: save.image(file = "nameyoulike.rdata"). (You can also do the same via RStudio s drop-down menu.) Now, close RStudio (don t forget to save your code as well!), reopen it, and load the saved workspace using the load function. save.image(file="middleeast.rdata") # close RStudio, reopen it, and type load(file="middleeast.rdata") Problem A Optional Problems You and some colleagues are conducting an intervention in Ghana s 2016 election 1. Your goal is to assess the effect of deploying a new biometric voting machine on the incidence of electoral fraud at polling stations. Though Ghana is made up of 275 constituencies, due to the political context you are only allowed to perform your experiment within one constituency. Unconcerned, you and your team randomly select eight polling stations in the constituency, and among the eight, randomly 1 This problem is loosely inspired by true events. If you are interested in the substantive or methodological issues, see Asunka et al

7 assign half to receive the new voting machines and the other to serve as a control group. D i gives the resulting treatment status for each polling station i, for i {1,..., N}, where D i {0, 1} and N = 8. The outcome of interest is the percentage of votes in a polling station attributable to fraud, Y i. a) Assume that both parts of SUTVA hold. Calculate, explaining your answer: i) For each polling station i, the number of potential outcomes that can be defined; ii) For each polling station i, the number of unit treatment effects that can be defined; and, iii) For the sample of polling stations, the number of (unconditional) average treatment effect estimands that can be defined. Throughout this problem we will see questions like those above. There is a general approach to them, which we introduce here. i) For each i we can write a potential outcome Y i (D i ). Given D i = {0, 1}, there are two potential outcomes for i, Y i (0) and Y i (1). ii) A unit (or individual) treatment effect is the difference between two potential outcomes for a given unit. With only two potential outcomes per unit, there is one unit treatment effect, Y i (1) Y i (0), for each unit. iii) Similarly, an average treatment effect is the difference between the mean outcome for units in one condition and the mean outcome for units under another condition. Because there is only one unit treatment effect defined per unit i, there is only one unconditional average treatment effect: E[Y (1) Y (0)]. (One unconditional average treatment effect, because as discussed in class, we can also define the average treatment effect among the treated units, E[Y (1) Y (0) D = 1], among the control units, E[Y (1) Y (0) D = 0], and among subsets of units conditional on values of some variable X, E[Y (1) Y (0) X = x].) b) A Ghanaian political insider gets wind of your study, and gives you some information. She says that because all of the polling stations in your study are within one small constituency, there will be interference between units. She explains how interference might occur in this case: In Ghana, the political operatives in each polling station who are responsible for committing fraud will move elsewhere if their efforts are frustrated. Their range of movement is predetermined by the geographic influence of the party bosses. Local conditions are such that the operatives in each polling station can only move to one, and only one, other polling station, as shown in Figure 1. 7

8 Figure 1: Operatives may move to only one other polling station, as indicated by the arrows (for example, from the second to third polling station, but not the reverse). Given this structure, answer again questions (i) - (iii). To fully understand the answer to this question, recall from class that an assumption often (almost always) invoked in causal inference is that observed outcomes for each unit are unaffected by the treatment status of other units. (This is one part of the the stable unit treatment value assumption, or SUTVA.) Intereference between units means that this is not true: assigning one unit to treatment or control may affect the outcome for another unit. Formally, interference can be ruled out if the following is true: Y (D1,D 2,...,D N )i = Y (D 1,D 2,...,D N )i if D i = D i, i. In the case of interference, intuitively this equation means the following. For any sample of N units, k of which are treated (and N k control), there are ( ) N k possible treatment vectors (different ways treatment could be assigned between all the units). The equality above implies that for any of these ( ) N k treatment vectors, the potential outcomes of unit i remain constant. We will use this insight to answer the question about potential outcomes. The actual solutions are as follows: i) The potential outcomes for each i now depend on the treatment status of its neighbors; we can write these potential outcomes as Y i (D i, D i+1 ). (Compare this to the previous answer.) D i is dichotomous, so the number of potential outcomes we can define for each i is now 2 2 = 4. ii) We noted earlier that an unit treatment effect is the difference between two potential outcomes for a given unit. We could define a single unit treatment effect given two 8

9 potential outcomes per unit. Now, with four potential outcomes per unit, the number of differences that we can take is an n-choose-k problem: we can define ( 4 2) = 6 unit treatment effects. iii) As before, the number of average and unit treatment effects that we can define is the same. If there are six unit treatment effects, there are also six average treatment effects. c) Your funder is keen to spend their budget, and demands that you field the intervention as described originally: N = 8, and for D i = {0, 1}, N i=1 D i = 4. You set aside your concerns, and observe the data in Table 1 on the percentage of votes in each polling station attributable to fraud. Table 1: Observed Data: Treatment and Ballot Stuffing Unit D i Y i 1 1 4% 2 1 2% 3 0 8% 4 1 9% % % 7 0 4% 8 1 1% Write out an appropriate estimator for the average treatment effect (ATE) given SUTVA. Drawing on your insights so far and your knowledge of causal inference, under what conditions will this estimator be unbiased? Apply it to the data and compute an estimate of the effect of the new biometric voting machines on the incidence of fraud. An appropriate estimator for the ATE is the difference in the expected values of observed outcomes in each condition: E[Y (1) D = 1] E[Y (0) D = 0]. (Notice how this differs from E[Y (1)] E[Y (0)], which defines the estimand.) The estimator will be unbiased so long as (1) treatment assignment is independent of potential outcomes, (2) there is no interference between units, and (3) the treatment itself (though not necessarily the effect) is stable across units. As seen in class, (1) will be satisfied under random assignment of treatment. The difference between (2) and (3) is important. (2) simply requires that, as outlined above, the potential outcomes of each unit are not affected by the treatment status of other units. (3) requires that treatment is uniform in substance and application across all observations. In a drug trial with treatment and control conditions, for instance, (3) could mean that the treated and control subjects all get exactly the same dosage or lack of dosage, respectively, for exactly the same drug. In social science applications like the one in this problem set, satisfying (3) can sometimes be challenged by implementing partners who tailor treatments to particular places as they see fit. 9

10 We compute our estimate as the difference in observed mean outcomes among treated and control units: sum(4, 2, 9, 1)/4 - sum(8, 12, 13, 4)/4 d) Given that you know the structure of the interference network, you believe you may be able to rescue something from the study. Using Figure 1, translate Table 1 into a table formatted like Table 2, where the latter columns give Y i (D i, D i 1 ) for the combinations of possible values for D i and D i 1. (And for i = 1, Y 1 (D 1, D 8 ), per Figure 1). Where you can, fill the cells of your table with values from Table 1; leave blank the cells representing unobserved potential outcomes. Table 2: Observed and Unobserved Potential Outcomes Unit D i D i 1 Y i (1, 1) Y i (1, 0) Y i (0, 1) Y i (0, 0) 1. 8 Table 3: Solution: Observed and Unobserved Potential Outcomes Unit D i D i 1 Y i (1, 1) Y i (1, 0) Y i (0, 1) Y i (0, 0) % % % % % % % % e) Formally express each of the estimands described below using potential outcomes; propose appropriate estimators for each; and finally estimate them with the help of your new table. i) The ATE, conditional on a neighbor taking treatment. ii) The ATE, conditional on a neighbor taking control. iii) The magnitude of effect modification due to assignment of treatment to a neighboring unit. i) Estimand: E[Y (1, 1) Y (0, 1)] Estimator: E[Y (1, 1) D i = 1, D i 1 = 1] E[Y (0, 1) D i = 0, D i 1 = 1] Estimate: 3% - 10% = -7% 10

11 ii) Estimand: E[Y (1, 0) Y (0, 0)] Estimator: E[Y (1, 0) D i = 1, D i 1 = 0] E[Y (0, 0) D i = 0, D i 1 = 0] Estimate: 5% - 8.5% = -3.5% iii) Estimand: E[Y (1, 1) Y (0, 1)] E[Y (1, 0) Y (0, 0)] [ Estimator: E[Y (1, 1) D i = 1, D i 1 = 1] E[Y (0, 1) D i = 0, D i 1 = 1] [E[Y (1, 0) D i = ] 1, D i 1 = 0] E[Y (0, 0) D i = 0, D i 1 = 0] Estimate: -7% + 3.5% = -3.5% Note: Key to the estimands being ATEs (and not, say ATTs or ATCs) is that our experimental design actually controls interference. That is, because we see the entire network of connections, and randomly allocate treatment/control to every unit in the network, we know that not just the treatment but also the presence of a treated neighbor is random. f) Having heard about your complicated experimental design, a colleague approaches you for advice about a potential field experiment. Their experiment, which randomizes the provision of information about the quality of schooling, will be conducted in a dense urban area. Treatment is to be assigned at the household level. After questioning your colleague extensively, you ascertain that the structure of the urban area can be described by a ring lattice network with the number of households given by N, and the interconnectedness of the households given by degree d: Figure 2: Households and connections between households in the village. This example has N = 6, where N represents the nodes or units, and d = 4, where d represents the degrees of the network, or how many connections each node/unit has to other nodes/units Figure 2 implies that any household in the village is connected to the four (d = 4) nearest households, so that interference can be ruled out between households that are three or more lots apart. We can rule out interference between any households not immediately connected by an edge. Given this setup, and given N > d, answer the following: i) For each household j, give the number of potential outcomes that can be defined. ii) For each household j, give the number of unit treatment effects that can be defined. 11

12 iii) Imagine now that the experimental intervention is no longer binary, but ternary. It comprises two distinct treatments and a control. In this scenario, how many potential outcomes are there for each j? And how many unit treatment effects? iv) Assume that as N increases the structure of the households continues to follow an expanding ring lattice as shown in figure 2, where the number of connections is still defined by d, for any d < N. In terms of k, the number of levels of treatment (e.g., k = 2 if treatment is binary), and d, the number of degrees in the ring lattice network, write down a general expression for M k,d, the number of unique unit treatment effects for any given unit j. An increase in which parameter, k or d, has worse implications for the tractability of a study? i) The potential outcomes for unit j are given by Y j (D j, D i 2, D i 1, D j+1, D j+2 ), which gives us 2 5 = 32 potential outcomes for each unit. ii) As before, we can calculate the number of UTEs as an n-choose-k problem: ( ) 32 2 = 496 iii) Potential outcomes for each unit j are now given by 3 5 = 243. There are now ( ) = unique UTEs for each unit j. iv) In this setting, a general expression for the number of unique UTEs for each unit j is M k,d = ( ) k d+1 2. Clearly d is the problematic parameter: increasing d increases the number of unique UTEs exponentially, while increasing k does not. Problem B This problem will introduce you to directed acyclic graphs (DAGs), and reasoning about them. Consider the following two DAGs, in which X, Y, and Z are observed, and U a and U b are hypothesized but unobserved. U a U b U a U b X D Z X Y Z X Y Figure 3: Causal Graph A Figure 4: Causal Graph B a) List all of the nodes in Graph A. b) List all of the edges in Graph A. c) List each path terminating at Y that exists in Graph A, and repeat for Graph B. Interpret the differences between graphs. 12

13 d) Explain the relationship between X D and X in Graph B. e) Is the relationship between X and Y identified in Graph B? Why? f) Assuming D i {0, 1}, write down the ATE of X on Y for Causal Graph B using the notation introduced in class. a) X, Y, Z, U A, U B. b) X Y, X Z, X U B, Y U B, Z U A. You could represent these pairs in any order, that is, switch the first and second nodes while also flipping the arrow. You simply need to preserve the directionality of the relationship. c) In Graph A, the paths that terminate at Y are: Z X Y, Z X U b Y, X Y, X U b Y, U b X Y, U a Z X Y, U b Y, and U a Z X U b Y. By contrast, in Graph B they are: X Y and U b Y. In Graph B, the edges connecting Z and X and U b and X have been severed by the do(x D ) operator, which exogenously sets X to particular values of D. d) X has been exogenously set to particular values by the do(x D ) operator. That is, there are values of X that can be exogenously set by assigning D to some value. In graph B this has been applied. e) In Graph B the relationship between X and Y is identified. This results from the use of the do(x D ) operator, which means that there is no unobserved variable that correlates with both X and Y. f) AT E = E[Y do(x 1 )] E[Y do(x 0 )] 13

Statistical Models for Causal Analysis

Statistical Models for Causal Analysis Statistical Models for Causal Analysis Teppei Yamamoto Keio University Introduction to Causal Inference Spring 2016 Three Modes of Statistical Inference 1. Descriptive Inference: summarizing and exploring

More information

Potential Outcomes and Causal Inference

Potential Outcomes and Causal Inference Potential Outcomes and Causal Inference PUBL0050 Week 1 Jack Blumenau Department of Political Science UCL 1 / 47 Lecture outline Causality and Causal Inference Course Outline and Logistics The Potential

More information

EXAMINATION: QUANTITATIVE EMPIRICAL METHODS. Yale University. Department of Political Science

EXAMINATION: QUANTITATIVE EMPIRICAL METHODS. Yale University. Department of Political Science EXAMINATION: QUANTITATIVE EMPIRICAL METHODS Yale University Department of Political Science January 2014 You have seven hours (and fifteen minutes) to complete the exam. You can use the points assigned

More information

Regression Analysis in R

Regression Analysis in R Regression Analysis in R 1 Purpose The purpose of this activity is to provide you with an understanding of regression analysis and to both develop and apply that knowledge to the use of the R statistical

More information

Research Note: A more powerful test statistic for reasoning about interference between units

Research Note: A more powerful test statistic for reasoning about interference between units Research Note: A more powerful test statistic for reasoning about interference between units Jake Bowers Mark Fredrickson Peter M. Aronow August 26, 2015 Abstract Bowers, Fredrickson and Panagopoulos (2012)

More information

Introduction to Causal Inference. Solutions to Quiz 4

Introduction to Causal Inference. Solutions to Quiz 4 Introduction to Causal Inference Solutions to Quiz 4 Teppei Yamamoto Tuesday, July 9 206 Instructions: Write your name in the space provided below before you begin. You have 20 minutes to complete the

More information

Randomized Experiments

Randomized Experiments Randomized Experiments Teppei Yamamoto Keio University Introduction to Causal Inference Spring 2016 1 Introduction 2 Identification 3 Basic Inference 4 Covariate Adjustment 5 Threats to Validity 6 Advanced

More information

Calculus with business applications, Lehigh U, Lecture 03 notes Summer

Calculus with business applications, Lehigh U, Lecture 03 notes Summer Calculus with business applications, Lehigh U, Lecture 03 notes Summer 01 1 Lines and quadratics 1. Polynomials, functions in which each term is a positive integer power of the independent variable include

More information

Introduction to Causal Calculus

Introduction to Causal Calculus Introduction to Causal Calculus Sanna Tyrväinen University of British Columbia August 1, 2017 1 / 1 2 / 1 Bayesian network Bayesian networks are Directed Acyclic Graphs (DAGs) whose nodes represent random

More information

let s examine pupation rates. With the conclusion of that data collection, we will go on to explore the rate at which new adults appear, a process

let s examine pupation rates. With the conclusion of that data collection, we will go on to explore the rate at which new adults appear, a process Population Dynamics and Initial Population Size (Module website: http://web.as.uky.edu/biology/faculty/cooper/population%20dynamics%20examples%20 with%20fruit%20flies/theamericanbiologyteacher-populationdynamicswebpage.html

More information

ARTNeT Interactive Gravity Modeling Tool

ARTNeT Interactive Gravity Modeling Tool Evidence-Based Trade Policymaking Capacity Building Programme ARTNeT Interactive Gravity Modeling Tool Witada Anukoonwattaka (PhD) UNESCAP 26 July 2011 Outline Background on gravity model of trade and

More information

CHAPTER 1: Preliminary Description of Errors Experiment Methodology and Errors To introduce the concept of error analysis, let s take a real world

CHAPTER 1: Preliminary Description of Errors Experiment Methodology and Errors To introduce the concept of error analysis, let s take a real world CHAPTER 1: Preliminary Description of Errors Experiment Methodology and Errors To introduce the concept of error analysis, let s take a real world experiment. Suppose you wanted to forecast the results

More information

Causal inference in multilevel data structures:

Causal inference in multilevel data structures: Causal inference in multilevel data structures: Discussion of papers by Li and Imai Jennifer Hill May 19 th, 2008 Li paper Strengths Area that needs attention! With regard to propensity score strategies

More information

module, with the exception that the vials are larger and you only use one initial population size.

module, with the exception that the vials are larger and you only use one initial population size. Population Dynamics and Space Availability (http://web.as.uky.edu/biology/faculty/cooper/population%20dynamics%20examples%2 0with%20fruit%20flies/TheAmericanBiologyTeacher- PopulationDynamicsWebpage.html

More information

CS103 Handout 12 Winter February 4, 2013 Practice Midterm Exam

CS103 Handout 12 Winter February 4, 2013 Practice Midterm Exam CS103 Handout 12 Winter 2012-2013 February 4, 2013 Practice Midterm Exam This midterm exam is open-book, open-note, open-computer, but closed-network. This means that if you want to have your laptop with

More information

Difference-in-Differences Methods

Difference-in-Differences Methods Difference-in-Differences Methods Teppei Yamamoto Keio University Introduction to Causal Inference Spring 2016 1 Introduction: A Motivating Example 2 Identification 3 Estimation and Inference 4 Diagnostics

More information

Rotational Dynamics. Goals and Introduction

Rotational Dynamics. Goals and Introduction Rotational Dynamics Goals and Introduction In translational dynamics, we use the quantities displacement, velocity, acceleration, mass and force to model the motion of objects. In that model, a net force

More information

Econ A Math Survival Guide

Econ A Math Survival Guide Econ 101 - A Math Survival Guide T.J. Rakitan Teaching Assistant, Summer Session II, 013 1 Introduction The introductory study of economics relies on two major ways of thinking about the world: qualitative

More information

P P P NP-Hard: L is NP-hard if for all L NP, L L. Thus, if we could solve L in polynomial. Cook's Theorem and Reductions

P P P NP-Hard: L is NP-hard if for all L NP, L L. Thus, if we could solve L in polynomial. Cook's Theorem and Reductions Summary of the previous lecture Recall that we mentioned the following topics: P: is the set of decision problems (or languages) that are solvable in polynomial time. NP: is the set of decision problems

More information

Designing a Quilt with GIMP 2011

Designing a Quilt with GIMP 2011 Planning your quilt and want to see what it will look like in the fabric you just got from your LQS? You don t need to purchase a super expensive program. Try this and the best part it s FREE!!! *** Please

More information

Section 20: Arrow Diagrams on the Integers

Section 20: Arrow Diagrams on the Integers Section 0: Arrow Diagrams on the Integers Most of the material we have discussed so far concerns the idea and representations of functions. A function is a relationship between a set of inputs (the leave

More information

Front-Door Adjustment

Front-Door Adjustment Front-Door Adjustment Ethan Fosse Princeton University Fall 2016 Ethan Fosse Princeton University Front-Door Adjustment Fall 2016 1 / 38 1 Preliminaries 2 Examples of Mechanisms in Sociology 3 Bias Formulas

More information

Foundations of Computation

Foundations of Computation The Australian National University Semester 2, 2018 Research School of Computer Science Tutorial 1 Dirk Pattinson Foundations of Computation The tutorial contains a number of exercises designed for the

More information

ECEN 651: Microprogrammed Control of Digital Systems Department of Electrical and Computer Engineering Texas A&M University

ECEN 651: Microprogrammed Control of Digital Systems Department of Electrical and Computer Engineering Texas A&M University ECEN 651: Microprogrammed Control of Digital Systems Department of Electrical and Computer Engineering Texas A&M University Prof. Mi Lu TA: Ehsan Rohani Laboratory Exercise #4 MIPS Assembly and Simulation

More information

Lesson 8: Why Stay with Whole Numbers?

Lesson 8: Why Stay with Whole Numbers? Student Outcomes Students use function notation, evaluate functions for inputs in their domains, and interpret statements that use function notation in terms of a context. Students create functions that

More information

The Causal Inference Problem and the Rubin Causal Model

The Causal Inference Problem and the Rubin Causal Model The Causal Inference Problem and the Rubin Causal Model Lecture 2 Rebecca B. Morton NYU Exp Class Lectures R B Morton (NYU) EPS Lecture 2 Exp Class Lectures 1 / 23 Variables in Modeling the E ects of a

More information

Treatment Effects. Christopher Taber. September 6, Department of Economics University of Wisconsin-Madison

Treatment Effects. Christopher Taber. September 6, Department of Economics University of Wisconsin-Madison Treatment Effects Christopher Taber Department of Economics University of Wisconsin-Madison September 6, 2017 Notation First a word on notation I like to use i subscripts on random variables to be clear

More information

Boolean circuits. Lecture Definitions

Boolean circuits. Lecture Definitions Lecture 20 Boolean circuits In this lecture we will discuss the Boolean circuit model of computation and its connection to the Turing machine model. Although the Boolean circuit model is fundamentally

More information

1. Regressions and Regression Models. 2. Model Example. EEP/IAS Introductory Applied Econometrics Fall Erin Kelley Section Handout 1

1. Regressions and Regression Models. 2. Model Example. EEP/IAS Introductory Applied Econometrics Fall Erin Kelley Section Handout 1 1. Regressions and Regression Models Simply put, economists use regression models to study the relationship between two variables. If Y and X are two variables, representing some population, we are interested

More information

Last few slides from last time

Last few slides from last time Last few slides from last time Example 3: What is the probability that p will fall in a certain range, given p? Flip a coin 50 times. If the coin is fair (p=0.5), what is the probability of getting an

More information

Measuring Social Influence Without Bias

Measuring Social Influence Without Bias Measuring Social Influence Without Bias Annie Franco Bobbie NJ Macdonald December 9, 2015 The Problem CS224W: Final Paper How well can statistical models disentangle the effects of social influence from

More information

Probability Distributions

Probability Distributions Probability Distributions Probability This is not a math class, or an applied math class, or a statistics class; but it is a computer science course! Still, probability, which is a math-y concept underlies

More information

LAB 3: VELOCITY AND ACCELERATION

LAB 3: VELOCITY AND ACCELERATION Lab 3 - Velocity & Acceleration 25 Name Date Partners LAB 3: VELOCITY AND ACCELERATION A cheetah can accelerate from to 5 miles per hour in 6.4 seconds. A Jaguar can accelerate from to 5 miles per hour

More information

Introduction to causal identification. Nidhiya Menon IGC Summer School, New Delhi, July 2015

Introduction to causal identification. Nidhiya Menon IGC Summer School, New Delhi, July 2015 Introduction to causal identification Nidhiya Menon IGC Summer School, New Delhi, July 2015 Outline 1. Micro-empirical methods 2. Rubin causal model 3. More on Instrumental Variables (IV) Estimating causal

More information

At the start of the term, we saw the following formula for computing the sum of the first n integers:

At the start of the term, we saw the following formula for computing the sum of the first n integers: Chapter 11 Induction This chapter covers mathematical induction. 11.1 Introduction to induction At the start of the term, we saw the following formula for computing the sum of the first n integers: Claim

More information

Quantitative Economics for the Evaluation of the European Policy

Quantitative Economics for the Evaluation of the European Policy Quantitative Economics for the Evaluation of the European Policy Dipartimento di Economia e Management Irene Brunetti Davide Fiaschi Angela Parenti 1 25th of September, 2017 1 ireneb@ec.unipi.it, davide.fiaschi@unipi.it,

More information

Lecture 2: Linear regression

Lecture 2: Linear regression Lecture 2: Linear regression Roger Grosse 1 Introduction Let s ump right in and look at our first machine learning algorithm, linear regression. In regression, we are interested in predicting a scalar-valued

More information

2.4. Conditional Probability

2.4. Conditional Probability 2.4. Conditional Probability Objectives. Definition of conditional probability and multiplication rule Total probability Bayes Theorem Example 2.4.1. (#46 p.80 textbook) Suppose an individual is randomly

More information

Searching Substances in Reaxys

Searching Substances in Reaxys Searching Substances in Reaxys Learning Objectives Understand that substances in Reaxys have different sources (e.g., Reaxys, PubChem) and can be found in Document, Reaction and Substance Records Recognize

More information

TEACHER NOTES MATH NSPIRED

TEACHER NOTES MATH NSPIRED Math Objectives Students will solve linear equations in one variable graphically and algebraically. Students will explore what it means for an equation to be balanced both graphically and algebraically.

More information

Potential Outcomes and Causal Inference I

Potential Outcomes and Causal Inference I Potential Outcomes and Causal Inference I Jonathan Wand Polisci 350C Stanford University May 3, 2006 Example A: Get-out-the-Vote (GOTV) Question: Is it possible to increase the likelihood of an individuals

More information

Motion II. Goals and Introduction

Motion II. Goals and Introduction Motion II Goals and Introduction As you have probably already seen in lecture or homework, and if you ve performed the experiment Motion I, it is important to develop a strong understanding of how to model

More information

Behavioral Data Mining. Lecture 19 Regression and Causal Effects

Behavioral Data Mining. Lecture 19 Regression and Causal Effects Behavioral Data Mining Lecture 19 Regression and Causal Effects Outline Counterfactuals and Potential Outcomes Regression Models Causal Effects from Matching and Regression Weighted regression Counterfactuals

More information

14.74 Lecture 10: The returns to human capital: education

14.74 Lecture 10: The returns to human capital: education 14.74 Lecture 10: The returns to human capital: education Esther Duflo March 7, 2011 Education is a form of human capital. You invest in it, and you get returns, in the form of higher earnings, etc...

More information

Trip Distribution Modeling Milos N. Mladenovic Assistant Professor Department of Built Environment

Trip Distribution Modeling Milos N. Mladenovic Assistant Professor Department of Built Environment Trip Distribution Modeling Milos N. Mladenovic Assistant Professor Department of Built Environment 25.04.2017 Course Outline Forecasting overview and data management Trip generation modeling Trip distribution

More information

Causal Inference Lecture Notes: Causal Inference with Repeated Measures in Observational Studies

Causal Inference Lecture Notes: Causal Inference with Repeated Measures in Observational Studies Causal Inference Lecture Notes: Causal Inference with Repeated Measures in Observational Studies Kosuke Imai Department of Politics Princeton University November 13, 2013 So far, we have essentially assumed

More information

Natural Language Processing Prof. Pawan Goyal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur

Natural Language Processing Prof. Pawan Goyal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Natural Language Processing Prof. Pawan Goyal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 18 Maximum Entropy Models I Welcome back for the 3rd module

More information

AMS 132: Discussion Section 2

AMS 132: Discussion Section 2 Prof. David Draper Department of Applied Mathematics and Statistics University of California, Santa Cruz AMS 132: Discussion Section 2 All computer operations in this course will be described for the Windows

More information

Forecasting: principles and practice. Rob J Hyndman 1.1 Introduction to Forecasting

Forecasting: principles and practice. Rob J Hyndman 1.1 Introduction to Forecasting Forecasting: principles and practice Rob J Hyndman 1.1 Introduction to Forecasting 1 Outline 1 Background 2 Case studies 3 The statistical forecasting perspective 4 What can we forecast? 2 Resources Slides

More information

Assignment #0 Using Stellarium

Assignment #0 Using Stellarium Name: Class: Date: Assignment #0 Using Stellarium The purpose of this exercise is to familiarize yourself with the Stellarium program and its many capabilities and features. Stellarium is a visually beautiful

More information

Physics 6A Lab Experiment 6

Physics 6A Lab Experiment 6 Biceps Muscle Model Physics 6A Lab Experiment 6 Introduction This lab will begin with some warm-up exercises to familiarize yourself with the theory, as well as the experimental setup. Then you ll move

More information

Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II

Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II ARCH1291 Visual Studies II Week 8, Spring 2013 Assignment 7 GIS I Prof. Alihan Polat Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II Medium:

More information

Discrete Mathematics and Probability Theory Spring 2016 Rao and Walrand Note 14

Discrete Mathematics and Probability Theory Spring 2016 Rao and Walrand Note 14 CS 70 Discrete Mathematics and Probability Theory Spring 2016 Rao and Walrand Note 14 Introduction One of the key properties of coin flips is independence: if you flip a fair coin ten times and get ten

More information

AP Physics 1 Summer Assignment

AP Physics 1 Summer Assignment AP Physics 1 Summer Assignment Hello! You have elected to take AP Physics 1 next year. Congratulations. Are you excited yet? AP stands for Advanced Placement. What that means is that the physics class

More information

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations

Lab 2 Worksheet. Problems. Problem 1: Geometry and Linear Equations Lab 2 Worksheet Problems Problem : Geometry and Linear Equations Linear algebra is, first and foremost, the study of systems of linear equations. You are going to encounter linear systems frequently in

More information

Econ 2148, fall 2017 Instrumental variables I, origins and binary treatment case

Econ 2148, fall 2017 Instrumental variables I, origins and binary treatment case Econ 2148, fall 2017 Instrumental variables I, origins and binary treatment case Maximilian Kasy Department of Economics, Harvard University 1 / 40 Agenda instrumental variables part I Origins of instrumental

More information

Causal Inference. Prediction and causation are very different. Typical questions are:

Causal Inference. Prediction and causation are very different. Typical questions are: Causal Inference Prediction and causation are very different. Typical questions are: Prediction: Predict Y after observing X = x Causation: Predict Y after setting X = x. Causation involves predicting

More information

Significance Testing with Incompletely Randomised Cases Cannot Possibly Work

Significance Testing with Incompletely Randomised Cases Cannot Possibly Work Human Journals Short Communication December 2018 Vol.:11, Issue:2 All rights are reserved by Stephen Gorard FRSA FAcSS Significance Testing with Incompletely Randomised Cases Cannot Possibly Work Keywords:

More information

E Mathematics Operations & Applications: D. Data Analysis Activity: Data Analysis Rocket Launch

E Mathematics Operations & Applications: D. Data Analysis Activity: Data Analysis Rocket Launch Science as Inquiry: As a result of activities in grades 5-8, all students should develop Understanding about scientific inquiry. Abilities necessary to do scientific inquiry: identify questions, design

More information

EOSC 110 Reading Week Activity, February Visible Geology: Building structural geology skills by exploring 3D models online

EOSC 110 Reading Week Activity, February Visible Geology: Building structural geology skills by exploring 3D models online EOSC 110 Reading Week Activity, February 2015. Visible Geology: Building structural geology skills by exploring 3D models online Geological maps show where rocks of different ages occur on the Earth s

More information

Causality II: How does causal inference fit into public health and what it is the role of statistics?

Causality II: How does causal inference fit into public health and what it is the role of statistics? Causality II: How does causal inference fit into public health and what it is the role of statistics? Statistics for Psychosocial Research II November 13, 2006 1 Outline Potential Outcomes / Counterfactual

More information

ANALYTIC COMPARISON. Pearl and Rubin CAUSAL FRAMEWORKS

ANALYTIC COMPARISON. Pearl and Rubin CAUSAL FRAMEWORKS ANALYTIC COMPARISON of Pearl and Rubin CAUSAL FRAMEWORKS Content Page Part I. General Considerations Chapter 1. What is the question? 16 Introduction 16 1. Randomization 17 1.1 An Example of Randomization

More information

Math 381 Midterm Practice Problem Solutions

Math 381 Midterm Practice Problem Solutions Math 381 Midterm Practice Problem Solutions Notes: -Many of the exercises below are adapted from Operations Research: Applications and Algorithms by Winston. -I have included a list of topics covered on

More information

/633 Introduction to Algorithms Lecturer: Michael Dinitz Topic: NP-Completeness I Date: 11/13/18

/633 Introduction to Algorithms Lecturer: Michael Dinitz Topic: NP-Completeness I Date: 11/13/18 601.433/633 Introduction to Algorithms Lecturer: Michael Dinitz Topic: NP-Completeness I Date: 11/13/18 20.1 Introduction Definition 20.1.1 We say that an algorithm runs in polynomial time if its running

More information

Vector Analysis: Farm Land Suitability Analysis in Groton, MA

Vector Analysis: Farm Land Suitability Analysis in Groton, MA Vector Analysis: Farm Land Suitability Analysis in Groton, MA Written by Adrienne Goldsberry, revised by Carolyn Talmadge 10/9/2018 Introduction In this assignment, you will help to identify potentially

More information

CompSci Understanding Data: Theory and Applications

CompSci Understanding Data: Theory and Applications CompSci 590.6 Understanding Data: Theory and Applications Lecture 17 Causality in Statistics Instructor: Sudeepa Roy Email: sudeepa@cs.duke.edu Fall 2015 1 Today s Reading Rubin Journal of the American

More information

Modeling Incident Density with Contours in ArcGIS Pro

Modeling Incident Density with Contours in ArcGIS Pro Modeling Incident Density with Contours in ArcGIS Pro By Mike Price, Entrada/San Juan, Inc. What you will need ArcGIS Pro 1.4 license or later ArcGIS Spatial Analyst license ArcGIS Online for organizational

More information

Working with Digital Elevation Models in ArcGIS 8.3

Working with Digital Elevation Models in ArcGIS 8.3 Working with Digital Elevation Models in ArcGIS 8.3 The homework that you need to turn in is found at the end of this document. This lab continues your introduction to using the Spatial Analyst Extension

More information

An example to start off with

An example to start off with Impact Evaluation Technical Track Session IV Instrumental Variables Christel Vermeersch Human Development Human Network Development Network Middle East and North Africa Region World Bank Institute Spanish

More information

Machine Learning: Homework 5

Machine Learning: Homework 5 0-60 Machine Learning: Homework 5 Due 5:0 p.m. Thursday, March, 06 TAs: Travis Dick and Han Zhao Instructions Late homework policy: Homework is worth full credit if submitted before the due date, half

More information

An Introduction to Causal Analysis on Observational Data using Propensity Scores

An Introduction to Causal Analysis on Observational Data using Propensity Scores An Introduction to Causal Analysis on Observational Data using Propensity Scores Margie Rosenberg*, PhD, FSA Brian Hartman**, PhD, ASA Shannon Lane* *University of Wisconsin Madison **University of Connecticut

More information

Predicting the Treatment Status

Predicting the Treatment Status Predicting the Treatment Status Nikolay Doudchenko 1 Introduction Many studies in social sciences deal with treatment effect models. 1 Usually there is a treatment variable which determines whether a particular

More information

Entanglement and information

Entanglement and information Ph95a lecture notes for 0/29/0 Entanglement and information Lately we ve spent a lot of time examining properties of entangled states such as ab è 2 0 a b è Ý a 0 b è. We have learned that they exhibit

More information

Ninth ARTNeT Capacity Building Workshop for Trade Research "Trade Flows and Trade Policy Analysis"

Ninth ARTNeT Capacity Building Workshop for Trade Research Trade Flows and Trade Policy Analysis Ninth ARTNeT Capacity Building Workshop for Trade Research "Trade Flows and Trade Policy Analysis" June 2013 Bangkok, Thailand Cosimo Beverelli and Rainer Lanz (World Trade Organization) 1 Selected econometric

More information

Astronomy 101 Lab: Stellarium Tutorial

Astronomy 101 Lab: Stellarium Tutorial Name: Astronomy 101 Lab: Stellarium Tutorial Please install the Stellarium software on your computer using the instructions in the procedure. If you own a laptop, please bring it to class. You will submit

More information

Electric Fields and Equipotentials

Electric Fields and Equipotentials OBJECTIVE Electric Fields and Equipotentials To study and describe the two-dimensional electric field. To map the location of the equipotential surfaces around charged electrodes. To study the relationship

More information

CS1800: Strong Induction. Professor Kevin Gold

CS1800: Strong Induction. Professor Kevin Gold CS1800: Strong Induction Professor Kevin Gold Mini-Primer/Refresher on Unrelated Topic: Limits This is meant to be a problem about reasoning about quantifiers, with a little practice of other skills, too

More information

FORM-20 [See Rule 56 (7) ] FINAL RESULT SHEET

FORM-20 [See Rule 56 (7) ] FINAL RESULT SHEET Election to the Lok Sabha from the 06 - BALASORE Parliamentary Constitutency PART - 1 (To be used both for Parliamentary and Assembly Elections) Total No of Electors in Assembly Constituency / Segment

More information

Tutorial using the 2011 Statistics Canada boundary files and the Householder survey

Tutorial using the 2011 Statistics Canada boundary files and the Householder survey Tutorial using the 2011 Statistics Canada boundary files and the Householder survey In this tutorial, we ll try to determine the wards that contain the highest income groups. To do this, we will have to

More information

LAB 3 - VELOCITY AND ACCELERATION

LAB 3 - VELOCITY AND ACCELERATION Name Date Partners L03-1 LAB 3 - VELOCITY AND ACCELERATION OBJECTIVES A cheetah can accelerate from 0 to 50 miles per hour in 6.4 seconds. Encyclopedia of the Animal World A Jaguar can accelerate from

More information

M E R C E R W I N WA L K T H R O U G H

M E R C E R W I N WA L K T H R O U G H H E A L T H W E A L T H C A R E E R WA L K T H R O U G H C L I E N T S O L U T I O N S T E A M T A B L E O F C O N T E N T 1. Login to the Tool 2 2. Published reports... 7 3. Select Results Criteria...

More information

Machine Learning, Fall 2009: Midterm

Machine Learning, Fall 2009: Midterm 10-601 Machine Learning, Fall 009: Midterm Monday, November nd hours 1. Personal info: Name: Andrew account: E-mail address:. You are permitted two pages of notes and a calculator. Please turn off all

More information

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth Understanding Land Use and Land Cover using Google Earth Image an image is a representation of reality. It can be a sketch, a painting, a photograph, or some other graphic representation such as satellite

More information

Balancing Chemical Equations

Balancing Chemical Equations Lesson Created by: Lauryn Atwood Length of lesson: 1 week Description of the class: Heterogeneous Name of course: Chemistry Grade level: 10-12 Honors or regular: Regular Balancing Chemical Equations Source

More information

Modeling Log Data from an Intelligent Tutor Experiment

Modeling Log Data from an Intelligent Tutor Experiment Modeling Log Data from an Intelligent Tutor Experiment Adam Sales 1 joint work with John Pane & Asa Wilks College of Education University of Texas, Austin RAND Corporation Pittsburgh, PA & Santa Monica,

More information

Counting Methods. CSE 191, Class Note 05: Counting Methods Computer Sci & Eng Dept SUNY Buffalo

Counting Methods. CSE 191, Class Note 05: Counting Methods Computer Sci & Eng Dept SUNY Buffalo Counting Methods CSE 191, Class Note 05: Counting Methods Computer Sci & Eng Dept SUNY Buffalo c Xin He (University at Buffalo) CSE 191 Discrete Structures 1 / 48 Need for Counting The problem of counting

More information

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS

Spatial Data Analysis in Archaeology Anthropology 589b. Kriging Artifact Density Surfaces in ArcGIS Spatial Data Analysis in Archaeology Anthropology 589b Fraser D. Neiman University of Virginia 2.19.07 Spring 2007 Kriging Artifact Density Surfaces in ArcGIS 1. The ingredients. -A data file -- in.dbf

More information

AS Population Change Question spotting

AS Population Change Question spotting AS Change Question spotting Changing rate of growth How the rate of growth has changed over the last 100 years Explain the reasons for these changes Describe global or national distribution. Study the

More information

CS103 Handout 08 Spring 2012 April 20, 2012 Problem Set 3

CS103 Handout 08 Spring 2012 April 20, 2012 Problem Set 3 CS103 Handout 08 Spring 2012 April 20, 2012 Problem Set 3 This third problem set explores graphs, relations, functions, cardinalities, and the pigeonhole principle. This should be a great way to get a

More information

Course Project. Physics I with Lab

Course Project. Physics I with Lab COURSE OBJECTIVES 1. Explain the fundamental laws of physics in both written and equation form 2. Describe the principles of motion, force, and energy 3. Predict the motion and behavior of objects based

More information

Basics of Geographic Analysis in R

Basics of Geographic Analysis in R Basics of Geographic Analysis in R Spatial Autocorrelation and Spatial Weights Yuri M. Zhukov GOV 2525: Political Geography February 25, 2013 Outline 1. Introduction 2. Spatial Data and Basic Visualization

More information

Experiment 1: Linear Regression

Experiment 1: Linear Regression Experiment 1: Linear Regression August 27, 2018 1 Description This first exercise will give you practice with linear regression. These exercises have been extensively tested with Matlab, but they should

More information

New Zealand Population Distribution

New Zealand Population Distribution New Zealand Population Distribution Requirements: Internet access Web browser (e.g. Internet Explorer, Mozilla Firefox, Google Chrome)** An Esri Global Account **Please insure that pop ups are not blocked

More information

ACT Science Quick Guide

ACT Science Quick Guide ACT Science Quick Guide Use this packet as a quick reference for the most important ACT Science tips and strategies. Key Strategy #1: Use your first 20 seconds on each passage to do a few key things: 1.

More information

Lesson 7: The Mean as a Balance Point

Lesson 7: The Mean as a Balance Point Student Outcomes Students characterize the center of a distribution by its mean in the sense of a balance point. Students understand that the mean is a balance point by calculating the distances of the

More information

Tutorial 8 Raster Data Analysis

Tutorial 8 Raster Data Analysis Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations

More information

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 10

Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 10 EECS 70 Discrete Mathematics and Probability Theory Spring 2014 Anant Sahai Note 10 Introduction to Basic Discrete Probability In the last note we considered the probabilistic experiment where we flipped

More information

Note on Bivariate Regression: Connecting Practice and Theory. Konstantin Kashin

Note on Bivariate Regression: Connecting Practice and Theory. Konstantin Kashin Note on Bivariate Regression: Connecting Practice and Theory Konstantin Kashin Fall 2012 1 This note will explain - in less theoretical terms - the basics of a bivariate linear regression, including testing

More information

Physics 6A Lab Experiment 6

Physics 6A Lab Experiment 6 Rewritten Biceps Lab Introduction This lab will be different from the others you ve done so far. First, we ll have some warmup exercises to familiarize yourself with some of the theory, as well as the

More information

EMERGING MARKETS - Lecture 2: Methodology refresher

EMERGING MARKETS - Lecture 2: Methodology refresher EMERGING MARKETS - Lecture 2: Methodology refresher Maria Perrotta April 4, 2013 SITE http://www.hhs.se/site/pages/default.aspx My contact: maria.perrotta@hhs.se Aim of this class There are many different

More information