Computing Poverty measures with R vs. Stata. Rosendo Ramirez and Darryl McLeod. Professor Vinod R-Group presentation, May 1, 2014
|
|
|
- Caren McDonald
- 9 years ago
- Views:
Transcription
1 Computing Poverty measures with R vs. Stata Rosendo Ramirez and Darryl McLeod Professor Vinod R-Group presentation, May 1, 2014 Fordham University E-530 Dealy 12 noon Outline of Presentation 1. Accessing survey data in R and Stata, Peru has a survey of about 25,000 persons, a longitudinal panel, 2007 to We are using the 2011 survey data, reading it first into Stata (it is published in Stata format by the Peruvian..???) 2. To make the survey same representative of the 30 million people in Peru, we have to weight each family by its relative prevalence in the national population. This weight scheme is accomplished by svyset in Stata and, more or less, by a subroutine called svydesign in R. 3. We also use a program called sepov to computer p(0), p(1) and p(2) three standard poverty measures derived from the Foster-Greer-Thorbeke or FGT poverty index. 4. We find that the Stat and R routines are equally capable of computing basic poverty rates, but so far we have not been able to implement the survey design or weighting scheme Stata uses to make a HH survey representative of the entire population. 5. On the other hand, R is free and constantly being updated and it present capacity to handle large data sets such as the peru survey of 25,000 households is impressive. 6. As of this writing, Stata s panel data routines (not shown here) are a bit easier to use that those R. In fact we have not figured out how to load the entire 5 year Peruvian survey into R (suggestions welcome). Resources/Files Camtasia Tutorial for R-Studio Early version (needs editing) (you can download this mp4 videos) How do I use the Stata survey (svy) commands? The Peruvian Nuevo Sol is the currency of Peru. Our currency rankings show that the most popular Peru Nuevo Sol exchange rate is the PEN to USD rate. The currency code for Nuevos Soles is PEN, and the currency symbol is S/.. Data: 2011 HH Survey data for Peru, from the Stata Do file for tutorial: Sample Stata output with notes All files on R files: R file for reading Stata survey data R inflation VAR data Prueba.R (not sure what this file is)
2 Background note on the FGT poverty and severity measures: the headcount or H or p(0) or the poverty gap (H*I where I has distance below the poverty line of the average poor person) and the severity measure p(2) or gap squared. A useful, encompassing measure of poverty is the Foster, Greer, Thorbeke (FGT) index, where n is total population, q is the population below the poverty line yp and yi is the income of poor person i. The income gap or shortfall of each poor q yp y i FGT (1/ n) vi where vi where yp is the poverty line, yi is the income of household i, y i 1 p q is the number of poor households, n is the number of households in the entire population. Suppose the poverty line is $400 and there are four poor people with of a total population (n) of 10. The two rural poor people have $200 annual income and the two urban poor have $300. When α = 0 and the FGT index p(0) equals the basic headcount measure of poverty (H). When α= 1 the FGT index p(1) is H*I, where I is the average income shortfall or (yp - ȳ)/yp where ȳ is the average income of the poor and again yp is the official poverty line. When α = 2 the FGT poverty index or P(2) is the sum of the average income gaps squared. This implies the poorest have more weight in the poverty index, so that if the government redistributes income to the poorest of the poor, the index p(2) falls most ( remember the neediest is the NY Times motto) The global standard for severe poverty is 38/month or $1.25 a day PPP in low income countries. Middle income countries like Peru use $2.50 per day or $76 per month as their severe poverty line or $4-$5 per day for everyday or moderate poverty line. Note that the Peruvian currency, the Nuevo Sol trades at about 2.8 per dollar U.S. The PPP conversión factor for Peru is about 1.66 in other words a dollar in Peru (rural and urban) buy what a $1.66 would buy in the United Stats. Files: This Stata file contains the 24,000 HHs in the 2011 survey: sumaria2011.dta Do file program: sumaria.do Stata code clear * open the data use "D:\economic_research\r-software\fordham\sumaria2011", clear *set the data survey design svyset conglome [pw=facpob], strata(estrato) * monthly per capita expenditure National
3 tabstat gpcm [aw=facpob], stats(mean semean sd n ) * mean of monthly percapita expenditure - extreme poverty in local currency (soles) exchange rate = 2.8 Soles/US$ * National tabstat linpe if (estrato>=1) [aw=facpob], stats(mean p50) * Urban tabstat linpe if (estrato<6) [aw=facpob], stats(mean p50) *Rural tabstat linpe if (estrato>=6) [aw=facpob], stats(mean p50) * mean of monthly percapita expenditure - poverty in local currency (soles) exchange rate = 2.8 Soles/US$ * National tabstat linea if (estrato>=1) [aw=facpob], stats(mean p50) * Urban tabstat linea if (estrato<6) [aw=facpob], stats(mean p50) * Rural tabstat linea if (estrato>=6) [aw=facpob], stats(mean p50) * Extreme Poverty headcount * National sepov gpcm [w=facpob], povline(linea) * Urban sepov gpcm [w=facpob] if (estrato<6), povline(linea) * Rural sepov gpcm [w=facpob] if (estrato>=6), povline(linea) * Poverty headcount * National sepov gpcm [w=facpob], povline(linpe) * Urban sepov gpcm [w=facpob] if (estrato<6), povline(linpe) * Rural sepov gpcm [w=facpob] if (estrato>=6), povline(linpe)
4 Stata Results 1. * monthly per capita expenditure - National tabstat gpcm [aw=facpob], stats(mean semean sd n ) variable mean se(mean) sd N gpcm * mean of monthly percapita expenditure - extreme poverty in local currency (soles) exchange rate = 2.8 Soles/US$. * mean of monthly percapita expenditure - extreme poverty in local currency (soles) exchange rate = 2.8 Soles/US$. * National. tabstat linpe if (estrato>=1) [aw=facpob], stats(mean semean p50) variable mean se(mean) p linpe * Urban. tabstat linpe if (estrato<6) [aw=facpob], stats(mean semean p50) variable mean se(mean) p linpe *Rural. tabstat linpe if (estrato>=6) [aw=facpob], stats(mean semean p50) variable mean se(mean) p
5 linpe * mean of monthly percapita expenditure - poverty in local currency (soles) exchange rate = 2.8 Soles/US$. * National. tabstat linea if (estrato>=1) [aw=facpob], stats(mean semean p50) variable mean se(mean) p linea * Urban. tabstat linea if (estrato<6) [aw=facpob], stats(mean semean p50) variable mean se(mean) p linea * Rural. tabstat linea if (estrato>=6) [aw=facpob], stats(mean semean p50) variable mean se(mean) p linea
6 4.. * Poverty headcount. * National. sepov gpcm [w=facpob], povline(linea) (sampling weights assumed) Poverty measures for the variable gpcm: (unlabeled) Survey mean estimation pweight: facpob Number of obs = Strata: <one> Number of strata = 1 PSU: <observations> Number of PSUs = Population size = Mean Estimate Std. Err. [95% Conf. Interval] Deff p p p * Urban. sepov gpcm [w=facpob] if (estrato<6), povline(linea) (sampling weights assumed) Poverty measures for the variable gpcm: (unlabeled) Survey mean estimation pweight: facpob Number of obs = Strata: <one> Number of strata = 1 PSU: <observations> Number of PSUs = 15065
7 Population size = Mean Estimate Std. Err. [95% Conf. Interval] Deff p p p * Rural. sepov gpcm [w=facpob] if (estrato>=6), povline(linea) (sampling weights assumed) Poverty measures for the variable gpcm: (unlabeled) Survey mean estimation pweight: facpob Number of obs = 9744 Strata: <one> Number of strata = 1 PSU: <observations> Number of PSUs = 9744 Population size = Mean Estimate Std. Err. [95% Conf. Interval] Deff p p p
8 5.. * Extreme Poverty headcount. * National. sepov gpcm [w=facpob], povline(linpe) (sampling weights assumed) Poverty measures for the variable gpcm: (unlabeled) Survey mean estimation pweight: facpob Number of obs = Strata: <one> Number of strata = 1 PSU: <observations> Number of PSUs = Population size = Mean Estimate Std. Err. [95% Conf. Interval] Deff p p p * Urban. sepov gpcm [w=facpob] if (estrato<6), povline(linpe) (sampling weights assumed) Poverty measures for the variable gpcm: (unlabeled) Survey mean estimation pweight: facpob Number of obs = Strata: <one> Number of strata = 1
9 PSU: <observations> Number of PSUs = Population size = Mean Estimate Std. Err. [95% Conf. Interval] Deff p p p * Rural. sepov gpcm [w=facpob] if (estrato>=6), povline(linpe) (sampling weights assumed) Poverty measures for the variable gpcm: (unlabeled) Survey mean estimation pweight: facpob Number of obs = 9744 Strata: <one> Number of strata = 1 PSU: <observations> Number of PSUs = 9744 Population size = Mean Estimate Std. Err. [95% Conf. Interval] Deff p p p
10 Poverty measures with R Software # how to set a directory? setwd("d:/economic_research/r-software/fordham") # how to get a directory? getwd() # how to read a stata file? # download foreign package - Read Stata file in R Software # for example stata file: sumaria2011.dta, mus08psidextract.dta, etc c<-read.dta("d:/economic_research/r-software/fordham/sumaria2011.dta") summary(~gpcm) # download survey package - Data survey poverty<-svydesign(id=~conglome, strata=~estrato, weights=~facpob, data=c) monthly_percapita_expenditure<-svymean(~gpcm, design=poverty) monthly_percapita_expenditure # download ineq package - Poverty package linea<-svymean(~linea, design=poverty) linea linpe<-svymean(~linpe, design=poverty) linpe pov(c$gpcm, , parameter=1, type ="Foster") pov(c$gpcm, , parameter=1, type ="Foster")
11 R Software Results > monthly_percapita_expenditure<-svymean(~gpcm, design=poverty) 1. monthly_percapita_expenditure mean SE gpcm Comparison: We have the same mean monthly per capita expenditure but different standard error of mean Stata R software Mean gpcm SE(mean gpcm) > # download ineq package - Poverty package 2. > # mean monthly percapita expenditure National poverty line > linea<-svymean(~linea, design=poverty) > linea mean SE linea > # mean monthly percapita expenditure National extreme poverty > linpe<-svymean(~linpe, design=poverty) > linpe mean SE linpe Comparison We have the same mean monthly per capita expenditure extreme poverty but different standard error of mean. National Stata R Software Mean linpe SE Mean linpe
12 We have the same mean monthly per capita expenditure poverty but different standard error of mean. National Stata R Software Mean linpe SE Mean linpe > # mean monthly percapita expenditure - extreme poverty line National > # National extreme poverty headcount > pov(c$gpcm, , parameter=1, type ="Foster") [1] > # National poverty headcount > pov(c$gpcm, , parameter=1, type ="Foster") [1] > Comparison Stata takes the data survey design (wei ght) while R Software uses only the sample. National Stata (with Weighted sample) R Software (unweighted data) Headcount Extreme poverty Headcount Poverty I am trying to find other packages to work with poverty measures using data survey design. So far I found ineq package that works with sample no with data survey design (weight).
Chapter 6. Inequality Measures
Chapter 6. Inequality Measures Summary Inequality is a broader concept than poverty in that it is defined over the entire population, and does not only focus on the poor. The simplest measurement of inequality
Failure to take the sampling scheme into account can lead to inaccurate point estimates and/or flawed estimates of the standard errors.
Analyzing Complex Survey Data: Some key issues to be aware of Richard Williams, University of Notre Dame, http://www3.nd.edu/~rwilliam/ Last revised January 24, 2015 Rather than repeat material that is
Usage and importance of DASP in Stata
Usage and importance of DASP in Stata Abdelkrim Araar, Jean-Yves Duclos and Luis Huesca Comparisons of Stata to other software or use of Stata together with other software. Mexico, May 12, 2011 Usage and
Introduction; Descriptive & Univariate Statistics
Introduction; Descriptive & Univariate Statistics I. KEY COCEPTS A. Population. Definitions:. The entire set of members in a group. EXAMPLES: All U.S. citizens; all otre Dame Students. 2. All values of
Poverty Indicators Household Income and Expenditure Survey - 2006/07 Department of Census and Statistics Ministry of Finance and Planning Sri Lanka
ISSN 1391-4695 March 2008 Poverty Indicators Household Income and Expenditure Survey - 2006/07 Department of Census and Statistics Ministry of Finance and Planning Sri Lanka Introduction The Household
Poverty Indices: Checking for Robustness
Chapter 5. Poverty Indices: Checking for Robustness Summary There are four main reasons why measures of poverty may not be robust. Sampling error occurs because measures of poverty are based on sample
Running Descriptive Statistics: Sample and Population Values
Running Descriptive Statistics: Sample and Population Values Goal This exercise is an introduction to a few of the variables in the household- and person-level LIS data sets. The exercise concentrates
1. What is the critical value for this 95% confidence interval? CV = z.025 = invnorm(0.025) = 1.96
1 Final Review 2 Review 2.1 CI 1-propZint Scenario 1 A TV manufacturer claims in its warranty brochure that in the past not more than 10 percent of its TV sets needed any repair during the first two years
Chapter 4. Measures of Poverty
Chapter 4. Measures of overty Summary Assume that information is available on a welfare measure such as income per capita, and a poverty line, for each household or individual. This chapter explains how
Measuring pro-poor growth
Economics Letters 78 (2003) 93 99 www.elsevier.com/ locate/ econbase q Measuring pro-poor growth * Martin Ravallion, Shaohua Chen World Bank, MSN MC 3-306 Development Research Group, 1818 H Street NW,
Using Stata for One Sample Tests
Using Stata for One Sample Tests All of the one sample problems we have discussed so far can be solved in Stata via either (a) statistical calculator functions, where you provide Stata with the necessary
Correlation and Regression
Correlation and Regression Scatterplots Correlation Explanatory and response variables Simple linear regression General Principles of Data Analysis First plot the data, then add numerical summaries Look
National Longitudinal Study of Adolescent Health. Strategies to Perform a Design-Based Analysis Using the Add Health Data
National Longitudinal Study of Adolescent Health Strategies to Perform a Design-Based Analysis Using the Add Health Data Kim Chantala Joyce Tabor Carolina Population Center University of North Carolina
Standard errors of marginal effects in the heteroskedastic probit model
Standard errors of marginal effects in the heteroskedastic probit model Thomas Cornelißen Discussion Paper No. 320 August 2005 ISSN: 0949 9962 Abstract In non-linear regression models, such as the heteroskedastic
Nominal, Real and PPP GDP
Nominal, Real and PPP GDP It is crucial in economics to distinguish nominal and real values. This is also the case for GDP. While nominal GDP is easier to understand, real GDP is more important and used
USAID POVERTY ASSESSMENT TOOLS (PAT) DATA ANALYSIS GUIDE
USAID POVERTY ASSESSMENT TOOLS (PAT) DATA ANALYSIS GUIDE April 2013 This publication was produced for review by the United States Agency for International Development. It was prepared by FHI360. DISCLAIMER
From the help desk: Demand system estimation
The Stata Journal (2002) 2, Number 4, pp. 403 410 From the help desk: Demand system estimation Brian P. Poi Stata Corporation Abstract. This article provides an example illustrating how to use Stata to
Sample Size Calculation for Longitudinal Studies
Sample Size Calculation for Longitudinal Studies Phil Schumm Department of Health Studies University of Chicago August 23, 2004 (Supported by National Institute on Aging grant P01 AG18911-01A1) Introduction
Survey Data Analysis in Stata
Survey Data Analysis in Stata Jeff Pitblado Associate Director, Statistical Software StataCorp LP Stata Conference DC 2009 J. Pitblado (StataCorp) Survey Data Analysis DC 2009 1 / 44 Outline 1 Types of
Health Care Payments and Poverty
19 Health Care Payments and Poverty In the previous chapter we examined the issue of catastrophic payments for health care the disruption to material living standards due to large out-of-pocket (OOP) payments
Survey Data Analysis in Stata
Survey Data Analysis in Stata Jeff Pitblado Associate Director, Statistical Software StataCorp LP 2009 Canadian Stata Users Group Meeting Outline 1 Types of data 2 2 Survey data characteristics 4 2.1 Single
Lab 11. Simulations. The Concept
Lab 11 Simulations In this lab you ll learn how to create simulations to provide approximate answers to probability questions. We ll make use of a particular kind of structure, called a box model, that
From the help desk: hurdle models
The Stata Journal (2003) 3, Number 2, pp. 178 184 From the help desk: hurdle models Allen McDowell Stata Corporation Abstract. This article demonstrates that, although there is no command in Stata for
Surveys on children: child poverty in Kyrgyzstan
Surveys on children: child poverty in Kyrgyzstan Shamsia Ibragimova Social Protection Expert Technical consultation on Making children visible in routine surveys UNICEF Innocenti Research Centre Florence,
Module 3: Measuring (step 2) Poverty Lines
Module 3: Measuring (step 2) Poverty Lines Topics 1. Alternative poverty lines 2. Setting an absolute poverty line 2.1. Cost of basic needs method 2.2. Food energy method 2.3. Subjective method 3. Issues
Skewed Data and Non-parametric Methods
0 2 4 6 8 10 12 14 Skewed Data and Non-parametric Methods Comparing two groups: t-test assumes data are: 1. Normally distributed, and 2. both samples have the same SD (i.e. one sample is simply shifted
FINANCIAL INCLUSION INDICATORS FOR DEVELOPING COUNTRIES: The Peruvian Case
FINANCIAL INCLUSION INDICATORS FOR DEVELOPING COUNTRIES: The Peruvian Case Mrs. Giovanna Priale Reyes Head of the Office of Products and Services to the Consumer [email protected] Superintendency of Banking,
Complex Survey Design Using Stata
Complex Survey Design Using Stata 2010 This document provides a basic overview of how to handle complex survey design using Stata. Probability weighting and compensating for clustered and stratified samples
Lesson 1: Comparison of Population Means Part c: Comparison of Two- Means
Lesson : Comparison of Population Means Part c: Comparison of Two- Means Welcome to lesson c. This third lesson of lesson will discuss hypothesis testing for two independent means. Steps in Hypothesis
Chapter 5 Estimating Demand Functions
Chapter 5 Estimating Demand Functions 1 Why do you need statistics and regression analysis? Ability to read market research papers Analyze your own data in a simple way Assist you in pricing and marketing
Child Poverty in High- and Middle-Income Countries: Selected Findings from LIS 1
April 2012 Child Poverty in High- and Middle-Income Countries: Selected Findings from LIS 1 What is LIS? Janet C. Gornick, Director, LIS Professor of Political Science and Sociology, Graduate Center City
Comparing Levels of Development
2 Comparing Levels of Development Countries are unequally endowed with natural capital. For example, some benefit from fertile agricultural soils, while others have to put a lot of effort into artificial
Standard Deviation Estimator
CSS.com Chapter 905 Standard Deviation Estimator Introduction Even though it is not of primary interest, an estimate of the standard deviation (SD) is needed when calculating the power or sample size of
SPSS and AM statistical software example.
A detailed example of statistical analysis using the NELS:88 data file and ECB, to perform a longitudinal analysis of 1988 8 th graders in the year 2000: SPSS and AM statistical software example. Overall
Module 14: Missing Data Stata Practical
Module 14: Missing Data Stata Practical Jonathan Bartlett & James Carpenter London School of Hygiene & Tropical Medicine www.missingdata.org.uk Supported by ESRC grant RES 189-25-0103 and MRC grant G0900724
Introduction to STATA 11 for Windows
1/27/2012 Introduction to STATA 11 for Windows Stata Sizes...3 Documentation...3 Availability...3 STATA User Interface...4 Stata Language Syntax...5 Entering and Editing Stata Commands...6 Stata Online
Econometrics I: Econometric Methods
Econometrics I: Econometric Methods Jürgen Meinecke Research School of Economics, Australian National University 24 May, 2016 Housekeeping Assignment 2 is now history The ps tute this week will go through
THE EFFECT OF ECONOMIC GROWTH ON POVERTY IN EASTERN EUROPE
ZARZĄDZANIE PUBLICZNE 1 2(9 10)/2010 Zeszyty Naukowe Instytutu Spraw Publicznych Uniwersytetu Jagiellońskiego Institute of World and Regional Economics, University of Miskolc THE EFFECT OF ECONOMIC GROWTH
Chapter 6: Measuring the Price Level and Inflation. The Price Level and Inflation. Connection between money and prices. Index Numbers in General
Chapter 6: The Price Level and Measuring the Price Level and Microeconomic causes changes in individual markets can explain only a tiny fraction of price change For the most part, price rises came about
CALCULATIONS & STATISTICS
CALCULATIONS & STATISTICS CALCULATION OF SCORES Conversion of 1-5 scale to 0-100 scores When you look at your report, you will notice that the scores are reported on a 0-100 scale, even though respondents
Coefficient of Determination
Coefficient of Determination The coefficient of determination R 2 (or sometimes r 2 ) is another measure of how well the least squares equation ŷ = b 0 + b 1 x performs as a predictor of y. R 2 is computed
Time Value of Money. 2014 Level I Quantitative Methods. IFT Notes for the CFA exam
Time Value of Money 2014 Level I Quantitative Methods IFT Notes for the CFA exam Contents 1. Introduction...2 2. Interest Rates: Interpretation...2 3. The Future Value of a Single Cash Flow...4 4. The
Cosumnes River College Principles of Macroeconomics Problem Set 3 Due September 17, 2015
Cosumnes River College Principles of Macroeconomics Problem Set 3 Due September 17, 2015 Name: Solutions Fall 2015 Prof. Dowell Instructions: Write the answers clearly and concisely on these sheets in
Introduction to RStudio
Introduction to RStudio (v 1.3) Oscar Torres-Reyna [email protected] August 2013 http://dss.princeton.edu/training/ Introduction RStudio allows the user to run R in a more user-friendly environment.
THE 10 IDEAS BEHIND FOREX TRADING
ForeMart THINK BIG. TRADE FOREX FOREX MARKET: THE 10 IDEAS BEHIND FOREX TRADING The 10 IDEAS Behind Fore Trading Risk Warning Foreign echange is highly speculative and comple in nature, and may not be
IMPACT EVALUATION: INSTRUMENTAL VARIABLE METHOD
REPUBLIC OF SOUTH AFRICA GOVERNMENT-WIDE MONITORING & IMPACT EVALUATION SEMINAR IMPACT EVALUATION: INSTRUMENTAL VARIABLE METHOD SHAHID KHANDKER World Bank June 2006 ORGANIZED BY THE WORLD BANK AFRICA IMPACT
Income Distribution Database (http://oe.cd/idd)
Income Distribution Database (http://oe.cd/idd) TERMS OF REFERENCE OECD PROJECT ON THE DISTRIBUTION OF HOUSEHOLD INCOMES 2014/15 COLLECTION October 2014 The OECD income distribution questionnaire aims
Harmonization of Health Insurance Schemes in China
Harmonization of Health Insurance Schemes in China Hai Fang Professor of Health Economics China Center for Health Development Studies Peking University China Presentation at the First National Conference
How to set the main menu of STATA to default factory settings standards
University of Pretoria Data analysis for evaluation studies Examples in STATA version 11 List of data sets b1.dta (To be created by students in class) fp1.xls (To be provided to students) fp1.txt (To be
and Gologit2: A Program for Ordinal Variables Last revised May 12, 2005 Page 1 ologit y x1 x2 x3 gologit2 y x1 x2 x3, pl lrforce
Gologit2: A Program for Generalized Logistic Regression/ Partial Proportional Odds Models for Ordinal Dependent Variables Richard Williams, [email protected] Last revised May 12, 2005 [This document
2. Linear regression with multiple regressors
2. Linear regression with multiple regressors Aim of this section: Introduction of the multiple regression model OLS estimation in multiple regression Measures-of-fit in multiple regression Assumptions
Q = ak L + bk L. 2. The properties of a short-run cubic production function ( Q = AL + BL )
Learning Objectives After reading Chapter 10 and working the problems for Chapter 10 in the textbook and in this Student Workbook, you should be able to: Specify and estimate a short-run production function
Briefing note for countries on the 2015 Human Development Report. Palestine, State of
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Palestine, State of Introduction The 2015 Human Development Report (HDR) Work for
ANSWERS TO END-OF-CHAPTER QUESTIONS
ANSWERS TO END-OF-CHAPTER QUESTIONS 7-1 In what ways are national income statistics useful? National income accounting does for the economy as a whole what private accounting does for businesses. Firms
Statistical modelling with missing data using multiple imputation. Session 4: Sensitivity Analysis after Multiple Imputation
Statistical modelling with missing data using multiple imputation Session 4: Sensitivity Analysis after Multiple Imputation James Carpenter London School of Hygiene & Tropical Medicine Email: [email protected]
Nepal. Country coverage and the methodology of the Statistical Annex of the 2015 HDR
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Nepal Introduction The 2015 Human Development Report (HDR) Work for Human Development
International Trade and. Exchange Rate Volatility
Chapter 6 International Trade and Exchange Rate Volatility Thus far, we have focused our analysis on price risk. This price risk manifests itself in the form of variability in output and/or input prices.
Nonlinear Regression Functions. SW Ch 8 1/54/
Nonlinear Regression Functions SW Ch 8 1/54/ The TestScore STR relation looks linear (maybe) SW Ch 8 2/54/ But the TestScore Income relation looks nonlinear... SW Ch 8 3/54/ Nonlinear Regression General
Longitudinal Data Analysis: Stata Tutorial
Part A: Overview of Stata I. Reading Data: Longitudinal Data Analysis: Stata Tutorial use Read data that have been saved in Stata format. infile Read raw data and dictionary files. insheet Read spreadsheets
Briefing note for countries on the 2015 Human Development Report. Philippines
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Philippines Introduction The 2015 Human Development Report (HDR) Work for Human
Madagascar. Country coverage and the methodology of the Statistical Annex of the 2015 HDR
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Madagascar Introduction The 2015 Human Development Report (HDR) Work for Human
Syntax Menu Description Options Remarks and examples Stored results Methods and formulas References Also see. level(#) , options2
Title stata.com ttest t tests (mean-comparison tests) Syntax Syntax Menu Description Options Remarks and examples Stored results Methods and formulas References Also see One-sample t test ttest varname
Agricultural Policies and Food Security Challenges in Zambia
Agricultural Policies and Food Security Challenges in Zambia Auckland Kuteya Presentation at the Africa Lead Champions for Change Leadership Training, Protea Hotel, Chisamba, Zambia 16-20 th April, 2012
Malawi. Country coverage and the methodology of the Statistical Annex of the 2015 HDR
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Malawi Introduction The 2015 Human Development Report (HDR) Work for Human Development
Sierra Leone. Country coverage and the methodology of the Statistical Annex of the 2015 HDR
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Sierra Leone Introduction The 2015 Human Development Report (HDR) Work for Human
Briefing note for countries on the 2015 Human Development Report. Niger
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Niger Introduction The 2015 Human Development Report (HDR) Work for Human Development
Briefing note for countries on the 2015 Human Development Report. Burkina Faso
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Burkina Faso Introduction The 2015 Human Development Report (HDR) Work for Human
Thailand. Country coverage and the methodology of the Statistical Annex of the 2015 HDR
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Thailand Introduction The 2015 Human Development Report (HDR) Work for Human Development
6. CONDUCTING SURVEY DATA ANALYSIS
49 incorporating adjustments for the nonresponse and poststratification. But such weights usually are not included in many survey data sets, nor is there the appropriate information for creating such replicate
THE FIRST SET OF EXAMPLES USE SUMMARY DATA... EXAMPLE 7.2, PAGE 227 DESCRIBES A PROBLEM AND A HYPOTHESIS TEST IS PERFORMED IN EXAMPLE 7.
THERE ARE TWO WAYS TO DO HYPOTHESIS TESTING WITH STATCRUNCH: WITH SUMMARY DATA (AS IN EXAMPLE 7.17, PAGE 236, IN ROSNER); WITH THE ORIGINAL DATA (AS IN EXAMPLE 8.5, PAGE 301 IN ROSNER THAT USES DATA FROM
Congo (Democratic Republic of the)
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Congo (Democratic Republic of the) Introduction The 2015 Human Development Report
Tanzania (United Republic of)
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Tanzania (United Introduction The 2015 Human Development Report (HDR) Work for
Briefing note for countries on the 2015 Human Development Report. Mozambique
Human Development Report 2015 Work for human development Briefing note for countries on the 2015 Human Development Report Mozambique Introduction The 2015 Human Development Report (HDR) Work for Human
Survey Analysis: Options for Missing Data
Survey Analysis: Options for Missing Data Paul Gorrell, Social & Scientific Systems, Inc., Silver Spring, MD Abstract A common situation researchers working with survey data face is the analysis of missing
Tracking the Macroeconomy
chapter 7(23) Tracking the Macroeconomy Chapter Objectives Students will learn in this chapter: How economists use aggregate measures to track the performance of the economy. What gross domestic product,
Unit 7 The Number System: Multiplying and Dividing Integers
Unit 7 The Number System: Multiplying and Dividing Integers Introduction In this unit, students will multiply and divide integers, and multiply positive and negative fractions by integers. Students will
Monitoring and Evaluation of ICT Sector Reforms in a Pacific Island Country: A case study based on recent/actual work done
Monitoring and Evaluation of ICT Sector Reforms in a Pacific Island Country: A case study based on recent/actual work done The Assignment was funded by The World Bank through a grant to a country referred
MEASURES OF VARIATION
NORMAL DISTRIBTIONS MEASURES OF VARIATION In statistics, it is important to measure the spread of data. A simple way to measure spread is to find the range. But statisticians want to know if the data are
Economic Growth and Poverty Reduction Strategies in Korea
Economic Growth and Poverty Reduction Strategies in Korea 2006. 9. Korea Institute for Health and Social Affairs Contents I. Introduction II. Economic Growth, Poverty and Inequality in Korea III. Changes
quick start guide A Quick Start Guide inflow Support GET STARTED WITH INFLOW
GET STARTED WITH INFLOW quick start guide Welcome to the inflow Community! This quick-start guide includes all the important stuff to get you tracking your inventory before you know it! Just follow along
Monetary Policy Bank of Canada
Bank of Canada The objective of monetary policy may be gleaned from to preamble to the Bank of Canada Act of 1935 which says, regulate credit and currency in the best interests of the economic life of
Sources, Methods & Compilation of Consumer Price Index (CPI).
Sources, Methods & Compilation of Consumer Price Index (CPI). The National Accounting Wing of Bangladesh Bureau of Statistics has been regularly compiling and disseminating the consumer price index (CPI).
Confidence Intervals for One Standard Deviation Using Standard Deviation
Chapter 640 Confidence Intervals for One Standard Deviation Using Standard Deviation Introduction This routine calculates the sample size necessary to achieve a specified interval width or distance from
ECON 142 SKETCH OF SOLUTIONS FOR APPLIED EXERCISE #2
University of California, Berkeley Prof. Ken Chay Department of Economics Fall Semester, 005 ECON 14 SKETCH OF SOLUTIONS FOR APPLIED EXERCISE # Question 1: a. Below are the scatter plots of hourly wages
Introduction. Hypothesis Testing. Hypothesis Testing. Significance Testing
Introduction Hypothesis Testing Mark Lunt Arthritis Research UK Centre for Ecellence in Epidemiology University of Manchester 13/10/2015 We saw last week that we can never know the population parameters
Lab 5 Linear Regression with Within-subject Correlation. Goals: Data: Use the pig data which is in wide format:
Lab 5 Linear Regression with Within-subject Correlation Goals: Data: Fit linear regression models that account for within-subject correlation using Stata. Compare weighted least square, GEE, and random
Using Stata for Categorical Data Analysis
Using Stata for Categorical Data Analysis NOTE: These problems make extensive use of Nick Cox s tab_chi, which is actually a collection of routines, and Adrian Mander s ipf command. From within Stata,
Please follow the directions once you locate the Stata software in your computer. Room 114 (Business Lab) has computers with Stata software
STATA Tutorial Professor Erdinç Please follow the directions once you locate the Stata software in your computer. Room 114 (Business Lab) has computers with Stata software 1.Wald Test Wald Test is used
Panel Data Analysis in Stata
Panel Data Analysis in Stata Anton Parlow Lab session Econ710 UWM Econ Department??/??/2010 or in a S-Bahn in Berlin, you never know.. Our plan Introduction to Panel data Fixed vs. Random effects Testing
