Skip to content

flatironinstitute/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

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