Skip to content

A Python package for creating shareable, interactive, browser-based visualizations

License

Notifications You must be signed in to change notification settings

datajoint/figpack

 
 

Repository files navigation

figpack

Tests codecov PyPI version

A Python package for creating shareable, interactive visualizations in the browser.

Documentation

For detailed guidance, tutorials, and API reference, visit our documentation.

Quick Start

Want to jump right in? Here's how to get started:

pip install figpack
import numpy as np
import figpack.views as vv

# Create a timeseries graph
graph = vv.TimeseriesGraph(y_label="Signal")

# Add some data
t = np.linspace(0, 10, 1000)
y = np.sin(2 * np.pi * t)
graph.add_line_series(name="sine wave", t=t, y=y, color="blue")

# Display the visualization in your browser
graph.show(open_in_browser=True, title="Quick Start Example")

License

Apache-2.0

Citation

If you use figpack in your research, please cite it:

DOI

@software{magland_figpack_2025,
  author       = {Magland, Jeremy},
  title        = {figpack},
  year         = 2025,
  publisher    = {Zenodo},
  doi          = {10.5281/zenodo.17419621},
  url          = {https://doi.org/10.5281/zenodo.17419621}
}

Or in APA format:

Magland, J. (2025). figpack (Version 0.14) [Computer software]. Zenodo. https://doi.org/10.5281/zenodo.17419621

Contributing

Visit the GitHub repository for issues, contributions, and the latest updates.

About

A Python package for creating shareable, interactive, browser-based visualizations

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 74.4%
  • Python 22.9%
  • JavaScript 1.3%
  • CSS 0.9%
  • Shell 0.3%
  • HTML 0.2%