Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 501 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 501 Bytes

cesurvey

Python package for working with the US Consumer Expenditure Survey

Installation

pip install git+https://github.com/PSLmodels/cesurvey

Example usage

import cesurvey

fmli_2019 = cesurvey.get_interview_data(2019)
fmli_2018 = cesurvey.get_interview_data(2018)

lku = cesurvey.get_data_dictionary()

income_bf_tax_2019 = cesurvey.estimate_annual_quantity("FINCBTXM", fmli_2019)
income_bf_tax_2018 = cesurvey.estimate_annual_quantity("FINCBTXM", fmli_2018)