pyobsplot
pyobsplot copied to clipboard
Observable Plot in Jupyter notebooks and Quarto documents
Example: ```py df = pl.DataFrame({"x": [0, 100], "y": [0.5, 1.2]}) op = Obsplot(format="png") op( { "marks": [Plot.dot(df, {"x": "x", "y": "y"})], "title": "Plot title", "style": {"background-color": "#005", "color": "#FF0"}, }...
Timestamp variables should be recognized by Plot when data is in an Arrow table.
> As for the general question, it seems a bit problematic that there is no one-to-one correspondence between `format` and `path`-extension. What I mean is that: > - there is...
Add reference pages to documentation with [quartodoc](https://machow.github.io/quartodoc/get-started/overview.html).
Would you ever allow for interactivity, reason I ask is I don't see it in the colab tutorial, thanks.
Taking a look through the docs and wondering if this would work in other front-ends like D3 does? I frequently use HTMX for this sort of stuff. If it is...