.CtxtMenu_InfoClose { top:.2em; right:.2em;} .CtxtMenu_InfoContent { overflow:auto; text-align:left; font-size:80%; padding:.4em .6em; border:1px inset; margin:1em 0px; max-height:20em; max-width:30em; background-color:#EEEEEE; white-space:normal;} .CtxtMenu_Info.CtxtMenu_MousePost {outline:none;} .CtxtMenu_Info { position:fixed; left:50%; width:auto; text-align:center; border:3px outset; padding:1em 2em; background-color:#DDDDDD; color:black; cursor:default; font-family:message-box; font-size:120%; font-style:normal; text-indent:0; text-transform:none; line-height:normal; letter-spacing:normal; word-spacing:normal; word-wrap:normal; white-space:nowrap; float:none; z-index:201; border-radius: 15px; /* Opera 10.5 and IE9 */ -webkit-border-radius:15px; /* Safari and Chrome */ -moz-border-radius:15px; /* Firefox */ -khtml-border-radius:15px; /* Konqueror */ box-shadow:0px 10px 20px #808080; /* Opera 10.5 and IE9 */ -webkit-box-shadow:0px 10px 20px #808080; /* Safari 3 & Chrome */ -moz-box-shadow:0px 10px 20px #808080; /* Forefox 3.5 */ -khtml-box-shadow:0px 10px 20px #808080; /* Konqueror */ filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=2, OffY=2, Color="gray", Positive="true"); /* IE */}

Problem set to Lecture 2

Estimate labour supply elasticity

Important

Upload a log file that includes both the commands and outputs!

Use comments for discussion of results.

Data

This exercise uses EU-SILC public microdata from Finland that can be downloaded from https://ec.europa.eu/eurostat/web/microdata/public-microdata/statistics-on-income-and-living-conditions.

The documentation for the dataset (including variable descriptions) can be downloaded from https://circabc.europa.eu/ui/group/853b48e6-a00f-4d22-87db-c40bafd0161d/library/be52ec21-09db-4b2e-9998-97c27fb5db4d/details.

The dataset is a ZIP folder with yearly CSV files. You need household- and person-level datafiles for years 2004 and 2005:

  • FI_2004h_EUSILC.csv
  • FI_2004p_EUSILC.csv
  • FI_2005h_EUSILC.csv
  • FI_2005p_EUSILC.csv

Cleaning steps

  1. Merge household- and person-level data separately for each year.
    Household-level data contains variable HB030 with unique household ID. Person-level data contains variable PB030 with unique person ID. You can recover household ID in person-level data by removing the last 2 digits from person ID. Then, merge the household- and person-level data by year (HB010 and PB010) and household ID.

  2. Select variables of interest.

    • PB010 - Year of survey
    • HB030 - Household ID
    • PB030 - Personal ID
    • HH060 - Current rent related to occupied dwelling
    • HH070 - Total housing cost
    • HS130 - Lowest monthly income to make ends meet
    • HY010 - Total household gross income
    • PB140 - Year of birth
    • PB150 - Sex
    • PL020 - Actively looking for a job
    • PL040 - Status in employment
    • PL060 - Number of hours usually worked per week in main job
    • PY010G - Employee cash or near cash income

    You may use other variables in the dataset. If you do, you should clearly specify which variable you are using and why.

  3. For simplicity, keep only individuals

    • who are or were employed (based on employment status variable),
    • for whom looking for job indicator is missing (currently employed), and
    • who work at least 25 hours in a week
    • who are only observed once per year (there is one odd person ID which appears twice in 2005)

    You should have 10 761 observations in total (see the tabulation below).

year N
2004 5221
2005 5540
All 10761
  1. Prepare variables for the estimation

    You can use variables for rent, housing cost or lowest monthly income to make ends meet to capture consumption value.

    Make sure to clearly specify which variable you are using, how and why! That is, specify which variable from the dataset you use, any transformations you apply to it, where it enters in the regression equation and why you chose this variable.

Estimations

  1. Estimate the cross-sectional elasticity in 2005 using regression .

    (1)lnHit=αwlnwit+αR(CitwitHit)+θXit+vit

    1. Report Marshallian wage elasticity, income effect and Hicksian wage elasticity given average value of wage and Hit=40.

    2. Compare the estimates to those reported in Table 1.19 in Pencavel ()

    3. Discuss possible issues with the estimates and suggest ways to mitigate these issues (either by using alternative estimation strategy or data source). Explain how the proposed solutions help improve the estimates. You do not need to implement these solutions.

  2. Estimate the Frisch elasticity using regression .

    (2)ΔlnHit=ρ+αwΔlnwit+θΔXit+Δvit

    1. Report Frisch elasticity.

    2. Discuss possible issues with the estimate and suggest ways to mitigate these issues. Explain how the proposed solutions help improve the estimates. You do not need to implement these solutions.

References

Pencavel, John. 1986. “Chapter 1 Labor Supply of Men: A Survey.” In Handbook of Labor Economics, 1:3–102. Elsevier. https://doi.org/10.1016/S1573-4463(86)01004-0.