A Python package for creating shareable, interactive visualizations in the browser.
For detailed guidance, tutorials, and API reference, visit our documentation.
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")
Apache-2.0
Visit the GitHub repository for issues, contributions, and the latest updates.