Explore some data in the European Social Survey
The European Social Survey data for year 2016 is available here: https://www.europeansocialsurvey.org/download.html?file=ESS8e02&y=2016 .
While ESS data is freely available, I am not permitted to distribute it.
- To obtain the data, sign in with your email address.
- Download the SPSS ZIP file and extract
ESS8e02.sav
from the ZIP file.
$ unzip ESS8e02.spss.zip
- The data can be converted to CSV format with
pspp
.
$ pspp-convert ESS8e02.sav ESS8e02.csv
- Ensure that
ESS8e02.csv
is in theessexplorer/data
directory.
- Create and activate a Python3 virtual environment in which to install dependencies.
$ python3 -m venv venv
$ source venv/bin/activate
-
Navigate to the project root directory (the directory with the
setup.py
) and install the dependencies.$ pip install -e .
-
Start the HTTP server.
$ ess-explorer