A dashboard to display survey data in an interactive way.
This repository contains a dashboard using Panel and Bokeh, developed to display data from HMC surveys in an interactive exploratory way. It is designed such that the code for the interactive visualizations might be reused for other projects. Example of a deployed version can be found here
Some impressions:
After downloading the git repository you can install the software either with pip or poetry. We recommend setting it up in a separate python virtual environment.
pip install survey_dashboard
or
poetry install .
After installation you can start the app, i.e the panel server/bokeh server.
panel serve --port 50006 survey_dashboard/
If you have given the dashboard a specific layout like the layout specific to HMC, which is on the hmc_specific branch, you might have to link to to a specific template.
panel serve --port 50006 survey_dashboard/ --static-dirs en_files=./survey_dashboard/hmc_layout/static/en_files
http://localhost:50006/
in your browser.To embed the dashboard into any website, first you have to host a bokeh server with this application somewhere and then you can embed it with bokehs sever_document
function see
Do steps under usage
above, but for a public exposed URL, or what ever is used for deployment.
The Language verison of the dashboard can be set with the environment variable: 'L
Add the code from 'script' to you website:
from bokeh.embed import server_document
script = server_document("url_to_running_server")
script
See LICENSE.
The following libraries are used directly (i.e. not only transitively) in this project:
This project was developed at the Institute for Materials Data Science and Informatics (IAS-9) of the Jülich Research Center and funded by the Helmholtz Metadata Collaboration (HMC), an incubator-platform of the Helmholtz Association within the framework of the Information and Data Science strategic initiative.