Skip to content

jglaser/signac-dashboard

 
 

signac-dashboard: data visualization for signac

PyPI conda-forge CircleCI RTD License PyPI-downloads Gitter

Built on top of the signac framework, signac-dashboard allows users to rapidly visualize and analyze data managed in a signac project.

Resources

Installation

The recommended installation method for signac-dashboard is through conda or pip. The software is tested for Python 3.5+ and is built for all major platforms.

To install signac-dashboard via the conda-forge channel, execute:

conda install -c conda-forge signac-dashboard

To install signac-dashboard via pip, execute:

pip install signac-dashboard

Detailed information about alternative installation methods can be found in the documentation.

Quickstart

In an existing signac project directory, create a file dashboard.py:

from signac_dashboard import Dashboard
from signac_dashboard.modules import StatepointList, DocumentList, ImageViewer

if __name__ == '__main__':
    modules = [StatepointList(), DocumentList(), ImageViewer()]
    Dashboard(modules=modules).main()

Then launch the dashboard:

$ python dashboard.py run

About

Rapidly visualize signac projects through a customizable dashboard interface.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 55.1%
  • HTML 16.8%
  • JavaScript 15.2%
  • CSS 12.0%
  • Shell 0.9%