Skip to main content

Minimal pgfplots wrapper for marimo notebooks

Project description

pypgfplots

Minimal Python wrapper that renders pgfplots figures as high-quality PNG inside marimo notebooks. Figures are identical to what you would include in a LaTeX paper or slide deck — because they are LaTeX.

Requires a working LaTeX installation with pdflatex on $PATH, plus a PDF→PNG converter — install one of:

brew install poppler       # provides pdftoppm (recommended)
brew install mupdf-tools   # provides mutool
brew install imagemagick   # provides convert

Ghostscript (gs) is also accepted if already on $PATH.


Installation

From GitHub with uv (recommended)

uv add git+https://github.com/bjoseru/pypgfplots

Inside a marimo notebook

Add a cell at the top:

import subprocess
subprocess.run(["uv", "pip", "install", "git+https://github.com/bjoseru/pypgfplots"])

Or use marimo's package manager sidebar (requires uv backend).

Plain pip

pip install git+https://github.com/bjoseru/pypgfplots

Quick start

from pypgfplots import Axis

a = Axis(title="Parabola", xlabel=r"$x$", ylabel=r"$f(x)$")
a.addplot(r"x^2", color="red", domain="-2:2", samples=100)
a  # displays as PNG in marimo

Combine two axes side by side:

a = Axis(title="Left")
a.addplot(r"sin(deg(x))", domain="0:6.28")

b = Axis(title="Right", axis_lines="left")
b.addplot(r"cos(deg(x))", domain="0:6.28")

a + b  # renders both in one tikzpicture

Raw TikZ statements

tikz(line) appends a verbatim TikZ statement to the environment body — available on TikzPicture, Axis, and Groupplot. On Axis/Groupplot the statement lands inside the axis environment, so pgfplots coordinate systems such as (axis cs:…) work as expected.

Pure geometric drawing with TikzPicture:

from pypgfplots import TikzPicture

p = TikzPicture()
p.tikz(r"\fill[red]    (0,0) rectangle (2,2);")          # Bauhaus square
p.tikz(r"\fill[blue]   (3,1) circle (1);")               # Bauhaus disc
p.tikz(r"\fill[yellow] (5,0) -- (7,0) -- (6,1.732) -- cycle;")  # Bauhaus triangle
p

Annotating a plot with a dashed reference line and a label:

a = Axis(xlabel=r"$x$", ylabel=r"$f(x)$")
a.addplot(r"x^2", domain="-2:2", color="blue")
a.tikz(r"\draw[dashed, gray] (axis cs:-2,1) -- (axis cs:2,1);")
a.tikz(r"\node[right] at (axis cs:2,1) {$y=1$};")
a

Coordinate data

coords = " ".join(f"({x},{x**2})" for x in range(6))
a = Axis()
a.addplot(coords, _type="coordinates", mark="*", color="blue")
a

Table data

a = Axis()
a.addplot("data.csv", _type="table", col_sep="comma", x="time", y="value")
a

3-D plots

a = Axis()
a.addplot3(r"x^2 + y^2", domain="-2:2", samples=30)
a

Grouped subplots

Groupplot produces a pgfplots groupplot environment. Call nextgroupplot() before each subplot; all addplot*, addlegendentry, and legend methods work exactly as on Axis.

from pypgfplots import Groupplot

gp = Groupplot(group_style="columns=2, rows=1", width="0.45\\textwidth")
gp.nextgroupplot(title="Sine")
gp.addplot(r"sin(deg(x))", domain="0:6.28", color="blue")
gp.addlegendentry("sin")

gp.nextgroupplot(title="Cosine")
gp.addplot(r"cos(deg(x))", domain="0:6.28", color="red")
gp.addlegendentry("cos")

gp  # displays as PNG in marimo

Options passed to Groupplot(...) become \begin{groupplot}[...] options; options passed to nextgroupplot(...) become per-subplot options. The \usepgfplotslibrary{groupplots} line is added to the preamble automatically.

Legend images

addlegendimage inserts a phantom legend entry with a custom appearance — useful when the auto-generated swatch does not match what you want:

a = Axis()
a.addplot(r"x^2", color="red")
a.addlegendimage(color="red", mark="*")
a.addlegendentry(r"$x^2$")
a

Global settings

from pypgfplots import pgfplotset, preamble, classoptions

pgfplotset(compat="1.18")
preamble(r"\usepackage{amsmath}")
classoptions("border=5pt")

Export

a.save_pdf("figure.pdf")   # compile and write PDF
a.save_tex("figure.tex")   # write LaTeX source (no compilation)
src = a.latex()             # full standalone source as string
log = a.compile_log()       # pdflatex output of last run

Development

Clone the repo and install in editable mode:

git clone https://github.com/bjoseru/pypgfplots
cd pypgfplots
uv pip install -e .

Run the tests:

uv run --with pytest pytest

Tests that require pdflatex and a PDF→PNG converter are skipped automatically if those tools are not on $PATH. To run only the pure-Python unit tests:

uv run --with pytest pytest tests/test_core.py tests/test_options.py

Pipeline

Display:  Python API  →  .tex  →  pdflatex  →  PDF  →  pdftoppm  →  PNG  →  marimo
PDF:      Python API  →  .tex  →  pdflatex  →  PDF

The PNG is delivered via _repr_html_() and is therefore also usable in Jupyter.


License

MIT — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypgfplots-0.2.0.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pypgfplots-0.2.0-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

Details for the file pypgfplots-0.2.0.tar.gz.

File metadata

  • Download URL: pypgfplots-0.2.0.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pypgfplots-0.2.0.tar.gz
Algorithm Hash digest
SHA256 7da5b582131747427df75b931b37dbd010203dab992c423243f2923ff9d8a1cd
MD5 0d023a9c06cfa0a749ec42ec327996bd
BLAKE2b-256 cc8805120014b42ff97558417c33675f2794c8de9b7066ac402c7aafeaaf96fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypgfplots-0.2.0.tar.gz:

Publisher: publish.yml on bjoseru/pypgfplots

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pypgfplots-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pypgfplots-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 10.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pypgfplots-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 62fa48230ec07a108f4952e35324e5cdb658009335457de44f3c29ed86b158c6
MD5 a9a739f6e0bcdb1f64dcff601f61d6f5
BLAKE2b-256 57b78b6da8fa4cda9e413d655d49b9a972796f5f21cb424a0bd4c151c6c65daf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pypgfplots-0.2.0-py3-none-any.whl:

Publisher: publish.yml on bjoseru/pypgfplots

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page