OpenFisca is a versatile microsimulation free software. You can check the online documentation for more details.
This repository contains the Survey-Manager module, to work with OpenFisca and survey data.
It provides two main features:
- A Python API to access data in Hierarchical Data Format (HDF) or Parquet.
 - A script that transforms Parquet, SAS, Stata, SPSS, and CSV data files to HDF data files, along with some metadata so they can be used by the Python API. If the format is Parquet, it is kept as is.
 
For France survey data, you might find useful information on the next steps in openfisca-france-data repository.
OpenFisca est un logiciel libre de micro-simulation. Pour plus d'information, vous pouvez consulter la documentation officielle.
Ce dépôt contient le module Survey-Manager. Il facilite l'usage d'OpenFisca avec des données d'enquête.
Il fournit deux fonctionnalités principales:
- Une API Python permettant l'accès à des données au format Hierarchical Data Format (HDF) ou Parquet.
 - Un script qui tranforme les fichiers de données aux formats SAS, Stata, SPSS, and CSV data files en fichiers de données au format HDF, avec quelques metadonnées leur permettant d'être utilisés par l'API Python. Si le format est Parquet, il est conservé tel quel.
 
Si vous disposez de données d'enquête sur la France, le dépôt openfisca-france-data pourrait être utile à vos prochaines étapes de traitement.
OpenFisca-Survey-Manager runs on Python 3.9. More recent versions should work, but are not tested.
If you're developing your own script or looking to run OpenFisca-Survey-Manager without editing it, you don't need to get its source code. It just needs to be known by your environment.
To do so, first, install the package with pip:
pip install --upgrade pip
pip install openfisca-survey-managerThis should not display any error and end with:
Successfully installed [... openfisca-survey-manager-xx.xx.xx ...]
It comes with build-collection command that we will use in the next steps.
If you want to improve this module, please see the
Developmentsection below.
Create an anvironment and install openfisca-survey-manager
conda create -n survey python=3.9
conda activate survey
conda install -c conda-forge -c openfisca openfisca-survey-manager
You are ready to go !
To exit your environment:
conda deactivate
To be able to use OpenFisca-Survey-Manager, you have to create two configuration files:
raw_data.ini,- and 
config.ini. 
To know where to copy them to, use the following command:
build-collection --helpYou should get the following result.
usage: build-collection [-h] -c COLLECTION [-d] [-m] [-p PATH] [-s SURVEY]
                        [-v]
optional arguments:
  -h, --help            show this help message and exit
  -c COLLECTION, --collection COLLECTION
                        name of collection to build or update
  -d, --replace-data    erase existing survey data HDF5 file (instead of
                        failing when HDF5 file already exists)
  -m, --replace-metadata
                        erase existing collection metadata JSON file (instead
                        of just adding new surveys)
  -p PATH, --path PATH  path to the config files directory (default =
                        /your/path/.config/openfisca-survey-manager)
  -s SURVEY, --survey SURVEY
                        name of survey to build or update (default = all)
  -v, --verbose         increase output verbosityTake note of the default configuration directory path in -p PATH, --path PATH option's description. This is the directory where you will set your raw_data.ini and config.ini files. In this example, it is /Users/you/.config/openfisca-survey-manager.
If you want to use a different path, you can pass the
--path /another/pathoption tobuild-collection. This feature is still experimental though.
Configuration files are INI files (text files).
The raw_data.ini lists your input surveys while config.ini specifies the paths to SurveyManager outputs.
raw_data.iniandconfig.inimust not be committed (they are already ignored by.gitignore).
To initialise your raw_data.ini file, you can follow these steps:
- 
Copy the template file raw_data_template.ini to the configuration directory path you identified in the previous step and rename it to
raw_data.ini. Ex:/your/path/.config/openfisca-survey-manager/raw_data.ini - 
Edit the latter by adding a section title for your survey. For example, if you name your survey
housing_survey, you should get a line with: 
[housing_survey]- Add a reference to the location of your raw data directory (SAS, stata DTA files, SPSS, CSV files).
For paths in Windows, use 
/instead of\to separate folders. You do not need to put quotes, even when the path name contains spaces. 
Your file should look like this:
[housing_survey]
2014 = /path/to/your/raw/data/HOUSING_2014You can also set multiple surveys as follows:
[revenue_survey]
2014 = /path/to/your/raw/data/REVENUE_2014
2015 = /path/to/your/raw/data/REVENUE_2015
2016 = /path/to/your/raw/data/REVENUE_2016
[housing_survey]
2014 = /path/to/your/raw/data/HOUSING_2014To initilalise your config.ini file:
- 
Copy its template file config_template.ini to your configuration directory and rename it to
config.ini. Ex:/your/path/.config/openfisca-survey-manager/config.ini. - 
Define a
collections_directorypath where the SurveyManager will generate your survey inputs and outputs JSON description. Ex:/.../openfisca-survey-manager/transformed_housing_surveyFor ahousing_survey, you will get a/.../openfisca-survey-manager/transformed_housing_survey/housing_survey.jsonfile. - 
Define an
output_directorywhere the generated HDF file will be registered. This directory could be a sub-directory of yourcollections_directory. - 
Define a
tmp_directorythat will store temporay calculation results. Its content will be deleted at the end of the calculation. This directory could be a sub-directory of yourcollections_directory. 
Your config.ini file should look similar to this:
[collections]
collections_directory = /path/to/your/collections/directory
[data]
output_directory = /path/to/your/data/output/directory
tmp_directory = /path/to/your/data/tmp/directoryMake sure those directories exist, otherwise the script will fail.
This step will read your configuration files and you survey data and generate a HDF5 file (.h5) for your survey.
To build the HDF5 files, we'll use the build-collection script.
Here is an example for one survey with one serie: our housing_survey that knows only 2014 serie. We call our survey as a collection (with -c option) and build the HDF5 file with this command:
build-collection -c housing_survey -d -m -v-d -m options put you on the safe side as they remove previous outputs if they exist.
It will generate:
- A 
housing_survey.jsonlisting ahousing_survey_2014survey with both:- your input 
tablesand your input file paths in aninformationskey, - the transformed survey path in a 
hdf5_file_pathkey. 
 - your input 
 - Your transformed survey in a 
housing_survey_2014.h5file. 
As build-collection --help shows, other options exist. Here are other usage examples.
If you have multiple series of one survey like the revenue_survey, you can run the specific 2015 serie with:
build-collection -c revenue_survey -s 2015 -d -m -vOr if you want to specify a different configuration directory path:
build-collection -p /another/path -c housing_survey -s 2014 -d -m -vThe
--path /another/pathoption is still experimental though.
It should work. If it doesn't, please do not hesitate to open an issue.
Parquet files could be used as input files. They will not be converted to HDF5. As Parquet files can only contains one table, we add a "parquet_file" key to each table in a survey. This key contains the path to the Parquet file, or the folder containing many parquet files for the same table.
If using folder you have to name your files with the following pattern: some_name_-<number>.parquet and keep only the files for the same table in the same folder.
If a single file contains all the table, you can have many files for different tables in the same folder.
If you want to contribute to OpenFisca-Survey-Manager, please be welcomed! To install it locally in development mode:
git clone https://github.com/openfisca/openfisca-survey-manager.git
cd openfisca-survey-manager
make installTo run the entire test suite:
make testTo run the entire test suite with the same config as in Continuous Integration (CI):
CI=True make testThis repository adheres to a certain coding style, and we invite you to follow it for your contributions to be integrated promptly.
To run the style checker:
make check-styleTo automatically style-format your code changes:
make format-styleTo automatically style-format your code changes each time you commit:
touch .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
tee -a .git/hooks/pre-commit << END
#!/bin/sh
#
# Automatically format your code before committing.
exec make format-style
END