Identification of Individuals and Households, 1

Slides:



Advertisements
Similar presentations
Multiple Indicator Cluster Surveys MICS3 Regional Training Workshop Household Information Panel.
Advertisements

MICS Data Processing Workshop
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop SPSS general commands Overview.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Creating Analysis Files: Description of Preparation Steps.
MICS Data Processing Workshop Recoding in SPSS. Secondary Data Processing Flow Export Data from CSPRO Import Data into SPSS Recode Variables Add Sample.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Recoding in SPSS.
Switch code for Lab 4.2 switch (input) { /* input is a variable that we will test. */ case 'M': printf("The prefix is equal to 1E6.\n"); break; case 'k':
Slide C.1 SAS MathematicalMarketing Appendix C: SAS Software Uses of SAS  CRM  datamining  data warehousing  linear programming  forecasting  econometrics.
Combining Lags and Arrays [and a little macro] Lynn Lethbridge SHRUG OCT 28, 2011.
Data-Mining and Record-Matching. Whenever you fill out a form for an organisation, business or government, the information usually ends up being stored.
Recap of basic SPSS and statistics 5 th - 9 th December 2011, Rome.
Random Variables A random variable is a variable (usually we use x), that has a single numerical value, determined by chance, for each outcome of a procedure.
MICS Data Processing Workshop Tabulation Programs.
 What does “The Play Button” do?  “javac.exe YourClass.java”  Compilation  “java YourClass”  Execution on the Java Virtual Machine  Input & Output.
July 13 th.  If/ Else if / Else  Variable Scope  Nested if/else's  Switch statements  Conditional Operator.
Raw Census Microdata from IPUMS IPUMS Data Structure Household record (shaded) followed by a person record for each member of the household Relationship.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved Control Statements.
1 times table 2 times table 3 times table 4 times table 5 times table
Entity Relationships. Relationships Relationships exist between entities The type of relationship is entirely dependent on the business rules The business.
The switch StatementtMyn1 The switch Statement Sometimes there can be a multiple-choice situation, in which you need to execute a particular set of statements.
T HE I NTERNATIONAL I NCOME D ISTRIBUTION D ATA S ET (I2D2) June 2013.
SHARE data cleaning meeting Frankfurt – December, 6 Some suggestions from the Italian experience Paccagnella Omar Omar Paccagnella Data cleaning meeting.
Tutorial 8 Advanced Queries. Notes Switch to new database! Tutorial.08 folder Only Session 8.1 and 8.2.
Multiple Indicator Cluster Surveys Data Processing Workshop
Copyright ©2005  Department of Computer & Information Science Switch Statements.
Working with EU-SILC using the hierarchical data structure, matching & aggregating data Practical computing session I – Part 2 Heike Wirth GESIS – Leibniz.
DIVISIBILITY RULES.
Exploring Microsoft Access Chapter 6 Many-to-Many Relationships: A More Complex System.
Working with EU-SILC: data files, variables and data management Practical computing session I – Part 1 Heike Wirth GESIS – Leibniz Institut für Sozialwissenschaften.
Marginal Tax Rate Single Married Filing Jointly or Qualified Widow(er) Married Filing Separately Head of Household 10%$0 – $8,350 $0 – $16,700.
Final Exam of CS031 7 – 9 pm, Thursday, Dec 11, 2003 Location: TH GYM (both sections) Close book/notes. No cheat sheet or any electronic device.
Planning & Creating a Database By Ms. Naira Microsoft Access.
United Nations Workshop on Evaluation and Analysis of Census Data, 1-12 December 2014, Nay Pyi Taw, Myanmar DATA VALIDATION-I Evaluation of editing and.
1.7 The Distributive Property. You can use the distributive property to simplify algebraic expressions We can use the distributive property to re-write.
DTC Quantitative Methods Summary of some SPSS commands Weeks 1 & 2, January 2012.
Mannheim Research Institute for the Economics of Aging SHARE data versions & IDs Stephanie Stuck MEA Antwerpen February 2008.
Different key fields for different cases More to Learn A key field is a field that can be used to uniquely identify one specific record from other records.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
C Programming Chapters 11, . . .
Tables Learning Support
Database to HTML and Back again A programmers tale.
How to Import Patient Files Identify Patient ID number from current OPD database and make note on paper.
Ghost Identification M. Needham EPFL. Outline Embedding data Matching study  2 /dof study.
 Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do.
Session 15 Merging Data in SPSS
MASSHEALTH MAGI Household
Decomposing 2 digit addition
Analyzing the Database and Query Manager
Introduction to PL/SQL Programing
Solve more difficult number problems mentally
IPUMS “Pointer” Variables
IBM DATASTAGE online Training at GoLogica
Times Tables.
The Integration of Enterprise Groups into the German Business Register
كار همراه با آسودگي و امنيت
Formats of the files Hannu Pääkkönen
ERA Table of Activities
Divisibility Rules.
Topics: Programming Constructs: loops & conditionals Digital Input
Making a Match.
Divisibility Rules.
Divisibility Rules.
Which best describes the relationship between classes and objects?
ERA Table of Activities
Database in digital format PMWG Meeting, Luxembourg, 24/25 April 2003
The switch Statement When we want to compare a variable against several values to see which one it has, we can use the switch statement: switch (status)
3 times tables.
6 times tables.
G061 - Data Dictionary.
3 EGR Identification Service
Presentation transcript:

Identification of Individuals and Households, 1 HAZON92: Household ID for 1992 EAZON92: INDIVIDUAL ID for 1992 HAZON93: Household ID for 1993 EAZON93: INDIVIDUAL ID for 1993 CASE: Continuous Individual Case ID: 1-8237 + 1 digit BREAK-UP CODE

Identification of Individuals and Households, 2 HAZON92: Household ID for 1992 EAZON92: INDIVIDUAL ID for 1992 HAZON93: Household ID for 1993 EAZON93: INDIVIDUAL ID for 1993 CASE: Continuous Individual Case ID: 1-8237 Same as HHID + 2 digits for members

Relationship to Household Head ExHTFOVI: Relationship to Household Head HH head Spouse of the Head Children of the Head HH head Spouse of the Head Children of the Head

Switching to Household Level By Selection of Heads HH head HH head Select if (ExHTFOVI=1)

Creating a New Household Level Variable By Aggreagating the Individual Level File individual.sav aggregate /outfile = ’[YOUR DIR]\aggregate.sav' /presorted /break = hazon92 /newvar = sum (oldvar).

Matching Aggreagated Household Level Variables to Individuals aggregate.sav individual.sav Match files file = ’individual.sav' /table = ’aggregate.sav' /by = hazon92. Execute.

NEWVAR was matched to every member Note: In the HHP database every household level variables were matched back to individual cases.