pyobsplot icon indicating copy to clipboard operation
pyobsplot copied to clipboard

Observable Plot in Jupyter notebooks and Quarto documents

Results 22 pyobsplot issues
Sort by recently updated
recently updated
newest added

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"}, }...

bug

New `format` and `path` arguments.

documentation

Handle errors more cleanly in jsdom server.

enhancement

See how to organize and compare reference and current outputs.

enhancement

Replace `print` occurrences with `logging`

enhancement

Timestamp variables should be recognized by Plot when data is in an Arrow table.

bug

> 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).

documentation

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...