Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/materials-data-science-and-informatics/survey_dashboard
A dashboard build with bokeh to provide interative data visualization and exploration of survey results.
https://github.com/materials-data-science-and-informatics/survey_dashboard
bokeh bokeh-dashboard bokeh-server data-science data-visualization hmc interactive-visualizations panel panel-app survey-app survey-visualization
Last synced: 13 days ago
JSON representation
A dashboard build with bokeh to provide interative data visualization and exploration of survey results.
- Host: GitHub
- URL: https://github.com/materials-data-science-and-informatics/survey_dashboard
- Owner: Materials-Data-Science-and-Informatics
- License: mit
- Created: 2022-08-15T09:18:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-22T07:08:09.000Z (11 months ago)
- Last Synced: 2024-04-16T09:30:14.800Z (10 months ago)
- Topics: bokeh, bokeh-dashboard, bokeh-server, data-science, data-visualization, hmc, interactive-visualizations, panel, panel-app, survey-app, survey-visualization
- Language: Jupyter Notebook
- Homepage:
- Size: 6.25 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Citation: Citation.cff
Awesome Lists containing this project
README
# Survey dashboard
A dashboard to display survey data in an interactive way.
## Overview
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](https://dashboard.survey.helmholtz-metadaten.de/survey_dashboard)Some impressions:
![dashboard_overview](https://user-images.githubusercontent.com/24694833/230306080-9ca68ff8-5b8b-4ac4-b2fa-51e2c5361c7d.png)
![dashboard_methods](https://user-images.githubusercontent.com/24694833/230306091-637188a9-359e-4ea0-8432-4d05a1ccc68f.png)
![Dashboard_survey_data_explorer](https://user-images.githubusercontent.com/24694833/230306099-4cf71bda-0990-4f9d-be14-9a65812e7ac4.png)## Installation
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.```shell
pip install survey_dashboard
```
or```shell
poetry install .
```## Usage
After installation you can start the app, i.e the panel server/bokeh server.
```shell
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.
```shell
panel serve --port 50006 survey_dashboard/ --static-dirs en_files=./survey_dashboard/hmc_layout/static/en_files```
* Navigate to `http://localhost:50006/` in your browser.
## Deployment
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](https://docs.bokeh.org/en/latest/docs/user_guide/embed.html#app-documents)
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: 'LAdd the code from 'script' to you website:
```python
from bokeh.embed import server_document
script = server_document("url_to_running_server")
script
```## Copyright and Licence
See [LICENSE](./LICENSE).
### Main used libraries and dependencies
The following libraries are used directly (i.e. not only transitively) in this project:
## Acknowledgements
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.