Plotting Industry and occupation data from the ONS 2021 census.
See example on http://server.alifeee.co.uk/occupation-data/ or in plot.ipynb
Dataset: https://www.ons.gov.uk/datasets/TS060/editions/2021/versions/1
Install required Python modules
python -m venv env
. ./env/bin/activate
pip install -r requirements.txt
Open plot.ipynb
.
Install to location
mkdir -p /var/www/cgi/
cd /var/www/cgi/
git clone git@github.com:alifeee/occupation-data
cd occupation-data
python -m venv env
. ./env/bin/activate
pip install -r requirements.txt
Install fastcgi
sudo apt-get install fastcgi
Add the following to nginx config
location /occupation-data/ {
fastcgi_index index.cgi;
fastcgi_intercept_errors on;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /var/www/cgi/$fastcgi_script_name;
fastcgi_pass unix:/var/run/fcgiwrap.socket;
}