Using the RAND HRS Data and RAND-Enhanced Fat Files. Sample Programs for HRS Summer Institute Workshop

Size: px
Start display at page:

Download "Using the RAND HRS Data and RAND-Enhanced Fat Files. Sample Programs for HRS Summer Institute Workshop"

Transcription

1 Using the RAND HRS Data and RAND-Enhanced Fat Files Sample Programs for HRS Summer Institute Workshop This document is intended to provide users with some examples of how to both set up and perform some simple descriptive analyses in SAS, SPSS, and Stata, using the RAND HRS data products. The sample programs assume that the data being used are set up in a folder called C:\RandHRS, and that any files you create are stored in a separate folder called C:\MyPaper. There are four programs, each of which should be run in the specified order: Part #1: Run some descriptive analyses, using variables from the RAND HRS dataset (rndhrs_j). o Runs tables on variables that describe the interview response status at each wave. o INW1 - INW9: These are flags that indicate whether an individual responded at a given wave, where 0 = Non-response and 1 = Response, Alive. o RwIWSTAT: These variables provide (where w is the wave, e.g., R9IWSTAT for Wave 9) another way to examine interview status. In addition to telling you whether the individual responded or not, these variables also indicate mortality status. Part #2: Create a file that contains a subset of variables from the RAND HRS dataset (rndhrs_j). o HACOHORT: This variable identifies the entry cohort subsample (e.g., HRS, Ahead, CODA, WB, EBB). o RAGNDER: This variable identifies the gender of the respondent, where 1 = Male and 2 = Female. o RARACEM: This variable identifies the race of the respondent, where 1 = White/Caucasian, 2 = Black/African American, and 3 = Other. Note that respondents who are Hispanic can be identified using the RAHISPAN variable. o R7PENINC - R9PENINC: These variables indicate, for Waves 7 (2004), 8 (2006), and 9 (2008), whether the respondent is currently receiving any pension income. The corresponding variables for the spouse are S7PENINC - S9PENINC. o R7LBRF - R9LBRF: These variables summarize, for Waves 7 (2004), 8 (2006), and 9 (2008), the labor force status for the respondent at each wave as working full-time, working part-time, unemployed, partly retired, retired, disabled, or not in the labor force. The corresponding variables for the spouse are S7LBRF - S9LBRF. o R7AGEY_E - R9AGEY_E: These variables, for Waves 7 (2004), 8 (2006), and 9 (2008), indicate the age of the respondent (in years) at the final interview date. The corresponding variables for the spouse are S7AGEY_E - S9AGEY_E. Part #3: Run some descriptive analyses using the dataset created in Part #2. o Generate summary statistics for respondents pension income receipt in Waves 7-9. o Produce some tables that examine/compare the following: o Respondents pension income receipt by cohort for Wave 9. o Respondents pension income receipt to that of the spouse for Wave 8. o Respondents Wave 8 pension income receipt to that in Wave 9. o Respondents labor force status by pension income receipt for Waves 8 and 9. o Respondents pension income receipt and labor force status in Wave 9 by gender.

2 Part #4: Merge the dataset created in Part #2 with the RAND-Enhanced Fat Files for Waves 8 and 9. The raw variables that are selected from the fat files (described below) include questions that ask respondents whether their employers offer pension plans. o Merge the dataset created in Part #2 with the fat files for Wave 8 (h06f2a) and Wave 9 (h08e1a). There are some important things to note: o For sorting and merging you can use RAHHIDPN, HHIDPN, or HHID & PN together. The results should be the same regardless of which format of the respondent identifier you use. o The rndhrs_j dataset and the fat files are all sorted by RAHHIDPN (HHIDPN and HHID & PN). However, Stata requires you to resort the files before merging, and only allows two files to be merged at once. o Keep RAHHIDPN, HHIDPN, HHID and PN from the fat files, as well as the KJ325 (Wave 8) and LJ325 (Wave 9) variables described below. o In the final merged dataset, keep only the individuals who responded to Waves 8 and 9. o Produce some tables that examine/compare the following: o Response status flags for Waves 8 and 9. o Questions in Waves 8 and 9 about whether employers offer pension plans. o Questions in Waves 8 and 9 about whether employers offer pension plans by gender. ================================================================================ KJ325 DOES EMPLOYER OFFER ANY PLANS Section: J Level: Respondent Type: Numeric Width: 1 Decimals: 0 Ref: SecJ.CURRENTPENSIONNEW.J325_ Does your employer offer any [such plans? / pension or retirement plans on your job?] YES NO DK (Don't Know); NA (Not Ascertained) 3 9. RF (Refused) Blank. INAP (Inapplicable); Partial Interview ================================================================================ LJ325 DOES EMPLOYER OFFER ANY PLANS Section: J Level: Respondent Type: Numeric Width: 1 Decimals: 0 Ref: SecJ.CURRENTPENSIONNEW.J325_ Does your employer offer any (such) retirement plans? YES NO DK (Don't Know) 3 9. RF (Refused) Blank. INAP (Inapplicable); Partial Interview

3 SAS Code Part #1: /* The formats.sas7bcat and rndhrs_j.sas7bdat files are stored in c:\randhrs */ libname library "c:\randhrs"; proc freq data=library.rndhrs_j; table inw1-inw9 r7iwstat r8iwstat r9iwstat / missprint; Part #2: libname mylib "c:\mypaper"; /* this is where the output file will be stored */ data mylib.wkshop; set library.rndhrs_j (keep=inw7-inw9 hhidpn rahhidpn hacohort ragender raracem r7iwstat r8iwstat r9iwstat r7peninc r8peninc r9peninc r7lbrf r8lbrf r9lbrf r7agey_e r8agey_e r9agey_e s7peninc s8peninc s9peninc s7lbrf s8lbrf s9lbrf s7agey_e s8agey_e s9agey_e); where inw7=1 or inw8=1 or inw9=1; proc contents data=mylib.wkshop; Part #3: proc means data=mylib.wkshop; var r7peninc r8peninc r9peninc; proc freq data=mylib.wkshop; table r9peninc*hacohort r8peninc*s8peninc r8peninc*r9peninc r8peninc*r8lbrf r9peninc*r9lbrf ragender*(r9peninc r9lbrf) ragender*r9peninc*r9lbrf /missprint;

4 Part #4: data mylib.wkplus; merge mylib.wkshop (in=inrnd) library.h06f2a (in=i06 keep=hhidpn rahhidpn hhid pn kj325) library.h08e1a (in=i08 keep=hhidpn rahhidpn hhid pn lj325); by rahhidpn; in06=i06; in08=i08; if inw8=1 and inw9=1; proc freq data=mylib.wkplus; table in06*inw8 in08*inw9 kj325 lj325 ragender*kj325 ragender*lj325 /missprint;

5 SPSS Code Part #1: get file="c:\randhrs\rndhrs_j.sav". frequencies var=inw1 inw2 inw3 inw4 inw5 inw6 inw7 inw8 inw9 r7iwstat r8iwstat r9iwstat. Part #2: get file="c:\randhrs\rndhrs_j.sav" /keep=inw7 inw8 inw9 hhidpn rahhidpn hacohort ragender raracem r7iwstat r8iwstat r9iwstat r7peninc r8peninc r9peninc r7lbrf r8lbrf r9lbrf r7agey_e r8agey_e r9agey_e s7peninc s8peninc s9peninc s7lbrf s8lbrf s9lbrf s7agey_e s8agey_e s9agey_e. select if inw7=1 or inw8=1 or inw9=1. save outfile="c:\mypaper\wkshop.sav" /map. Part #3: get file="c:\mypaper\wkshop.sav". descriptives r7peninc r8peninc r9peninc. crosstabs tables=r9peninc by hacohort /tables=r8peninc by s8peninc /tables=r8peninc by r9peninc /missing=include. crosstabs tables=r8lbrf by r8peninc /tables= r9lbrf by r9peninc /cells=count col. crosstabs tables=r9peninc by ragender /tables=r9lbrf by ragender /tables=r9peninc by r9lbrf by ragender /cells=count col.

6 Part #4: match files file="c:\mypaper\wkshop.sav" /in=inrnd /file="c:\randhrs\h06f2a.sav" /in=in06 /file="c:\randhrs\h08e1a.sav" /in=in08 /keep= inw7 inw8 inw9 hhidpn rahhidpn hhid pn ragender raracem r7iwstat r8iwstat r9iwstat r7peninc r8peninc r9peninc r7lbrf r8lbrf r9lbrf r7agey_e r8agey_e r9agey_e s7peninc s8peninc s9peninc s7lbrf s8lbrf s9lbrf s7agey_e s8agey_e s9agey_e kj325 lj325 /by rahhidpn /map. save outfile="c:\mypaper\wkplus.sav". select if inw8=1 and inw9=1. frequencies var=kj325 lj325. crosstab tables= in06 by inw8 /tables=in08 by inw9 /tables=kj325 by ragender /tables=lj325 by ragender /cells=count col.

7 Stata Code Part #1: set memory 200m set maxvar #delimit use inw* hhidpn rahhidpn hacohort ragender raracem r7iwstat r8iwstat r9iwstat r7peninc r8peninc r9peninc r7lbrf r8lbrf r9lbrf r7agey_e r8agey_e r9agey_e s7peninc s8peninc s9peninc s7lbrf s8lbrf s9lbrf s7agey_e s8agey_e s9agey_e using "c:\randhrs\rndhrs_j" #delimit cr tab inw1 tab inw2 tab inw3 tab inw4 tab inw5 tab inw6 tab inw7 tab inw8 tab inw9 tab r7iwstat tab r8iwstat tab r9iwstat Part #2: keep if inw7==1 inw8==1 inw9==1 save "c:\mypaper\wkshop", replace Part #3: use "c:\mypaper\wkshop" sum r7peninc r8peninc r9peninc tab r9peninc hacohort tab r8peninc s8peninc tab r8peninc r9peninc tab r8lbrf r8peninc, col tab r9lbrf r9peninc, col tab r9peninc ragender, col tab r9lbrf ragender, col tab r9lbrf r9peninc if ragender==1, col tab r9lbrf r9peninc if ragender==2, col

8 Part #4: use hhidpn rahhidpn hhid pn kj325 using "c:\randhrs\h06f2a" save "c:\mypaper\h06x", replace use hhidpn rahhidpn hhid pn lj325 using "c:\randhrs\h08e1a" save "c:\mypaper\h08x", replace clear use "c:\mypaper\wkshop" merge rahhidpn using "c:\mypaper\h06x", _merge(mrg06) tab mrg06 merge rahhidpn using "c:\mypaper\h08x", _merge(mrg08) tab mrg08 save "c:\mypaper\wkplus", replace keep if inw8==1 & inw9==1 tab mrg06 inw8 tab mrg08 inw9 tab kj325 tab lj325 tab kj325 ragender tab lj325 ragender

The RAND HRS Data (Version J) 1. Overview Data Description. June 2010 Data Distribution Description

The RAND HRS Data (Version J) 1. Overview Data Description. June 2010 Data Distribution Description The RAND HRS Data (Version J) June 2010 Data Distribution Description 1. Overview 1.1. Data Description The RAND HRS Data file is a cleaned, easy-to-use, and streamlined version of the Health and Retirement

More information

What s New in Version M of the RAND HRS?

What s New in Version M of the RAND HRS? What s New in Version M of the RAND HRS? Version M incorporates the Final Release for 2010, which includes the Mid Baby Boomer cohort and the most recent versions of the cross wave Tracker and Region and

More information

RAND Enhanced Fat Files

RAND Enhanced Fat Files RAND Enhanced Fat Files The RAND Fat Files contain most of the raw HRS/AHEAD variables with Household data merged to the Respondent level. There is one file per year, each sorted by HHIDPN. The files correspond

More information

HEALTH AND RETIREMENT STUDY. Child ZIP Codes: 2004, 2006, Data Description and Usage

HEALTH AND RETIREMENT STUDY. Child ZIP Codes: 2004, 2006, Data Description and Usage HEALTH AND RETIREMENT STUDY Child ZIP Codes: 2004, 2006, 2008 Data Description and Usage Version 3.0, November 2009 (Documentation revised August 2010) To the Restricted Data Investigator: This restricted

More information

Health and Retirement Study. Imputations for Employer-Sponsored Pension Wealth from Current Jobs in Data Description and Usage

Health and Retirement Study. Imputations for Employer-Sponsored Pension Wealth from Current Jobs in Data Description and Usage Health and Retirement Study Imputations for Employer-Sponsored Pension Wealth from Current Jobs in 2004 Version 1 Data Description and Usage 1. Overview and Background The Imputations for Employer-Sponsored

More information

Data Description 2015 Consumption and Activities Mail Survey (CAMS) Version Introduction

Data Description 2015 Consumption and Activities Mail Survey (CAMS) Version Introduction Data Description 2015 Consumption and Activities Mail Survey (CAMS) Version 1.0 1. Introduction In the fall of 2015, questionnaires assessing individual activities and household patterns of consumption

More information

RAND HRS Family Data Documentation, Version C

RAND HRS Family Data Documentation, Version C R RAND HRS Family Data Documentation, Version C Nancy Campbell, Sandy Chien, Regan Main, Patricia St.Clair, Kathleen McGarry, Susann Rohwedder, Julie Zissimopoulos, Delia Bugliari, Drystan Philips, Bernadette

More information

Health and Retirement Study. Imputations for Pension-Related Variables Final, Version 1.0 June Data Description and Usage

Health and Retirement Study. Imputations for Pension-Related Variables Final, Version 1.0 June Data Description and Usage Health and Retirement Study Imputations for Pension-Related Variables Final, Version 1.0 June 2005 Data Description and Usage 1. Overview and Background The Imputations for Pension-Related Variables (Final,

More information

Health and Retirement Study. Imputations for Pension Wealth Final Version 2.0 December Data Description and Usage

Health and Retirement Study. Imputations for Pension Wealth Final Version 2.0 December Data Description and Usage Health and Retirement Study Imputations for Pension Wealth Final Version 2.0 Data Description and Usage 1. Overview and Background The Imputations for Pension Wealth (Version 2.0) data release consists

More information

HEALTH AND RETIREMENT STUDY 1998 Exit Proxy Final Version 1.0 January, Data Description and Usage

HEALTH AND RETIREMENT STUDY 1998 Exit Proxy Final Version 1.0 January, Data Description and Usage HEALTH AND RETIREMENT STUDY 1998 Exit Proxy Final Version 1.0 January, 2005 Data Description and Usage Table of Contents TABLE OF CONTENTS... 2 DATA DESCRIPTION AND USAGE... 4 1. INTRODUCTION... 4 2. THE

More information

Michael Hurd, Susann Rohwedder, Joanna Carroll, Joshua Mallett, Colleen McCullough

Michael Hurd, Susann Rohwedder, Joanna Carroll, Joshua Mallett, Colleen McCullough RAND RAND CAMS Data Documentation, Version 2015 V2 Michael Hurd, Susann Rohwedder, Joanna Carroll, Joshua Mallett, Colleen McCullough August 2017 Funded by the Social Security Administration and the National

More information

EXAMPLE 4: DISTRIBUTING HOUSEHOLD-LEVEL INFORMATION TO RESPONDENTS

EXAMPLE 4: DISTRIBUTING HOUSEHOLD-LEVEL INFORMATION TO RESPONDENTS EXAMPLE 4: DISTRIBUTING HOUSEHOLD-LEVEL INFORMATION TO RESPONDENTS EXAMPLE RESEARCH QUESTION(S): What are the flows into and out of poverty from one year to the next? What explains the probability that

More information

VALIDATING MORTALITY ASCERTAINMENT IN THE HEALTH AND RETIREMENT STUDY. November 3, David R. Weir Survey Research Center University of Michigan

VALIDATING MORTALITY ASCERTAINMENT IN THE HEALTH AND RETIREMENT STUDY. November 3, David R. Weir Survey Research Center University of Michigan VALIDATING MORTALITY ASCERTAINMENT IN THE HEALTH AND RETIREMENT STUDY November 3, 2016 David R. Weir Survey Research Center University of Michigan This research is supported by the National Institute on

More information

Running Descriptive Statistics: Sample and Population Values

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-level and person-level LIS data sets. The exercise concentrates

More information

How to use ADePT for Social Protection Analysis

How to use ADePT for Social Protection Analysis How to use ADePT for Social Protection Analysis Pension Core Course Washington D.C. - May 2015 Objective To learn how to use ADePT Social Protection while analyzing the performance of specific SPL programs

More information

IPUMS Int.l Extraction and Analysis

IPUMS Int.l Extraction and Analysis Minnesota Population Center Training and Development IPUMS Int.l Extraction and Analysis Exercise 1 OBJECTIVE: Gain an understanding of how the IPUMS dataset is structured and how it can be leveraged to

More information

2016 AARP Arizona Voter Retirement Security Survey Annotation

2016 AARP Arizona Voter Retirement Security Survey Annotation 2016 AARP Arizona Voter Retirement Security Survey Annotation Registered Voters Age 35-70 Sampling Questions 1. Age of Respondents [35-70 Registered Voters] 35-49 37.3% 50-64 44.8% 65-70 17.9% 2. Are you

More information

HEALTH AND RETIREMENT STUDY 2016 Tracker Early, Version 1.0 January, Data Description and Usage

HEALTH AND RETIREMENT STUDY 2016 Tracker Early, Version 1.0 January, Data Description and Usage HEALTH AND RETIREMENT STUDY 2016 Tracker Early, Version 1.0 January, 2019 Data Description and Usage Table of Contents 1. INTRODUCTION... 4 2. THE STRUCTURE OF TRACKER 2016... 4 2A. VARIABLE LISTING AND

More information

HRS Documentation Report

HRS Documentation Report HRS Documentation Report Updates to HRS Sample Weights Report prepared by Mary Beth Ofstedal David R. Weir Kuang-Tsung (Jack) Chen James Wagner Survey Research Center University of Michigan Ann Arbor,

More information

RAND CAMS Data Documentation, Version B. Michael Hurd, Susann Rohwedder, Joanna Carroll

RAND CAMS Data Documentation, Version B. Michael Hurd, Susann Rohwedder, Joanna Carroll RAND RAND CAMS Data Documentation, Version B Michael Hurd, Susann Rohwedder, Joanna Carroll March 2011 Labor & Population Program Financial support from the National Institute on Aging and the Social Security

More information

STROKE HOSPITALIZATIONS

STROKE HOSPITALIZATIONS Paper 108 Evaluating and Mapping Stroke Hospitalization Costs in Florida Shamarial Roberson, MPH 1,2, Charlotte Baker, DrPH, MPH, CPH 1, Jamie Forrest MS 2 1 Florida Agricultural and Mechanical University

More information

Data Description. Health and Retirement Study. Tracker 2014

Data Description. Health and Retirement Study. Tracker 2014 Data Description Health and Retirement Study Tracker 2014 Final, Version 1.0 July 2017 Table of Contents 1. INTRODUCTION... 4 2. THE STRUCTURE OF TRACKER 2014... 4 2A. VARIABLE LISTING AND DESCRIPTION...

More information

Examining the Changes in Health Investment Behavior After Retirement

Examining the Changes in Health Investment Behavior After Retirement Examining the Changes in Health Investment Behavior After Retirement Hiroyuki Motegi Yoshinori Nishimura Masato Oikawa Abstract This study examines the effects of retirement on health investment behaviors.

More information

Georgia Newspaper Partnership Poll Sept 2010

Georgia Newspaper Partnership Poll Sept 2010 Georgia Newspaper Partnership Poll Sept 2010 RECOGNIZE RECOGNIZE RECOGNIZE DON'T FAVORABLE UNFAVORABLE NEUTRAL RECOGNIZE SENATE Johnny Isakson 44% 14% 35% 7% Mike Thurmond 22% 7% 34% 37% QUESTION: If the

More information

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total Jenn Selensky gathered data from students in an introduction to psychology course. The data are weights, sex/gender, and whether or not the student worked-out in the gym. Here is the output from a 2 x

More information

Data Description: Assets and Health Dynamics Among the Oldest Old (AHEAD)

Data Description: Assets and Health Dynamics Among the Oldest Old (AHEAD) I. Acknowledgments Data Description: Assets and Health Dynamics Among the Oldest Old (AHEAD) The National Institute on Aging (NIA) provided funding for the first wave of data collection on the study of

More information

Normal populations. Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi

Normal populations. Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi In previous labs where we investigated the distribution of the sample mean and sample proportion, we often noticed that the distribution

More information

Appendix A. Additional Results

Appendix A. Additional Results Appendix A Additional Results for Intergenerational Transfers and the Prospects for Increasing Wealth Inequality Stephen L. Morgan Cornell University John C. Scott Cornell University Descriptive Results

More information

Maintaining Health and Long-Term Care: A Survey on Addressing the Revenue Shortfall in California

Maintaining Health and Long-Term Care: A Survey on Addressing the Revenue Shortfall in California Maintaining Health and Long-Term Care: A Survey on Addressing the Revenue Shortfall in California Data Collected by Woelfel Research, Inc. Report Prepared by Rachelle Cummins Copyright 2002 AARP Knowledge

More information

Nonrandom Selection in the HRS Social Security Earnings Sample

Nonrandom Selection in the HRS Social Security Earnings Sample RAND Nonrandom Selection in the HRS Social Security Earnings Sample Steven Haider Gary Solon DRU-2254-NIA February 2000 DISTRIBUTION STATEMENT A Approved for Public Release Distribution Unlimited Prepared

More information

A European workshop to introduce the EU SILC and the EU LFS data Practical Session Exploring EU SILC. Heike Wirth & Pierre Walthery

A European workshop to introduce the EU SILC and the EU LFS data Practical Session Exploring EU SILC. Heike Wirth & Pierre Walthery A European workshop to introduce the EU SILC and the EU LFS data Practical Session Exploring EU SILC Heike Wirth & Pierre Walthery Exercise 1: Severe material deprivation rate by age, sex, at risk of poverty

More information

2005 Health Confidence Survey Wave VIII

2005 Health Confidence Survey Wave VIII 2005 Health Confidence Survey Wave VIII June 30 August 6, 2005 Hello, my name is [FIRST AND LAST NAME]. I am calling from National Research, a research firm in Washington, D.C. May I speak to the youngest

More information

NSSE Data: Tips and Strategies

NSSE Data: Tips and Strategies Analysis of Multiple Years of NSSE Data: Tips and Strategies Fall 2008 Regional NSSE Users Workshop October 2008 Allison BrckaLorenz Overview Introduction Five Multi Year Analysis Tasks 1. Identifying

More information

COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION

COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION Technical Report: March 2011 By Sarah Riley HongYu Ru Mark Lindblad Roberto Quercia Center for Community Capital

More information

What America Is Thinking Access Virginia Fall 2013

What America Is Thinking Access Virginia Fall 2013 What America Is Thinking Access Virginia Fall 2013 Created for: American Petroleum Institute Presented by: Harris Interactive Interviewing: September 24 29, 2013 Respondents: 616 Virginia Registered Voters

More information

One Proportion Superiority by a Margin Tests

One Proportion Superiority by a Margin Tests Chapter 512 One Proportion Superiority by a Margin Tests Introduction This procedure computes confidence limits and superiority by a margin hypothesis tests for a single proportion. For example, you might

More information

Making Ends Meet: The Role of Community Colleges in Student Financial Health

Making Ends Meet: The Role of Community Colleges in Student Financial Health Making Ends Meet: The Role of Community Colleges in Student Financial Health Methodology Supplement Table of Contents Introduction 2 Methods 2 Results Demographic Tables 5 Analysis Result Tables 8 Introduction

More information

Many Feel Anxious About And Are Behind Schedule In Saving For Retirement

Many Feel Anxious About And Are Behind Schedule In Saving For Retirement 2016 AARP SURVEY OF GEORGIA REGISTERED VOTERS AGES 35-64: STATE RETIREMENT SAVINGS PLAN Many Feel Anxious About And Are Behind Schedule In Saving For Retirement Survey findings show that most Georgia registered

More information

The Affordable Care Act Has Led To Significant Gains In Health Insurance Coverage And Access To Care For Young Adults

The Affordable Care Act Has Led To Significant Gains In Health Insurance Coverage And Access To Care For Young Adults The Affordable Care Act Has Led To Significant Gains In Health Insurance Coverage And Access To Care For Young Adults Benjamin D. Sommers, M.D., Ph.D., Thomas Buchmueller, Ph.D., Sandra L. Decker, Ph.D.,

More information

An Evaluation of Nonresponse Adjustment Cells for the Household Component of the Medical Expenditure Panel Survey (MEPS) 1

An Evaluation of Nonresponse Adjustment Cells for the Household Component of the Medical Expenditure Panel Survey (MEPS) 1 An Evaluation of Nonresponse Adjustment Cells for the Household Component of the Medical Expenditure Panel Survey (MEPS) 1 David Kashihara, Trena M. Ezzati-Rice, Lap-Ming Wun, Robert Baskin Agency for

More information

Access and Infrastructure National April 2014

Access and Infrastructure National April 2014 Access and Infrastructure National April 2014 Created for: American Petroleum Institute Presented by: Nielsen Interviewing: April 3-9, 2014 Respondents: 1,003 Registered Voters Method: Telephone Sample:

More information

GUIDELINES FOR MEASURING DISPROPORTIONATE IMPACT IN EQUITY PLANS CALIFORNIA COMMUNITY COLLEGES CHANCELLORS OFFICE JULY 6, 2014 REVISION

GUIDELINES FOR MEASURING DISPROPORTIONATE IMPACT IN EQUITY PLANS CALIFORNIA COMMUNITY COLLEGES CHANCELLORS OFFICE JULY 6, 2014 REVISION GUIDELINES FOR MEASURING DISPROPORTIONATE IMPACT IN EQUITY PLANS CALIFORNIA COMMUNITY COLLEGES CHANCELLORS OFFICE JULY 6, 2014 REVISION INTRODUCTION AND BACKGROUND This document presents two methodologies

More information

Instructional Reminder Regarding: Collection of Applicant s Ethnicity, Race and Sex on the Loan Application Demographic Information Addendum

Instructional Reminder Regarding: Collection of Applicant s Ethnicity, Race and Sex on the Loan Application Demographic Information Addendum Instructional Reminder Regarding: Collection of Applicant s Ethnicity, Race and Sex on the Loan Application Demographic Information Addendum The Government Monitoring Information (GMI) is now collected

More information

EXAMPLE 6: WORKING WITH WEIGHTS AND COMPLEX SURVEY DESIGN

EXAMPLE 6: WORKING WITH WEIGHTS AND COMPLEX SURVEY DESIGN EXAMPLE 6: WORKING WITH WEIGHTS AND COMPLEX SURVEY DESIGN EXAMPLE RESEARCH QUESTION(S): How does the average pay vary across different countries, sex and ethnic groups in the UK? How does remittance behaviour

More information

TAXES STUDY. * = less than 1% - = question not asked/zero respondents

TAXES STUDY. * = less than 1% - = question not asked/zero respondents FINAL DATA - April 4, 2008. Interviews conducted March 24 to April 3, 2008. Margin of sampling error for all adults: +/- 3.1 percentage points. TAXES STUDY S Q32. WHAT BEST DESCRIBES YOUR RESPONSIBILITY

More information

HEALTH AND RETIREMENT STUDY Prescription Drug Study Final Release V1.0, March 2011 (Sensitive Health Data) Data Description and Usage

HEALTH AND RETIREMENT STUDY Prescription Drug Study Final Release V1.0, March 2011 (Sensitive Health Data) Data Description and Usage HEALTH AND RETIREMENT STUDY 2007 Prescription Drug Study Final Release V1.0, (Sensitive Health Data) Data Description and Usage To the researcher: This data set is intended for exclusive use by you under

More information

THE HEALTH AND RETIREMENT STUDY: AN INTRODUCTION

THE HEALTH AND RETIREMENT STUDY: AN INTRODUCTION THE HEALTH AND RETIREMENT STUDY: AN INTRODUCTION TUTORIAL SUMMARY History Building the Sample Study Design Study Content HISTORY HRS BEGINS AND GROWS Created in 1990 by an act of Congress to provide data

More information

Random digit dial Results are weighted to be representative of registered voters.

Random digit dial Results are weighted to be representative of registered voters. Keystone XL Pipeline National April 2014 Created for: American Petroleum Institute Presented by: Nielsen Interviewing: April 16 20, 2014 Respondents: 1000 registered voters Method: Telephone Sample: Random

More information

Applications of Data Analysis (EC969) Simonetta Longhi and Alita Nandi (ISER) Contact: slonghi and

Applications of Data Analysis (EC969) Simonetta Longhi and Alita Nandi (ISER) Contact: slonghi and Applications of Data Analysis (EC969) Simonetta Longhi and Alita Nandi (ISER) Contact: slonghi and anandi; @essex.ac.uk Week 2 Lecture 1: Sampling (I) Constructing Sampling distributions and estimating

More information

COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION

COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION Technical Report: February 2013 By Sarah Riley Qing Feng Mark Lindblad Roberto Quercia Center for Community Capital

More information

Self-Perceived Stress at Work

Self-Perceived Stress at Work Facts on Self-Perceived Stress at Work September 2016 in Durham Region Highlights In 2013/2014, 18% of Durham Region residents 12 and older reported they felt stressed at work on most days in the past

More information

Harmonized CHARLS Documentation

Harmonized CHARLS Documentation Harmonized CHARLS Documentation VERSION C, APRIL 2018 Sidney Beaumaster, Sandy Chien, Samuel Lau, Ashley Lin, Drystan Phillps, Jenny Wilkens, & Jinkook Lee We greatly appreciate support from the National

More information

Results by Oversampled Audiences June 2014

Results by Oversampled Audiences June 2014 Results by Oversampled Audiences June 2014 SURVEY OVERVIEW Methodology Penn Schoen Berland completed 3,279 telephone interviews between April 3, 2014 and May 6, 2014 This report includes the following

More information

IPUMS Training and Development: Requesting Data

IPUMS Training and Development: Requesting Data IPUMS Training and Development: Requesting Data IPUMS PMA Exercise 1 OBJECTIVE: Gain an understanding of how IPUMS PMA household and female datasets are structured and how it can be leveraged to explore

More information

Poll Report: Small Business Owners Views on Retirement Security

Poll Report: Small Business Owners Views on Retirement Security Poll Report: Small Business Owners Views on Retirement Security Based on a scientific phone survey of small business owners nationwide June 2013 Main Street Alliance www.mainstreetalliance.org American

More information

COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION

COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION COMMUNITY ADVANTAGE PANEL SURVEY: DATA COLLECTION UPDATE AND ANALYSIS OF PANEL ATTRITION Technical Report: February 2012 By Sarah Riley HongYu Ru Mark Lindblad Roberto Quercia Center for Community Capital

More information

Life Insurance Association of Singapore Survey Results. 10 November 2006

Life Insurance Association of Singapore Survey Results. 10 November 2006 Life Insurance Association of Singapore Survey Results 10 November 2006 1 Research Objectives To ascertain : The general population s understanding of life insurance The general population s perception

More information

Random digit dial Results are weighted to be representative of Maryland registered voters.

Random digit dial Results are weighted to be representative of Maryland registered voters. Access and Infrastructure Maryland April 2014 Created for: American Petroleum Institute Presented by: Nielsen Interviewing: April 9 16, 2014 Respondents: 602 registered voters Method: Telephone Sample:

More information

HEALTH AND RETIREMENT STUDY Prescription Drug Study Final Release V1.0, November 2008 (Sensitive Health Data) Data Description and Usage

HEALTH AND RETIREMENT STUDY Prescription Drug Study Final Release V1.0, November 2008 (Sensitive Health Data) Data Description and Usage HEALTH AND RETIREMENT STUDY 2005 Prescription Drug Study Final Release V1.0, (Sensitive Health Data) Data Description and Usage To the researcher: This data set is intended for exclusive use by you under

More information

Random digital dial Results are weighted to be representative of registered voters Sampling Error: +/-4% at the 95% confidence level

Random digital dial Results are weighted to be representative of registered voters Sampling Error: +/-4% at the 95% confidence level South Carolina Created for: American Petroleum Institute Presented by: Harris Poll Interviewing: November 18 22, 2015 Respondents: 607 Registered Voters in South Carolina Method: Telephone Sample: Random

More information

IPUMS Int.l Extraction and Analysis

IPUMS Int.l Extraction and Analysis Minnesota Population Center Training and Development IPUMS Int.l Extraction and Analysis Exercise 1 OBJECTIVE: Gain an understanding of how the IPUMS dataset is structured and how it can be leveraged to

More information

HBAI Datasets Guidance for the Production and Checking of Analysis

HBAI Datasets Guidance for the Production and Checking of Analysis UK Data Archive Study Number 5828 - Households Below Average Income, 1994/95-2016/17 HBAI Datasets Guidance for the Production and Checking of Analysis This user documentation has been designed for SAS

More information

Module 9: Single-level and Multilevel Models for Ordinal Responses. Stata Practical 1

Module 9: Single-level and Multilevel Models for Ordinal Responses. Stata Practical 1 Module 9: Single-level and Multilevel Models for Ordinal Responses Pre-requisites Modules 5, 6 and 7 Stata Practical 1 George Leckie, Tim Morris & Fiona Steele Centre for Multilevel Modelling If you find

More information

Bulk LMI Data Template File Format Info & Requirements

Bulk LMI Data Template File Format Info & Requirements Bulk LMI Data Template File Format Info & Requirements 07 October 2015 Document purpose This document provides an overview of the QBE Bulk LMI data template which is used to load data into our system for

More information

IPUMS Int.l Extraction and Analysis

IPUMS Int.l Extraction and Analysis Minnesota Population Center Training and Development IPUMS Int.l Extraction and Analysis Exercise 2 OBJECTIVE: Gain an understanding of how the IPUMS dataset is structured and how it can be leveraged to

More information

Wisconsin Longitudinal Study Codebook

Wisconsin Longitudinal Study Codebook In Person: Assets JASSETS Assets Module OVERVIEW The 2010 asset section largely builds on the 2004 asset module One major change is that in this round of interviews asset values were collected together

More information

PENSION POLL 2015 TOPLINE RESULTS

PENSION POLL 2015 TOPLINE RESULTS PENSION POLL 2015 TOPLINE RESULTS RELEASED: FEBRUARY 6, 2015 The Reason-Rupe Pension Poll interviewed 1,003 adults on both mobile (501) and landline (502) phones, including 290 respondents without landlines,

More information

SASKATCHEWAN FINANCE

SASKATCHEWAN FINANCE SASKATCHEWAN FINANCE PROVINCIAL PUBLIC OPINION SURVEY Report Summary March 006 Saskatchewan Finance Provincial Public Opinion Survey Report Summary Prepared for: Saskatchewan Finance 50 Albert Street Regina,

More information

Edinburgh Research Explorer

Edinburgh Research Explorer Edinburgh Research Explorer The affects of health shocks and house prices on debt holdings by older Americans Citation for published version: Crook, J & Hochguertel, S 2010, 'The affects of health shocks

More information

Sun Life Financial Group Enrollment form

Sun Life Financial Group Enrollment form Sun Life Financial Group Enrollment form Sun Life Assurance Company of Canada Sun Life and Health Insurance Company (U.S.) Wellesley Hills, MA 02481 Wellesley Hills, MA 02481 1 General information Employer

More information

KEY FINDINGS. Louisiana Law Should be Changed to Cap Payday Loan APR s and Fees (n= 600 Louisiana Residents 18+)

KEY FINDINGS. Louisiana Law Should be Changed to Cap Payday Loan APR s and Fees (n= 600 Louisiana Residents 18+) Summary of AARP Poll of Louisianans Age 18+: Opinions on Payday Loan Rates and Legislation, November 2013 Prepared by Aisha Bonner, AARP Research A majority of Louisianans believe that it is important

More information

AYear-EndLookatthe EconomicSlowdown simpact onmiddle-aged andolderamericans

AYear-EndLookatthe EconomicSlowdown simpact onmiddle-aged andolderamericans AYear-EndLookatthe EconomicSlowdown simpact onmiddle-aged andolderamericans January2009 A Year-End Look at the Economic Slowdown s Impact on Middle-Aged and Older Americans January 2009 Survey Fielded

More information

You created this PDF from an application that is not licensed to print to novapdf printer (http://www.novapdf.com)

You created this PDF from an application that is not licensed to print to novapdf printer (http://www.novapdf.com) Monday October 3 10:11:57 2011 Page 1 (R) / / / / / / / / / / / / Statistics/Data Analysis Education Box and save these files in a local folder. name:

More information

Employer-Sponsored Health Insurance Coverage Wisconsin Family Health Survey

Employer-Sponsored Health Insurance Coverage Wisconsin Family Health Survey Employer-Sponsored Health Insurance Coverage Wisconsin Family Health Survey 2002 and 2003 February 2, 2005 Prepared by APS Healthcare, Inc. 210 E. Doty Street, Suite 210 Madison, WI 53703 Table of Contents

More information

SUBJECT: SUMMARY OF THE JULY 2016 DATE: July 27, 2016 PUBLIC OPINION SURVEY ON THE PROPOSED BUSINESS TAX MODERNIZATION SUPPLEMENTAL

SUBJECT: SUMMARY OF THE JULY 2016 DATE: July 27, 2016 PUBLIC OPINION SURVEY ON THE PROPOSED BUSINESS TAX MODERNIZATION SUPPLEMENTAL COUNCIL AGENDA: 08/02/16 ITEM: 3.3 CITY OF SzT 13 SAN JOSE CAPITAL OF SILICON VALLEY Memorandum TO: HONORABLE MAYOR AND CITY COUNCIL FROM: David Vossbrink SUBJECT: SUMMARY OF THE JULY 2016 DATE: July 27,

More information

What America Is Thinking On Energy Issues. Production & Infrastructure: New Jersey

What America Is Thinking On Energy Issues. Production & Infrastructure: New Jersey Nielsen What America Is Thinking On Energy Issues Production & Infrastructure: New Jersey August 2014 Methodology Audience: 602 Registered Voters Methodology: Telephone interviews Interview Dates: July

More information

What America Is Thinking On Energy Issues. Production & Infrastructure: Missouri

What America Is Thinking On Energy Issues. Production & Infrastructure: Missouri Nielsen What America Is Thinking On Energy Issues Production & Infrastructure: Missouri August 2014 Methodology Audience: 614 Registered Voters Methodology: Telephone interviews Interview Dates: July 29

More information

AP-AOL MONEY & FINANCE POLL

AP-AOL MONEY & FINANCE POLL REAL ESTATE STUDY Q17. DURING THE PAST TWO YEARS, DID YOU BUY A HOUSE OR CONDOMINIUM, OR NOT? September, 19-26 2006 YES 10% 16% NO 90% 84% Q18. HOW LIKELY IS IT THAT YOU WILL BUY A HOUSE OR CONDOMINIUM

More information

Did the Social Assistance Take-up Rate Change After EI Reform for Job Separators?

Did the Social Assistance Take-up Rate Change After EI Reform for Job Separators? Did the Social Assistance Take-up Rate Change After EI for Job Separators? HRDC November 2001 Executive Summary Changes under EI reform, including changes to eligibility and length of entitlement, raise

More information

Harmonized LASI Pilot Data Documentation

Harmonized LASI Pilot Data Documentation WORKING PAPER Harmonized LASI Pilot Data Documentation Version A Chiaying Sandy Chien, Kevin Carter Feeney, Jenny Liu, Erik Meijer, Jinkook Lee RAND Labor & Population WR-1018 October 2013 This paper series

More information

How to use ADePT for Social Protection Analysis

How to use ADePT for Social Protection Analysis How to use ADePT for Social Protection Analysis Public Disclosure Authorized Public Disclosure Authorized Public Disclosure Authorized Social Safety Nets Core Course Washington D.C. - April 25 May 6, 2016

More information

2.1 Introduction Computer-assisted personal interview response rates Reasons for attrition at Wave

2.1 Introduction Computer-assisted personal interview response rates Reasons for attrition at Wave Dan Carey Contents Key Findings 2.1 Introduction... 18 2.2 Computer-assisted personal interview response rates... 19 2.3 Reasons for attrition at Wave 4... 20 2.4 Self-completion questionnaire response

More information

CHAPTER 4 ESTIMATES OF RETIREMENT, SOCIAL SECURITY BENEFIT TAKE-UP, AND EARNINGS AFTER AGE 50

CHAPTER 4 ESTIMATES OF RETIREMENT, SOCIAL SECURITY BENEFIT TAKE-UP, AND EARNINGS AFTER AGE 50 CHAPTER 4 ESTIMATES OF RETIREMENT, SOCIAL SECURITY BENEFIT TAKE-UP, AND EARNINGS AFTER AGE 5 I. INTRODUCTION This chapter describes the models that MINT uses to simulate earnings from age 5 to death, retirement

More information

Chartpack Examining Sources of Supplemental Insurance and Prescription Drug Coverage Among Medicare Beneficiaries: August 2009

Chartpack Examining Sources of Supplemental Insurance and Prescription Drug Coverage Among Medicare Beneficiaries: August 2009 Chartpack Examining Sources of Supplemental Insurance and Prescription Drug Coverage Among Medicare Beneficiaries: Findings from the Medicare Current Beneficiary Survey, 2007 August 2009 This chartpack

More information

GSS 2008 Sample Panel Wave 2

GSS 2008 Sample Panel Wave 2 GSS 2008 Sample Panel Wave 2 Released in January 2012 I. Overview This GSS panel dataset has two waves of interviews: originally sampled and interviewed in 2008 and for the second wave in 2010. Among the

More information

Same-Sex Marriage And Religion. Commissioned by: Australian Marriage Equality August 2011

Same-Sex Marriage And Religion. Commissioned by: Australian Marriage Equality August 2011 Same-Sex Marriage And Religion Commissioned by: Australian Marriage Equality August 2011 1. Methodology Methodology This study was conducted on the Galaxy Online Omnibus on the weekend of 5-7 August 2011.

More information

July Sub-group Audiences Report

July Sub-group Audiences Report July 2013 Sub-group Audiences Report SURVEY OVERVIEW Methodology Penn Schoen Berland completed 4,000 telephone interviews among the following groups between April 4, 2013 and May 3, 2013: Audience General

More information

New Jersey economic issues poll April 5-14, 2018 Stockton Polling Institute Weighted frequencies

New Jersey economic issues poll April 5-14, 2018 Stockton Polling Institute Weighted frequencies New Jersey economic issues poll April 5-14, 2018 Stockton Polling Institute Weighted frequencies Q1. How would you rate the U.S. economy: Frequency Valid Valid Excellent 47 6.6 6.6 6.6 Good 302 42.1 42.1

More information

Medical Expenditure Panel Survey. Household Component Statistical Estimation Issues. Copyright 2007, Steven R. Machlin,

Medical Expenditure Panel Survey. Household Component Statistical Estimation Issues. Copyright 2007, Steven R. Machlin, Medical Expenditure Panel Survey Household Component Statistical Estimation Issues Overview Annual person-level estimates Overlapping panels Estimation variables Weights Variance Pooling multiple years

More information

APPLICATION FOR HOUSING

APPLICATION FOR HOUSING APPLICATION FOR HOUSING All applicants must demonstrate a Need, an Ability to Pay a mortgage and a Willingness to Partner. The following information outlines the Home Ownership Program requirements. If

More information

A New Look at Technical Progress and Early Retirement

A New Look at Technical Progress and Early Retirement A New Look at Technical Progress and Early Retirement Lorenzo Burlon* Bank of Italy Montserrat Vilalta-Bufí University of Barcelona IZA/RIETI Workshop Changing Demographics and the Labor Market May 25,

More information

LTAS Manual. Page 1 of 93

LTAS Manual. Page 1 of 93 LTAS Manual Page 1 of 93 Contents Chapter 1. Introduction & Acknowledgements 8 Chapter 2. Overview of LTAS and Statistics Used for Analysis 9 Chapter 3. Getting Started 13 Chapter 4. Creating LTAS.NET

More information

Labour Market: Analysis of the NIDS Wave 1 Dataset

Labour Market: Analysis of the NIDS Wave 1 Dataset Labour Market: Analysis of the NIDS Wave 1 Dataset Discussion Paper no. 12 Vimal Ranchod Southern African Labour & Development Research Unit vimal.ranchhod@gmail.com July 2009 1. Introduction The purpose

More information

How the Survey was Conducted Nature of the Sample: HBO Real Sports/Marist Poll of 1,298 National Adults

How the Survey was Conducted Nature of the Sample: HBO Real Sports/Marist Poll of 1,298 National Adults How the Survey was Conducted Nature of the Sample: HBO Real Sports/Marist Poll of 1,298 This survey of 1,298 adults was conducted September 15 th through September 20 th, 2016 by The Marist Poll, sponsored

More information

Behavioral Analysis Summary for Ascension Parish During Hurricane Events

Behavioral Analysis Summary for Ascension Parish During Hurricane Events Ascension Parish Total Population by Evacuation Phase Parish Phase 1 Evacuation Phase 2 Evacuation Phase 3 Evacuation Total Population 11,692 103,046 Ascension N/A 114,738 1 9 Total population by Evacuation

More information

Region IV RMIC. SMART HR Retiree and COBRA Insurance Setup & Processing

Region IV RMIC. SMART HR Retiree and COBRA Insurance Setup & Processing Region IV RMIC SMART HR Retiree and COBRA Insurance Setup & Processing Revised May 2009 Contents COBRA Checklist... 3 Retiree and COBRA Insurance Processing in SMART HR... 4 Coverage Continuation Notices

More information

Hello, my name is from HAI, a national research firm.

Hello, my name is from HAI, a national research firm. Copyright 2014 April 24-30, 2014 400 Interviews New Hampshire HAI3235 Margin of Error: +/- 4.9% Hello, my name is from HAI, a national research firm. [IF LANDLINE] We're conducting a survey in New Hampshire

More information

SAMPLE APPLICATION PDF - Small Grant Project Support for Public Schools, Universities/Colleges, Governmental Units, & Religious Entities

SAMPLE APPLICATION PDF - Small Grant Project Support for Public Schools, Universities/Colleges, Governmental Units, & Religious Entities SAMPLE APPLICATION PDF - Small Grant Project Support for Public Schools, Universities/Colleges, Governmental Units, & Religious Entities IMPORTANT: Below are a series of questions that will be asked before

More information

YouGov / Avon UK Survey Results

YouGov / Avon UK Survey Results YouGov / Avon UK Survey Results Sample Size: 1995 Fieldwork: 9th - 11th November 2009 Total Gender Age Socialgrade Region Male Female 18 to 24 25 to 34 35 to 44 45 to 54 55+ ABC1 C2DE North Midlands East

More information

Behavioral Analysis Summary for Lafourche Parish During Hurricane Events

Behavioral Analysis Summary for Lafourche Parish During Hurricane Events Lafourche Parish Total Population by Evacuation Phase Parish Phase 1 Evacuation Phase 2 Evacuation Phase 3 Evacuation Total Population 23,394 74,080 Lafourche N/A 97,474 24. 76. Total population by Evacuation

More information