Julia codes
These are some Julia packages I've created for my work, shared here in case they're useful for you too. Suggestions are welcome!
- Packages for reading and importing datasets into Julia:
- DataReader.jl is the core package, providing the general structure for reading CSV data into Julia. The packages that follow are built on top of it.
- ReadEFF.jl reads the Encuesta Financiera de las Familias (EFF) from the Banco de España.
- ReadNLSY.jl reads the National Longitudinal Surveys of Youth (NLSY) from the BLS.
- ReadSCF.jl reads the Survey of Consumer Finances (SCF) from the Federal Reserve.
- Packages for economic data analysis:
- EconVariables.jl provides tools to handle variables with economic metadata. It simplifies tasks such as adjusting for inflation and it enforces consistency by preventing invalid operations — for example, adding nominal values expressed in different base years.
- EconFrames.jl wraps DataFrames with economic metadata. It is useful, for example, to manage data frames where the unit of observation may change (e.g., individuals vs. households) or to keep track of weights and variable definitions throughout the analysis. Just like EconVariables.jl, it ensures that variable and dataframe transformations are consistent with their economic metadata.