Cohort analysis using LIS data

Slides:



Advertisements
Similar presentations
1 SESSION 5 Graphs for data analysis. 2 Objectives To be able to use STATA to produce exploratory and presentation graphs In particular Bar Charts Histograms.
Advertisements

EViews Student Version. Today’s Workshop Basic grasp of how EViews manages data Creating Workfiles Importing data Running regressions Performing basic.
Stata and logit recap. Topics Introduction to Stata – Files / directories – Stata syntax – Useful commands / functions Logistic regression analysis with.
Descriptive Statistics. Descriptive Statistics: Summarizing your data and getting an overview of the dataset  Why do you want to start with Descriptive.
Using SPSS. Handy buttons Switch between values & value labels Info about variables (& ‘Go To’)
Knowing Understanding the Basics Writing your own code part 2 SAS Lab.
Cemetery Demography Lab October Table 3: Data Calculations for Survivorship Curve Age Class Years # Deaths in Class (d) # Surviving from Birth (I)
GENDER EMPOWERMENT MEASUREMENT (GEM) GEM captures gender inequality in 3 key areas: 1.Political participation and decision making power: women’s and men’s.
Statistical Analysis SC504/HS927 Spring Term 2008 Week 17 (25th January 2008): Analysing data.
In this tutorial you will learn how to go from THIS.
More Graphs of y = nx2 Lesson
Solving Equations Containing To solve an equation with a radical expression, you need to isolate the variable on one side of the equation. Factored out.
Stata Workshop #1 Chiu-Hsieh (Paul) Hsu Associate Professor College of Public Health
UNLOCKING THE SECRETS HIDDEN IN YOUR DATA
Sample size vs. Error A tutorial By Bill Thomas, Colby-Sawyer College.
Chapter 16: Time-Series Analysis
Tricks in Stata Anke Huss Generating „automatic“ tables in a do-file.
Statistics and Quantitative Analysis U4320 Segment 12: Extension of Multiple Regression Analysis Prof. Sharyn O’Halloran.
Organizing a project, making a table Biostatistics 212 Lecture 7.
Organizing a project, making a table Biostatistics 212 Session 5.
2.1 Review of Functions Learning Objective: to remember what a function is and what to do with it. Warm-up (IN) 1.Write down everything you think of when.
Department of Economics Trinity College Dublin, Ireland Day 2: Labour Market Participation and Income Earning Activities 1.
Consumption calculations with real data Gretchen Donehower Day 3, Session 2, NTA Time Use and Gender Workshop Wednesday, May 23, 2012 Institute for Labor,
Educ 200C Wed. Oct 3, Variation What is it? What does it look like in a data set?
Analyses using SPSS version 19
LINEAR INEQUALITIES. Solving inequalities is almost the same as solving equations. 3x + 5 > x > 15 x > After you solve the inequality,
Ch 6.6 Absolute Value Inequalities Objective: To solve and graph one variable absolute value inequalities.
SECTIONS B Chapter 2. Objectives To draw scatter plots. To find and use prediction equations. Using a graphing calculator to graph lines of regression.
Introduction to Statistical Modelling Example: Body and heart weights of cats. The R data frame cats, and the variables therein, are made available by.
Introduction to the training dataset Alexander Mack.
Standard Deviation A Measure of Variation in a set of Data.
Section 2.5 Linear Inequalities in One Variable (Interval Notation)
Regression method (basic level) Regression method (basic level) Jo z e Sambt NTA Hands-On Workshop Berkeley, CA January 14, 2009.
Stata Review Session Economics 1018 Abby Williamson and Hongyi Li November 17, 2006.
Gateway to Global Aging Data Advanced Webinar Webinar January19 th, 2015 Drystan Phillips.
EDIT validation tool item 8 of the agenda Structural Business Statistics Working Group 14 April 2015, Luxembourg Arlind Dobërdolani.
Ec 2390: Section 1 Useful STATA commands Jack Willis September 14th, 2015.
QM222 Class 19 Section D1 Tips on your Project
More Necessary and Less Sufficient: Age-Period-Cohort Approach to Overeducation in a Comparative Perspective Eyal Bar-Haim, Anne Hartung and Louis Chauvel.
Figure 1. (a–c) LE has been increasing globally from 1990 to 2008
A) b) Supplementary Figure 1A: Significance plot(a) and forest plot(b) for the most significant SNP for regions of interest from the meta-analysis of IGP29.
Correlation – Regression
DEPARTMENT OF COMPUTER SCIENCE
Success Criteria: I will be able to analyze data about my classmates.
Weighting issues in EU-LFS
Point 5. Countries plans on Time Use Surveys
Solving Equations Containing
Solving Equations Containing
Effect of Panel Length and Following Rules on Cross-Sectional Estimates of Income Distribution: Empirical Evidence from FI-SILC Marjo Pyy-Martikainen Workshop.
For 24 countries with more than 20 citations, this figure compares contributions to ESMO and the UK cancer CPGs. Solid line of identity indicates equal.
Transmission, processing and publication of the HBS 2015 data
Migration and the Labour Market
Summary measures of mortality – Life expectancy and life tables
Solving Equations Containing
Education and Training Statistics Working Group
ETS Working Group, 5-6th June 2012
Area as the Limit of a Sum
15.1 The Role of Statistics in the Research Process
State of play: data transmission, validation and dissemination
Database in digital format PMWG Meeting, Luxembourg, 24/25 April 2003
Two Issues on Remote Data Access
opportunities and challenges of global economic changes
AP Human Geography Population Pyramids.
Exercise 1: Open the file ‘Birthweight_reduced’
Exercise 1 Use Transform  Compute variable to calculate weight lost by each person Calculate the overall mean weight lost Calculate the means and standard.
Basic Biostatistics Measures of central tendency and dispersion
LAMAS Working Group June 2018
Solving Equations Containing
Ordinary Least Square estimator using STATA
Exercise 1: Open the file ‘Birthweight_reduced’
Presentation transcript:

Cohort analysis using LIS data

The Lexis table US - us86 us91 us94 us00 us04 us10 FR - fr84 fr89 fr94 fr00 fr05 fr10 Age 25-65 5X5 years Lexis table Variables - nhhmem Educlev year5 pweight iso2 female partner immigr page ter leqdhi File name: $mydata/prosoc/us_fr_APC.dta

Variables Iso2 – Country code Year5 – period (5 years interval based on the actual time of the wave) Page – age (5 years interval) Pweight – weights Female – dummy variable for sex (male omitted) Ter – tertiary education dummy (based on Educlev) Leqdhi – (log) ppp adjusted DHI divided by the square root of HH members

APCD Cohort bumps in leqdhi (deviation from the overall trend) Age 25 to 55 For each country separately

Lissy syntax (stata) use $mydata/prosoc/us_fr_APC.dta , clear levelsof iso2, local(cnty) foreach l of local cnty { capt noi di "`l'" apcd leqdhi [w=pw] if page>=25 & page<=55 & iso2=="`l'" , age(page) period (year5) }

The output

Easier to plot output use $mydata/prosoc/us_fr_APC.dta , clear levelsof iso2, local(cnty) foreach l of local cnty { capt noi di "`l'" capture apcd leqdhi [w=pw] if page>=25 & page<=55 & iso2=="`l'" , age(page) period (year5) capture estout , cells(b ci_u ci_l) matlist r(coefs) }

The output

Plotting the output Copy the entire output (including everything) and paste it into a .txt file Open “output to graph.do” In line 1, change the folder name to the folder in which your .txt file is In line 2, change the file name to your .txt file name (don’t forget the .txt suffix!)

Inter-cohort income inequalities – the US and France

APCtlag Cohort trend in leqdhi (deviation from the overall trend) Age 25 to 55 For each country separately First, with no controls, next with controls for partner, female and tertiary education

Syntax (no control varaibles) use $mydata/prosoc/us_fr_APC.dta , clear levelsof iso2, local(cnty) foreach l of local cnty { capt noi di "`l'" apctlag leqdhi [w=pw] if page>=25 & page<=55 & iso2=="`l'" , age(page) period (year5) rep(2) }

Results (using the same .do file as before)

Syntax (with control variables) apctlag leqdhi partner female ter [w=pw] if page>=25 & page<=55 & iso2=="`l'" , age(page) period (year5) rep(2)

Results

APCGO apcgo leqdhi partner female [w=pw] if page>=25 & page<=55 & iso2=="`l'" , age(page) period (year5) gap(ter) rep(2)

Output

Output to graph We use a different .do file: output to graph (apcgo).do Again, we need change the folder and file names

Results

APCTlag of the Gini coeffcient We calculate the Gini for each 5X5 cell We give each case the value of Gini of its cell APCTlag of the new varaible

Syntax gen gini=. foreach l of local cnty { capt noi di "`l'" qui { forvalues ii=1985(5)2010 { forvalues jj=25(5)55{ fastgini leqdhi [w =pw] if year5==`ii' & page==`jj' & iso2=="`l’” replace gini=r(gini) if year5==`ii' & page==`jj' & iso2=="`l'"

Syntax (.cont) } apctlag gini [w=pw] if page>=25 & page<=55 & iso2=="`l'" , age(page) period (year5) rep(2)

Results

Exercise $mydata/prosoc/APC_WS.dta is similar dataset (Lexis table) for more countries: ca de es fi fr it no dk lu nl us il au Using only two countries, estimate: APCD and APCTlag models of leqdhi APCGO model of gender gap in leqdhi APCTlag model of Gini inequality