The Survey of Income and Program Participation (SIPP) * Useful Tools for Data Analysis using the SIPP

Size: px
Start display at page:

Download "The Survey of Income and Program Participation (SIPP) * Useful Tools for Data Analysis using the SIPP"

Transcription

1 The Survey of Income and Program Participation (SIPP) * Useful Tools for Data Analysis using the SIPP H. Luke Shaefer University of Michigan School of Social Work National Poverty Center This presentation is part of the NSF Census Research Network project of the Institute for Social Research at the University of Michigan. It is funded by National Science Foundation Grant No. SES Useful Tools This presentation will work through a number of examples of analyses that can be undertaken using the SIPP All are drawn from my own Stata syntax, so you use at your own risk (although I think it s all clean) You may be a more efficient programmer than I am Either way, these tools may start to offer some ideas as you learn to really exploit the SIPP data 1

2 Example: Who Are the Uninsured? SIPP estimates of the uninsured are based on questions about insurance type, three variables in particular: Variable ecdmth ecrmth ehimth emcocov Description Medicaid coverage (includes CHIP) 1 = yes 2 = no Medicare coverage 1 = yes 2 = no All other coverage 1 = yes 2 = no Type of public coverage Who Are the Uninsured? So, for a cross-sectional estimate, you might do something like: delimit;! gen uninsured = 1;! /* Thanks to imputation of public-use SIPP files, we don t have to worry about missing data above! Why would we otherwise? */! replace uninsured = 0 if ecdmth == 1 ehimth == 1 ecrmth == 1;! /*Might as well just keep the reporting month */! keep if srefmon ==4;! /* Assume we already survey set the data */! svy: proportion uninsured;! 2

3 Who Are the Uninsured? So, for a cross-sectional estimate, you might do something like: Uninsured in a Given Month (2008, W1) Estimate All 16.7% Children 12.7% Young Adults 31.3% Working-age Adults 19.6% Seniors 1% Strength of the SIPP: Leads and Lags Measuring program entry/exit is a primary purposes of the SIPP So how do you identify someone who goes from insured to uninsured, or uninsured to insured? /* Let s order each respondent s data chronologically */! sort sippid swave srefmon;! /* Then use the person identifier and chronologically ordered SIPP data to generate a lag variable for a respondent s insurance status in the previous month. When will this be missing? */! by sippid: gen uninsuredlag = uninsured[_n-1];! svy: tab uninsuredlag uninsured, row col;! This will create an insurance transition matrix that looks like this: Insurance Status Insured month t Uninsured month t Insured month t-1 #, % #, % Uninsured month t-1 #, % #, % 3

4 528 Medical Care Research and Review 68(5) Table 1. Changes in the Month-to-Month Stability of Children s Health Insurance by Starting Insurance Coverage: Percent Change From to Started with private insurance.665 (.004).675 (.005).600 (.003)* + 9.8% Lost coverage.038 (.001).036 (.001).053 (.001)* % Changed source of coverage.015 (.000).015 (.001).034 (.001)* % No change stably insured.947 (.001).949 (.001).913 (.001)* + 3.6% Started with public insurance.184 (.003).176 (.004).260 (.003)* % Lost coverage.078 (.002).136 (.003)*.125 (.002)* % Changed source of coverage.059 (.003).066 (.002).078 (.002)* % No change - stably insured.862 (.002).797 (.004)*.797 (.003)* 7.5% Started uninsured.151 (.003).148 (.003).140 (.002)* + 7.3% Gained private.161 (.003).165 (.004).198 (.004)* + 23% Gained Public.085 (.002).123 (.004)*.185 (.004)* % No change - stably uninsured.754 (.004).712 (.004)*.617 (.006)* % Source: Authors calculations from a pooled sample of the Survey of Income and Program Participation. *Difference with is statistically significant at or above the.05 level. + Difference with is statistically significant at or above the.05 level. Hill & Shaefer, (2011) use these robust, adjusted standard errors. Furthermore, in assigning statistical significance in Table 1, we use a two-sided t test of the difference of means (in most cases proportions) for large and independent random samples, because we stack multiple panels of the SIPP. For all observations, Who we compare Are the respondent s Uninsured? insurance state in time t (in the fourth reference month of a wave) to their insurance state in time t + 1 (in the first reference How about month of over the next the wave). course We of focus a year, on health like insurance 2009? state transitions from month First to month load in because the necessary such an analysis waves, faces and fewer keep concerns 2009 about observations. nonrandom attrition than ones based on longer periods. In alternative models, we measured transitions Use the person identifier to track insurance status across the between t and t + 4 (two reporting months), and results were substantively similar. In calendar year. our analysis of the full study period, we stack years into three periods, 1990 to 1994 (pre-schip), Estimates 1996 must to 1999 use (SCHIP the calendar-year implementation), weights, and 2001 to so 2005 we survey (post-schip). set 1990 the to 1994 data and slightly 2001 to differently 2005 are particularly below. good for comparison: both included a mild recession keep if and rhcalyr an economic == 2009;! recovery. The sort second sippid part of swave our analysis srefmon;! focuses on identifying child and family characteristics associated by sippid: with egen transitions uninsuredallyear insurance states = (both min(uninsured);! losing and gaining coverage) in the most by sippid: recent period, egen 2001 uninsured1mnth to We use = demographic max(uninsured);! characteristics of families in time /* Keep t and a 1 set observation of dynamic characteristics per person, (indicating let s say changes for in January. family characteristics) Respondents that are marked must by be a change present between in January time t and of time the t + year 1. For to a change get a in employment, calendar-year we code a change weight in */! the employment of the family head between the two interviews working keep if rhcalmn (not == working) 1;! full-time at time t to not working (working) svyset ghlfsam [pw = lgtcy1wt], strata(gvarstr)! svy: proportion uninsuredallyear uninsured1mnth! Downloaded from mcr.sagepub.com at UNIV OF MICHIGAN on September 16,

5 Who Are the Uninsured? Uninsured in Calendar Year 2009 (Panel 2008, Wave 1) All Year Ever in Year? All 9.5% 26.1% Children 4.0% 26.8% Young Adults 18.2% 47.1% Working-age Adults 12.5% 27.5% More Leads and Lags How do you identify someone who goes from working in month t-1 to to unemployed in month t? USEFUL CENSUS RECODE FOR LABOR FORCE STATUS: RMESR 1. With a job entire month, worked all weeks 2. With a job entire month, absent from work without pay 1+ weeks, absence not due to layoff 3. With a job entire month, absent from work without pay 1+ weeks, absence due to layoff 4. With a job at least 1 but not all weeks, no time on layoff and no time looking for work 5. With a job at least 1 but not all weeks, remaining weeks on layoff or looking for work 6. No job all month, on layoff or looking for work all weeks 7. No job all month, at least one but not all weeks on layoff or looking for work 8.No job all month, no time on layoff and no time looking for work. 5

6 More Leads and Lags How do you identify someone who goes from working in month t-1 to to unemployed in month t? USEFUL CENSUS RECODE FOR LABOR FORCE STATUS: RMESR 1. With a job entire month, worked all weeks Working 2. With a job entire month, absent from work without pay 1+ weeks, absence not due to layoff 3. With a job entire month, absent from work without pay 1+ weeks, absence due to layoff 4. With a job at least 1 but not all weeks, no time on layoff and no time looking for work 5. With a job at least 1 but not all weeks, remaining weeks on layoff or looking for work Not Working 6. No job all month, on layoff or looking for work all weeks 7. No job all month, at least one but not all weeks on layoff or looking for work 8.No job all month, no time on layoff and no time looking for work. More Leads and Lags How do you identify someone who goes from working in month t-1 to to unemployed in month t? Append, for example, 2008 panels, waves 1 & 2, let s use reporting months. What does this do? keep if srefmon == 4;! /* Order each respondent s observations chronologically */! sort sippid swave srefmon;! /* Construct a lag variable to see a respondent s work status in t-1, in this case the last reporting month */! by sippid: gen rmesrlag = rmesr[_n-1];! keep if tage >22 & tage <65 & swave == 2;! gen worklag = 0 if rmesrlag <.;! replace worklag = 1 if rmesrlag == 1 rmesrlag == 2 rmesrlag == 3;! /* Don t have to worry about missing data in t because of imputation. Why do we worry about missing data in rmesrlag? */! gen unemployed = 0;! replace unemployed = 1 if rmesr == 5 rmesr == 6 rmesr == 7;! gen worktounemp = 1 if worklag == 1 & unemployed == 1;! 6

7 Program Participation: Single Mothers Entering Unemployment (Shaefer & Wu, 2009) Single Mothers and UI 221 Fig. 1. Program participation of single mothers entering into unemployment. UI p unemployment insurance; Cash Welfare p Aid to Families with Dependent Children and Temporary Assistance for Needy Families; FSP p Food Stamp Program (now Supplemental NutritionIncome Assistance Program); Comes Any p percentage in of respondents All Shapes who reported participation in any of the three programs. Source: Authors analyses using a pooled sample of the panels from the Survey of Income and Program Participation. and Sizes $29.50 Lots more of than different single, childless income women variables remember in the prereform period that to $93.95 the less SIPP in theasks postreform lots of period. detailed While questions these point about estimates are not significant, income the sources difference between them is significant at the p!.10 level. thtotinc/tftotinc/tstotinc/tptotinc: Census Changing aggregates Participationall inincome Other Public sources Programs up over into Time a total Two other income forms measure of support that for the low-educated, unit of analysis single mothers may access when entering a spell of unemployment are cash welfare and the FSP. thearn/tfearn/tsearn/tpearn: Reaggregated total Cash welfare was the primary target of the 1996 welfare reform, so the major changes earned leading income to for declines the unit in cash of assistance analysis (AFDC and TANF) caseloads affected low-educated, single mother particularly. With a caseload of 25.7 million individuals in 2005, the FSP served more individuals Other types of income measures: Property, other, public benefits, retirement distributions than TANF (4.5 million), UI (7.9 million), and even the EITC (22.8 million; Scholz, Moffitt, and Cowan 2009). Figure 1 plots the annual rates at which these programs benefits are received by low-educated, single mothers entering a spell of unemployment. Between 1990 and 1993, the rates at which single mothers entering a spell of unemployment received UI benefits were nearly identical to those at which they received AFDC benefits. Rates of AFDC 7

8 Information on Jobs The SIPP core collects data on up to two jobs per adult respondent, per wave In the event that a person has two jobs, you can use start and end dates for both jobs to see the extent to which they were worked concurrently Available variables of jobs offer extensive information on each job: typical weekly work hours, employer characteristics, union representation, salary hourly, detailed industry and occupation codes Info on employment separations are job-specific Egen Can Be Your Best Friend Let s create a variable with the highest education level in a household in a given month: bysort ssuid shhadid swave srefmon: egen hhed = max(eeducate);! Or an individual s highest educational attainment during the panel: bysort sippid: egen personed = max(eeducate);! Other similar variables can be created for: Ever in poverty, average income during panel Ever uninsured, ever unemployed, ever a part-time worker Presence of a worker in a household 8

9 Generating a Poverty Rate Let s say you want to calculate a poverty rate: The Census Bureau has got your back! 2001/2004 Panels: Census gives a monthly poverty threshold for household/family units Take total household income / poverty threshold gen inctoneeds = (thtotinc/rhpov)*100! Will generate a income-to-needs ratio where 100 means the household is at the poverty line Negative values for thtotinc are generally reflective of high incomes--i don t include them as low income 1996 (& prior) panels: poverty threshold is annualized replace thpov = rhpov/12 if spanel == 1996! Important Notes eorigin: Condensed in the 2004 panel to 1 = hispanic and 2 = not Sad For <= 1996 & 2001 panels, far more detailed Hispanic Origins would be codes 20 to & 2001 panels included detailed MSA codes 2004 & 2008 panels only include metro status == 1, not metro == 2 9

10 Sometimes Things are More Complicated than They Seem Let s say you want to identify unmarried working-age mothers: It s easy if you just want the family/sub-family heads: Identify the family reference person keep if rfoklt18 >0 & rfoklt18 <. But rfoklt18 doesn t work if the mother isn t a reference person! Identifying all single mothers: Part 1 Load in your wave file keep if tage <18 srefmon ==4;! drop if epnmom==9999;! /* This is the mom identfier, it s in the kid s record and points to the mother */! gen kid = 1! /* Now we count up the number of kids who point to a given mom */! bysort spanel ssuid epnmom: egen numkids = count(kid);!! keep ssuid epnmom numkids;! /* the mom number is in a different form from epppnum, so convert */! gen zero = 0;! egen epppnum = concat(zero epnmom);! drop epnmom;! keep ssuid epppnum numkids;! sort ssuid epppnum;! duplicates drop;! save mom.dta, replace;! clear;! 10

11 Identifying all single mothers: Part 2 Now reload your original wave file with all observations keep if srefmon == 4;! sort ssuid epppnum;! merge 1:1 ssuid epppnum using mom.dta!! /* If a woman didn t merge in from working dataset, it s because they don t have kids who are pointing to them, so you can recode a missing value as 0 */! replace numkids = 0 if numkids ==. & esex == 2;! gen singlemom = 0;! replace singlemom = 1 if numkids >0 & ems >=3 & ems <=6 & esex == 2;! 11

The Survey of Income and Program Participation (SIPP)

The Survey of Income and Program Participation (SIPP) The Survey of Income and Program Participation (SIPP) * Using Topical Modules H. Luke Shaefer University of Michigan School of Social Work National Poverty Center This presentation is part of the NSF Census

More information

Unemployment Insurance and Low-Educated Single Working Mothers Before and After Welfare Reform

Unemployment Insurance and Low-Educated Single Working Mothers Before and After Welfare Reform Upjohn Institute Working Papers Upjohn Research home page 2011 Unemployment Insurance and Low-Educated Single Working Mothers Before and After Welfare Reform H. Luke Shaefer University of Michigan Liyun

More information

13. Linking Core Wave, Topical Module, and Longitudinal Research Files

13. Linking Core Wave, Topical Module, and Longitudinal Research Files 13. Linking Core Wave, Topical Module, and Longitudinal Research Files In many situations, a single Survey of Income and Program Participation (SIPP) data file will not contain the information needed for

More information

SIPP User Notes. An example of code for converting these variables into yearly coverage variables is also included in the clean_h program.

SIPP User Notes. An example of code for converting these variables into yearly coverage variables is also included in the clean_h program. SIPP User Notes To: SIPP Users From: Heather Boushey, economist, Center for Economic and Policy Research RE: Set H: Health Insurance Coverage Date: February 13, 2006 Set H covers health insurance variables,

More information

8. Using Sampling Weights on SIPP Files

8. Using Sampling Weights on SIPP Files 8. Using Sampling Weights on SIPP Files This chapter describes the use of sampling weights in analyzing data from the Survey of Income and Program Participation (SIPP) for the current panels. 1 Each SIPP

More information

The dynamics of disconnection for low-income mothers

The dynamics of disconnection for low-income mothers The dynamics of disconnection for low-income mothers Pamela Loprest and Austin Nichols Pamela Loprest is Director of the Income and Benefits Policy Center at The Urban Institute; Austin Nichols is Senior

More information

Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2010 Current Population Survey

Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2010 Current Population Survey September 2010 No. 347 Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2010 Current Population Survey By Paul Fronstin, Employee Benefit Research Institute LATEST

More information

STATISTICAL BRIEF #40

STATISTICAL BRIEF #40 Medical Expenditure Panel Survey STATISTICAL BRIEF #40 Agency for Healthcare Research and Quality May 2004 Health Insurance Coverage and Income Levels for the U.S. Noninstitutionalized Population under

More information

Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2012 Current Population Survey

Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2012 Current Population Survey September 2012 No. 376 Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2012 Current Population Survey By Paul Fronstin, Ph.D., Employee Benefit Research Institute

More information

Rising Extreme Poverty in the United States and the Response of Federal Means-Tested Transfer Programs

Rising Extreme Poverty in the United States and the Response of Federal Means-Tested Transfer Programs National Poverty Center Working Paper Series #13-06 May 2013 Rising Extreme Poverty in the United States and the Response of Federal Means-Tested Transfer Programs H. Luke Shaefer, University of Michigan

More information

Statistical Profile of Unmarried Women: New York 1

Statistical Profile of Unmarried Women: New York 1 1 I. Population, 18 years and older, 2014 2 Total: 13.611 million Men: 6.460 million (47.5% of total) 7.150 million (52.5% of total) Married women: 3 3.237 million (23.8% of total; 45.3% of women) Unmarried

More information

Extending Health Care Coverage to the Low-Income Population: The Influence of the Wisconsin BadgerCare Program on Insurance Coverage

Extending Health Care Coverage to the Low-Income Population: The Influence of the Wisconsin BadgerCare Program on Insurance Coverage Institute for Research on Poverty Discussion Paper no. 1289-04 Extending Health Care Coverage to the Low-Income Population: The Influence of the Wisconsin BadgerCare Program on Insurance Coverage Barbara

More information

Food Assistance Programs and the Economic Patterns of Single Mothers Following Poverty Exits. Quinn Moore. Anu Rangarajan

Food Assistance Programs and the Economic Patterns of Single Mothers Following Poverty Exits. Quinn Moore. Anu Rangarajan Food Assistance Programs and the Economic Patterns of Single Mothers Following Poverty Exits Quinn Moore Anu Rangarajan Peter Schochet Mathematica Policy Research, Inc. Please Correspond to: Quinn Moore

More information

How do benefit adjustments for government transfer programs compare with their participants inflation experiences?

How do benefit adjustments for government transfer programs compare with their participants inflation experiences? How do benefit adjustments for government transfer programs compare with their participants inflation experiences? Leslie McGranahan and Anna L. Paulson Introduction and summary Millions of Americans rely

More information

Employment-Based Health Insurance: 2010

Employment-Based Health Insurance: 2010 Employment-Based Health Insurance: 2010 Household Economic Studies Hubert Janicki Issued February 2013 P70-134 INTRODUCTION More than half of the U.S. population (55.1 percent) had employment-based health

More information

The Risk of Losing Health Insurance Over a Decade: New Findings from Longitudinal Data. Executive Summary

The Risk of Losing Health Insurance Over a Decade: New Findings from Longitudinal Data. Executive Summary The Risk of Losing Health Insurance Over a Decade: New Findings from Longitudinal Data Executive Summary It is often assumed that policies to make health insurance more affordable to the uninsured would

More information

CONNECTICUT FAMILY ECONOMIC SECURITY PROFILE

CONNECTICUT FAMILY ECONOMIC SECURITY PROFILE CONNECTICUT FAMILY ECONOMIC SECURITY PROFILE State policies that promote the economic security of our nation s families can help offset larger economic and social conditions that make it difficult for

More information

Health Status, Health Insurance, and Medical Services Utilization: 2010 Household Economic Studies

Health Status, Health Insurance, and Medical Services Utilization: 2010 Household Economic Studies Health Status, Health Insurance, and Medical Services Utilization: 2010 Household Economic Studies Current Population Reports By Brett O Hara and Kyle Caswell Issued July 2013 P70-133RV INTRODUCTION The

More information

Statistical Profile of Unmarried Women: Texas 1

Statistical Profile of Unmarried Women: Texas 1 1 I. Population, 18 years and older, 2014 2 Total: 16.844 million Men: 8.076 million (47.9% of total) 8.767 million (52.1% of total) Married women: 3 4.443 million (26.4% of total; 50.7% of women) Unmarried

More information

EXTENDING HEALTH CARE COVERAGE TO THE LOW- INCOME POPULATION: THE INFLUENCE OF THE WISCONSIN BADGERCARE PROGRAM ON INSURANCE COVERAGE

EXTENDING HEALTH CARE COVERAGE TO THE LOW- INCOME POPULATION: THE INFLUENCE OF THE WISCONSIN BADGERCARE PROGRAM ON INSURANCE COVERAGE Economic Research Initiative on the Uninsured Working Paper Series EXTENDING HEALTH CARE COVERAGE TO THE LOW- INCOME POPULATION: THE INFLUENCE OF THE WISCONSIN BADGERCARE PROGRAM ON INSURANCE COVERAGE

More information

Health Insurance Coverage: Estimates from the National Health Interview Survey, 2004

Health Insurance Coverage: Estimates from the National Health Interview Survey, 2004 Health Insurance Coverage: Estimates from the National Health Interview Survey, 2004 by Robin A. Cohen, Ph.D., and Michael E. Martinez, M.P.H., Division of Health Interview Statistics, National Center

More information

Changes in Family Health Insurance Coverage for Small and Large Firm Workers and Dependents: Evidence from 1995 to 2005

Changes in Family Health Insurance Coverage for Small and Large Firm Workers and Dependents: Evidence from 1995 to 2005 Changes in Family Health Insurance Coverage for Small and Large Firm Workers and Dependents: Evidence from 1995 to 2005 by Eric E. Seiber Curtis S. Florence Columbus, OH 43210 for Under contract no. SBAHQ-06-M-0513

More information

Statistical Profile of Unmarried Women: Virginia 1

Statistical Profile of Unmarried Women: Virginia 1 1 I. Population, 18 years and older, 2014 2 Total: 5.888 million Men: 2.842 million (48.3% of total) 3.046 million (51.7% of total) Married women: 3 1.646 million (28.0% of total; 54.0% of women) Unmarried

More information

Statistical Profile of Unmarried Women: North Carolina 1

Statistical Profile of Unmarried Women: North Carolina 1 1 I. Population, 18 years and older, 2014 2 Total: 6.857 million Men: 3.204 million (46.7% of total) 3.654 million (53.3% of total) Married women: 3 1.850 million (27.0% of total; 50.6% of women) Unmarried

More information

Jessica S. Banthin and Thomas M. Selden. Agency for Healthcare Research and Quality Working Paper No. 06005. July 2006

Jessica S. Banthin and Thomas M. Selden. Agency for Healthcare Research and Quality Working Paper No. 06005. July 2006 Income Measurement in the Medical Expenditure Panel Survey Jessica S. Banthin and Thomas M. Selden Agency for Healthcare Research and Quality Working Paper No. 06005 July 2006 Suggested citation: Banthin

More information

Statistical Profile of Unmarried Women: Florida 1

Statistical Profile of Unmarried Women: Florida 1 1 I. Population, 18 years and older, 2014 2 Total: 13.879 million Men: 6.551 million (47.2% of total) 7.327 million (52.8% of total) Married women: 3 3.689 million (26.6% of total; 50.4% of women) Unmarried

More information

Statistical Profile of Unmarried Women: Colorado 1

Statistical Profile of Unmarried Women: Colorado 1 1 I. Population, 18 years and older, 2014 2 Total: 3.732 million Men: 1.849 million (49.5% of total) 1.883 million (50.5% of total) Married women: 3 1.053 million (28.2% of total; 55.9% of women) Unmarried

More information

Sources of Health Insurance Coverage: A Look at Changes Between 2013 and 2014 from the March 2014 and 2015 Current Population Survey

Sources of Health Insurance Coverage: A Look at Changes Between 2013 and 2014 from the March 2014 and 2015 Current Population Survey October 2015 No. 419 Sources of Health Insurance Coverage: A Look at Changes Between 2013 and 2014 from the March 2014 and 2015 Current Population Survey By Paul Fronstin, Ph.D., Employee Benefit Research

More information

Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2013 Current Population Survey

Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2013 Current Population Survey September 2013 No. 390 Sources of Health Insurance and Characteristics of the Uninsured: Analysis of the March 2013 Current Population Survey By Paul Fronstin, Ph.D., Employee Benefit Research Institute

More information

SINGLE MOTHERS SINCE 2000: FALLING FARTHER DOWN 1

SINGLE MOTHERS SINCE 2000: FALLING FARTHER DOWN 1 SINGLE MOTHERS SINCE 2000: FALLING FARTHER DOWN 1 For the one in four U.S. families who are single mother families, the Great Recession of 2008-2009 exacerbated a period of losing ground that had started

More information

Children s Health Insurance Timeline

Children s Health Insurance Timeline Children s Health Insurance Timeline Introduction The health and welfare of children has been a longstanding social concern for policymakers in America. With the establishment of Medicaid in 1965, public

More information

Health Insurance Coverage, Poverty, and Income of Veterans: 2000 to 2009

Health Insurance Coverage, Poverty, and Income of Veterans: 2000 to 2009 Health Insurance Coverage, Poverty, and Income of Veterans: 2 to 29 February 211 NCVAS National Center for Veterans Analysis and Statistics Data Source and Methods Data for this analysis come from years

More information

california Health Care Almanac California s Uninsured

california Health Care Almanac California s Uninsured california Health Care Almanac december 2011 Introduction Over the past two decades, California has seen an increase in the percentage of people who are uninsured. California now has the largest number

More information

Custodial Mothers and Fathers and Their Child Support: 2011

Custodial Mothers and Fathers and Their Child Support: 2011 Custodial Mothers and Fathers and Their Child Support: 2011 Current Population Reports By Timothy Grall Issued October 2013 P60-246 IntroductIon This report focuses on the child support income that custodial

More information

PUBLIC HEALTH INSURANCE EXPANSIONS FOR PARENTS: EVIDENCE FROM WISCONSIN

PUBLIC HEALTH INSURANCE EXPANSIONS FOR PARENTS: EVIDENCE FROM WISCONSIN PUBLIC HEALTH INSURANCE EXPANSIONS FOR PARENTS: EVIDENCE FROM WISCONSIN Jason R. Davis, University of Wisconsin Stevens Point ABSTRACT The State Children s Health Insurance Program federal legislation

More information

SURVEY OF INCOME AND PROGRAM PARTICIPATION, 1996 PANEL WAVE 1 HEALTH INSURANCE RECIPIENCY TOPICAL MODULE DATA DICTIONARY

SURVEY OF INCOME AND PROGRAM PARTICIPATION, 1996 PANEL WAVE 1 HEALTH INSURANCE RECIPIENCY TOPICAL MODULE DATA DICTIONARY SUREY OF INCOME AND PROGRAM PARTICIPATION, 1996 PANEL WAE 1 HEALTH INSURANCE RECIPIENCY TOPICAL MODULE DATA DICTIONARY DATA SIZE BEGIN D SSUSEQ 5 1 T SU: Sequence Number of Sample Unit - Primary Sort Key

More information

Social Security: Vital to Retirement Security for 35 Million Women and Men

Social Security: Vital to Retirement Security for 35 Million Women and Men IWPR Publication #D487 March 2010 Social Security: Vital to Retirement Security for 35 Million Women and Men Jeff Hayes, Heidi Hartmann, and Sunhwa Lee This Briefing Paper examines major sources of income

More information

Guide to Health and Social Services

Guide to Health and Social Services Guide to Health and Social Services Health Services If you have little or no insurance and need health services: You can visit one of the 159 county health departments across the state. The local health

More information

The Recession of 2007 2009

The Recession of 2007 2009 The Recession of 2007 2009 February 2012 A general slowdown in economic activity, a downturn in the business cycle, a reduction in the amount of goods and services produced and sold these are all characteristics

More information

Health Insurance Coverage: Estimates from the National Health Interview Survey, 2005

Health Insurance Coverage: Estimates from the National Health Interview Survey, 2005 Health Insurance Coverage: Estimates from the National Health Interview Survey, 2005 by Robin A. Cohen, Ph.D., and Michael E. Martinez, M.P.H., Division of Health Interview Statistics, National Center

More information

Welfare Reform and Health Insurance Coverage of Low-income Families. Revised September 2002

Welfare Reform and Health Insurance Coverage of Low-income Families. Revised September 2002 Welfare Reform and Health Insurance Coverage of Low-income Families Revised September 2002 Robert Kaestner Institute of Government and Public Affairs, University of Illinois at Chicago, 815 W. Van Buren

More information

Changes in Health Insurance Coverage in the Great Recession, 2007-2010 John Holahan and Vicki Chen The Urban Institute Executive Summary

Changes in Health Insurance Coverage in the Great Recession, 2007-2010 John Holahan and Vicki Chen The Urban Institute Executive Summary I S S U E P A P E R kaiser commission on medicaid and the uninsured Changes in Health Insurance Coverage in the Great Recession, 2007-2010 John Holahan and Vicki Chen The Urban Institute Executive Summary

More information

Full-Time Poor and Low Income Workers: Demographic Characteristics and Trends in Health Insurance Coverage, 1996 97 to 2005 06

Full-Time Poor and Low Income Workers: Demographic Characteristics and Trends in Health Insurance Coverage, 1996 97 to 2005 06 MEPS Chartbook No. 18 Medical Expenditure Panel Survey Full-Time Poor and Low Income Workers: Demographic Characteristics and Trends in Health Insurance Coverage, 1996 97 to 2005 06 Agency for Healthcare

More information

Survey of Income and Program Participation (SIPP): Overview, Reengineering, and Self-Sufficiency Research

Survey of Income and Program Participation (SIPP): Overview, Reengineering, and Self-Sufficiency Research Survey of Income and Program Participation (SIPP): Overview, Reengineering, and Self-Sufficiency Research Matthew Marlay, Ph.D., U.S. Census Bureau Ashley Edwards, U.S. Census Bureau Zakia Redd, Moderator

More information

Task 7.2: Final Report

Task 7.2: Final Report A Comparison of the Health Insurance Coverage Estimates from Four National Surveys and Six State Surveys: A Discussion of Measurement Issues and Policy Implications Authors: Michael Davern, Ph.D., Gestur

More information

The Status of Women in Guilford County, North Carolina

The Status of Women in Guilford County, North Carolina IWPR # R363 November 2012 The Status of Women in Guilford County, North Carolina Women in Guilford County, and in North Carolina as a whole, have made significant progress in the last few decades. The

More information

Health Insurance Coverage in Texas

Health Insurance Coverage in Texas Health Insurance Coverage in Texas U.S. Census Current Population Survey 2012 Data March 2014 Fast Facts: Texans & Health Insurance (2012) 6.4 million uninsured Texans, 24.6% of all ages Highest rate in

More information

For Immediate Release

For Immediate Release Household Income Trends May 2015 Issued July 2015 Gordon Green and John Coder Sentier Research, LLC For Immediate Release 1 Household Income Trends May 2015 Note This report on median household income

More information

Workforce Training Results Report

Workforce Training Results Report Report December 2008 Secondary Career and Technical Education (CTE) Secondary CTE serves high school age youth in approximately 238 school districts and 10 Skills Centers throughout the state, preparing

More information

MICHIGAN EARNED INCOME TAX CREDIT Tax Year 2013

MICHIGAN EARNED INCOME TAX CREDIT Tax Year 2013 MICHIGAN EARNED INCOME TAX CREDIT Office of Revenue and Tax Analysis Michigan Department of Treasury February 2015 MICHIGAN EARNED INCOME TAX CREDIT Office of Revenue and Tax Analysis Michigan Department

More information

Demographic Analysis of the Salt River Pima-Maricopa Indian Community Using 2010 Census and 2010 American Community Survey Estimates

Demographic Analysis of the Salt River Pima-Maricopa Indian Community Using 2010 Census and 2010 American Community Survey Estimates Demographic Analysis of the Salt River Pima-Maricopa Indian Community Using 2010 Census and 2010 American Community Survey Estimates Completed for: Grants & Contract Office The Salt River Pima-Maricopa

More information

Comparing 2010 SIPP and 2013 CPS Content Test Health Insurance Offer and Take-Up Rates 1. Hubert Janicki U.S Census Bureau, Washington D.

Comparing 2010 SIPP and 2013 CPS Content Test Health Insurance Offer and Take-Up Rates 1. Hubert Janicki U.S Census Bureau, Washington D. Comparing 2010 SIPP and 2013 CPS Content Test Health Insurance Offer and Take-Up Rates 1 Hubert Janicki U.S Census Bureau, Washington D.C Abstract This brief compares employment-based health insurance

More information

High School Dropouts in Chicago and Illinois: The Growing Labor Market, Income, Civic, Social and Fiscal Costs of Dropping Out of High School

High School Dropouts in Chicago and Illinois: The Growing Labor Market, Income, Civic, Social and Fiscal Costs of Dropping Out of High School High School Dropouts in Chicago and Illinois: The Growing Labor Market, Income, Civic, Social and Fiscal Costs of Dropping Out of High School Prepared by: Andrew Sum Ishwar Khatiwada Joseph McLaughlin

More information

This PDF is a selection from a published volume from the National Bureau of Economic Research

This PDF is a selection from a published volume from the National Bureau of Economic Research This PDF is a selection from a published volume from the National Bureau of Economic Research Volume Title: Frontiers in Health Policy Research, Volume 6 Volume Author/Editor: David M. Cutler and Alan

More information

PARTICIPATION STATUS AMONG VERY POOR FOOD STAMP ELIGIBLE HOUSEHOLDS

PARTICIPATION STATUS AMONG VERY POOR FOOD STAMP ELIGIBLE HOUSEHOLDS VI. PARTICIPATION STATUS AMONG VERY POOR FOOD STAMP ELIGIBLE HOUSEHOLDS As established in the previous chapter, while non-participants might not be participating because they are only temporarily poor,

More information

U.S. TREASURY DEPARTMENT OFFICE OF ECONOMIC POLICY COBRA INSURANCE COVERAGE SINCE THE RECOVERY ACT: RESULTS FROM NEW SURVEY DATA

U.S. TREASURY DEPARTMENT OFFICE OF ECONOMIC POLICY COBRA INSURANCE COVERAGE SINCE THE RECOVERY ACT: RESULTS FROM NEW SURVEY DATA U.S. TREASURY DEPARTMENT OFFICE OF ECONOMIC POLICY COBRA INSURANCE COVERAGE SINCE THE RECOVERY ACT: RESULTS FROM NEW SURVEY DATA COBRA INSURANCE COVERAGE SINCE THE RECOVERY ACT: RESULTS FROM NEW SURVEY

More information

Unemployment Insurance in the Northwest Area Foundation States

Unemployment Insurance in the Northwest Area Foundation States Unemployment Insurance in the Northwest Area Foundation States Ethan Wong and Marieka Klawitter, Evans School of Public Affairs University of Washington In the face of the recent high unemployment rates,

More information

Americans Attitudes Toward Life Insurance

Americans Attitudes Toward Life Insurance Americans Attitudes Toward Life Insurance Survey Findings (General U.S. Adult Population) May, 2008 Products and services offered through the ING family of companies Methodology Methodology Telephone survey

More information

Income and Health Insurance Coverage: Comparing the American Community Survey (ACS) and the Current Population Survey (CPS)

Income and Health Insurance Coverage: Comparing the American Community Survey (ACS) and the Current Population Survey (CPS) Income and Health Insurance Coverage: Comparing the American Community Survey (ACS) and the Current Population Survey (CPS) John L. Czajka Presentation to the 2010 AAPOR Conference May 14, 2010 Portions

More information

A Gender Reversal On Career Aspirations Young Women Now Top Young Men in Valuing a High-Paying Career

A Gender Reversal On Career Aspirations Young Women Now Top Young Men in Valuing a High-Paying Career 1 A Gender Reversal On Career Aspirations Young Women Now Top Young Men in Valuing a High-Paying Career By Eileen Patten and Kim Parker Career Importance, by Gender % of 18-34-year-olds saying being successful

More information

Public Health Insurance Expansions for Parents and Enhancement Effects for Child Coverage

Public Health Insurance Expansions for Parents and Enhancement Effects for Child Coverage Public Health Insurance Expansions for Parents and Enhancement Effects for Child Coverage Jason R. Davis, University of Wisconsin Stevens Point ABSTRACT In 1997, the federal government provided states

More information

Division of Medical Assistance Programs

Division of Medical Assistance Programs January 23-24, 2007 CLIENTS WE SERVE Medicaid eligibility is limited to individuals who fall into specified categories and who are in financial need. The federal Medicaid statute identifies over 25 different

More information

Reasons People Do Not Work: 2004

Reasons People Do Not Work: 2004 Reasons People Do Not Work: 2004 Household Economic Studies Issued September 2007 P70-111 groups is continually being crossed from either side and is subject to seasonal and longer-term shifts. Information

More information

NBER WORKING PAPER SERIES WELFARE REFORM AND HEALTH INSURANCE COVERAGE OF LOW-INCOME FAMILIES. Robert Kaestner Neeraj Kaushal

NBER WORKING PAPER SERIES WELFARE REFORM AND HEALTH INSURANCE COVERAGE OF LOW-INCOME FAMILIES. Robert Kaestner Neeraj Kaushal NBER WORKING PAPER SERIES WELFARE REFORM AND HEALTH INSURANCE COVERAGE OF LOW-INCOME FAMILIES Robert Kaestner Neeraj Kaushal Working Paper 10033 http://www.nber.org/papers/w10033 NATIONAL BUREAU OF ECONOMIC

More information

Sources of Health Insurance Coverage in Georgia 2007-2008

Sources of Health Insurance Coverage in Georgia 2007-2008 Sources of Health Insurance Coverage in Georgia 2007-2008 Tabulations of the March 2008 Annual Social and Economic Supplement to the Current Population Survey and The 2008 Georgia Population Survey William

More information

820 First Street NE, Suite 510 Washington, DC 20002. Tel: 202-408-1080 Fax: 202-408-1056. center@cbpp.org www.cbpp.org.

820 First Street NE, Suite 510 Washington, DC 20002. Tel: 202-408-1080 Fax: 202-408-1056. center@cbpp.org www.cbpp.org. 820 First Street NE, Suite 510 Washington, DC 20002 Tel: 202-408-1080 Fax: 202-408-1056 center@cbpp.org www.cbpp.org January 5, 2011 DESPITE DEEP RECESSION AND HIGH UNEMPLOYMENT, GOVERNMENT EFFORTS INCLUDING

More information

Economic Outlook for Mississippi s s Children and Families

Economic Outlook for Mississippi s s Children and Families Economic Outlook for Mississippi s s Children and Families Economy & State Budget Economic Development Education Health Jobs Looking Ahead Dr. Marianne Hill, Mississippi University Research Center, IHL.

More information

Welfare reform was passed

Welfare reform was passed Was Welfare Reform Successful? Rebecca M. Blank Welfare reform was passed by Congress and signed by President Clinton in August 1996. Back then there were many skeptics: several senior members of President

More information

SECTION I: Current Michigan Policies on Postsecondary Education for Low-income Parents Receiving Public Assistance

SECTION I: Current Michigan Policies on Postsecondary Education for Low-income Parents Receiving Public Assistance SECTION I: Current Michigan Policies on Postsecondary Education for Low-income Parents Receiving Public Assistance 10 Current Michigan Policies The survey and this report focus on the policies and practices

More information

Trends in EITC Take-Up and Receipt for California s Welfare Population, 1992-1999*

Trends in EITC Take-Up and Receipt for California s Welfare Population, 1992-1999* Trends in EITC Take-Up and Receipt for California s Welfare Population, 1992-1999* V. Joseph Hotz UCLA Charles Mullin Vanderbilt University John Karl Scholz University of Wisconsin, Madison August 30,

More information

An updated method for calculating income and payroll taxes from PSID data using the NBERʼs TAXSIM, for PSID survey years 1999 through 2011

An updated method for calculating income and payroll taxes from PSID data using the NBERʼs TAXSIM, for PSID survey years 1999 through 2011 An updated method for calculating income and payroll taxes from PSID data using the NBERʼs TAXSIM, for PSID survey years 1999 through 2011 Sara Kimberlin, Jiyoun Kim, & Luke Shaefer December 2014 Overview

More information

GAO HEALTH INSURANCE. Report to the Committee on Health, Education, Labor, and Pensions, U.S. Senate. United States Government Accountability Office

GAO HEALTH INSURANCE. Report to the Committee on Health, Education, Labor, and Pensions, U.S. Senate. United States Government Accountability Office GAO United States Government Accountability Office Report to the Committee on Health, Education, Labor, and Pensions, U.S. Senate March 2008 HEALTH INSURANCE Most College Students Are Covered through Employer-Sponsored

More information

Strategies to Support Work and Reduce Poverty Eileen Trzcinski

Strategies to Support Work and Reduce Poverty Eileen Trzcinski Strategies to Support Work and Reduce Poverty Eileen Trzcinski Overview of Low Income Working Families in Michigan 1998, the Michigan Budget and Tax Policy Project, an initiative of the Michigan League

More information

The American Council of Life Insurers. Written Statement for the Record. for. Maintaining the Disability Insurance Trust Fund s Solvency.

The American Council of Life Insurers. Written Statement for the Record. for. Maintaining the Disability Insurance Trust Fund s Solvency. The American Council of Life Insurers Written Statement for the Record for Maintaining the Disability Insurance Trust Fund s Solvency Before the United States House Committee on Ways and Means Subcommittee

More information

GAO. UNEMPLOYMENT INSURANCE Receipt of Benefits Has Declined, with Continued Disparities for Low-Wage and Part-Time Workers

GAO. UNEMPLOYMENT INSURANCE Receipt of Benefits Has Declined, with Continued Disparities for Low-Wage and Part-Time Workers GAO For Release on Delivery Expected at 1:00 p.m. EDT Wednesday, September 19, 2007 United States Government Accountability Office Testimony Before the Subcommittee on Income Security and Family Support,

More information

WORKFORCE INVESTMENT ACT

WORKFORCE INVESTMENT ACT COMMONWEALTH OF VIRGINIA VIRGINIA COMMUNITY COLLEGE SYSTEM WORKFORCE INVESTMENT ACT VIRGINIA WORKFORCE LETTER (VWL) 13 05 TO: FROM: SUBJECT: LOCAL WORKFORCE INVESTMENT BOARDS WORKFORCE DEVELOPMENT SERVICES

More information

The Research SUPPLEMENTAL POVERTY MEASURE: 2010

The Research SUPPLEMENTAL POVERTY MEASURE: 2010 The Research SUPPLEMENTAL POVERTY MEASURE: 2010 Consumer Income Issued November 2011 P60-241 INTRODUCTION The current official poverty measure was developed in the early 1960s, and only a few minor changes

More information

September 14, 2011. Several facts stand out from the new Census data:

September 14, 2011. Several facts stand out from the new Census data: 820 First Street NE, Suite 510 Washington, DC 20002 Tel: 202-408-1080 Fax: 202-408-1056 center@cbpp.org www.cbpp.org September 14, 2011 POVERTY RATE SECOND-HIGHEST IN 45 YEARS; RECORD NUMBERS LACKED HEALTH

More information

What It s Worth: Field of Training and Economic Status in 2009

What It s Worth: Field of Training and Economic Status in 2009 What It s Worth: Field of Training and Economic Status in 2009 Household Economic Studies Issued February 2012 P70-129 INTRODUCTION The relationship between educational attainment and economic outcomes

More information

Characteristics of SSI and SSDI Beneficiaries Who Are Parents

Characteristics of SSI and SSDI Beneficiaries Who Are Parents Characteristics of SSI and SSDI Beneficiaries Who Are Parents Gina Livermore and Maura Bardos Presented at the DRC Annual Meeting Washington, DC August 5, 2015 Study Goals Profile working-age Social Security

More information

Expanding Health Insurance to the Uninsured in Kentucky: Estimating Participants and Costs

Expanding Health Insurance to the Uninsured in Kentucky: Estimating Participants and Costs Expanding Health Insurance to the Uninsured in Kentucky: Steven N. Allen Many states have recently offered health insurance benefits to low-income populations who have previously been uninsured or underinsured.

More information

ELE Strategies to Increase Medicaid and SCHIP enrollment

ELE Strategies to Increase Medicaid and SCHIP enrollment Horner, Lazarus, and Morrow Express Lane Eligibility Dawn Horner, Wendy Lazarus, and Beth Morrow Although great progress has been made in providing health coverage to low-income children, 9.2 million children

More information

THE 1982 SURVEY OF INCOME AND PROGRAM PARTICIPATION. Daniel Kasprzyk and Charles A. Lininger, Social Security Administration

THE 1982 SURVEY OF INCOME AND PROGRAM PARTICIPATION. Daniel Kasprzyk and Charles A. Lininger, Social Security Administration THE 1982 SURVEY OF INCOME AND PROGRAM PARTICIPATION Daniel Kasprzyk and Charles A. Lininger, Social Security Administration Introduction ---~fhe~supvey of Income and Program Participation (SIPP) is a survey

More information

Answering Questions about Your Family s Income When Applying for Health Insurance

Answering Questions about Your Family s Income When Applying for Health Insurance What You Need to Know about Health Insurance Applying for Health Insurance Answering Questions about Your Family s Income When Applying for Health Insurance About this fact sheet You may be able to get

More information

Unemployment, welfare, and Social Security Disability/SSI benefits: How they affect one another

Unemployment, welfare, and Social Security Disability/SSI benefits: How they affect one another Originally published as: Liebkemann, K., & Cebula, R. (2006, December) Unemployment, welfare, and Social Security Disability/SSI benefits: How they affect one. Looking out for Your Legal Rights: New Jersey

More information

A Re-Examination of the Impact of Welfare Reform on Health Insurance Among Less-Skilled Women*

A Re-Examination of the Impact of Welfare Reform on Health Insurance Among Less-Skilled Women* A Re-Examination of the Impact of Welfare Reform on Health Insurance Among Less-Skilled Women* John C. Ham University of Southern California, Federal Reserve Bank of San Francisco and IZA Lara Shore-Sheppard

More information

Construction of variables from CE

Construction of variables from CE Online Appendix for Has Consumption Inequality Mirrored Income Inequality? by Mark Aguiar and Mark Bils In this appendix we describe construction of the variables in our data set and the impact of sample

More information

MEASURING INCOME DYNAMICS: The Experience of Canada s Survey of Labour and Income Dynamics

MEASURING INCOME DYNAMICS: The Experience of Canada s Survey of Labour and Income Dynamics CANADA CANADA 2 MEASURING INCOME DYNAMICS: The Experience of Canada s Survey of Labour and Income Dynamics by Maryanne Webber Statistics Canada Canada for presentation at Seminar on Poverty Statistics

More information

Remarriage in the United States

Remarriage in the United States Remarriage in the United States Poster presented at the annual meeting of the American Sociological Association, Montreal, August 10-14, 2006 Rose M. Kreider U.S. Census Bureau rose.kreider@census.gov

More information

Dynamics of Economic Well-Being: Poverty, 2009 2011

Dynamics of Economic Well-Being: Poverty, 2009 2011 Dynamics of Economic Well-Being: Poverty, 009 0 Household Economic Studies By Ashley N. Edwards Issued January 04 P70-37 INTRODUCTION This report presents data on poverty based on information collected

More information

Facts. America s Direct-Care Workforce

Facts. America s Direct-Care Workforce November 2013 Update Facts 3 America s Direct-Care Workforce irect-care workers provide an estimated 70 to 80 percent of the paid hands-on long-term care and personal assistance received by Americans who

More information

The Effect of Taxes and Transfers on Income and Poverty in the United States: 2005

The Effect of Taxes and Transfers on Income and Poverty in the United States: 2005 The Effect of Taxes and Transfers on Income and Poverty in the United States: 2005 Consumer Income Issued March 2007 P60-232 INTRODUCTION losses, and work expenses) varies at a This report examines how

More information

Working Beyond Retirement-Age

Working Beyond Retirement-Age Working Beyond Retirement-Age Kelly A. Holder and Sandra L. Clark U.S. Census Bureau Housing and Household Economics Division Labor Force Statistics Branch Presented at the American Sociological Association

More information

2009 Franklin County Profile Statistical and Demographic Data. German Village, Columbus, Ohio

2009 Franklin County Profile Statistical and Demographic Data. German Village, Columbus, Ohio 2009 Franklin Profile Statistical and Demographic Data German Village, Columbus, Ohio Franklin Overview Through its partnerships with community organizations and state and federal government agencies,

More information

Policy Reforms are Needed to Increase Child Support from Poor Fathers. by Elaine Sorensen and Helen Oliver. April 2002

Policy Reforms are Needed to Increase Child Support from Poor Fathers. by Elaine Sorensen and Helen Oliver. April 2002 Policy Reforms are Needed to Increase Child Support from Poor Fathers by Elaine Sorensen and Helen Oliver April 2002 Views expressed in this paper are those of the authors and do not reflect the opinions

More information

THE UNINSURED IN MICHIGAN A PROFILE

THE UNINSURED IN MICHIGAN A PROFILE Policy and Planning Administration Presents THE UNINSURED IN MICHIGAN A PROFILE Released December 2013 MDCH is an Equal Opportunity Employer, Services and Programs Provider 0 printed at 0 cents each with

More information

History of TANF Refinancing in Minnesota

History of TANF Refinancing in Minnesota INFORMATION BRIEF Research Department Minnesota House of Representatives 600 State Office Building St. Paul, MN 55155 Danyell Punelli, Legislative Analyst 651-296-5058 Updated: September 2013 History of

More information

Single Mother Work And Poverty Under Welfare Reform: Are Policy Impacts Different In Rural Areas?

Single Mother Work And Poverty Under Welfare Reform: Are Policy Impacts Different In Rural Areas? Gerald R. Ford School Of Public Policy, University Of Michigan National Poverty Center Working Paper Series #03-7 September 2003 Single Mother Work And Poverty Under Welfare Reform: Are Policy Impacts

More information

Does Unemployment Insurance Inhibit Job Search?

Does Unemployment Insurance Inhibit Job Search? Does Unemployment Insurance Inhibit Job Search? July 2010 Report by the U.S. Congress Joint Economic Committee Representative Carolyn Maloney, Chair The principal purpose of the unemployment insurance

More information

Figure 24 Georgia s Children a Major Focus of Human Services. $20 M Georgia Vocational Rehab Agency $1.5 M Office of Residential Child Care

Figure 24 Georgia s Children a Major Focus of Human Services. $20 M Georgia Vocational Rehab Agency $1.5 M Office of Residential Child Care Human Services Overview Georgia s spending to help children, the poor and seniors is overseen by the state Department of Human Services. State funding for the agency is $486 million in 214, or about 3

More information