The web app¶
A Streamlit app gives depictr a gallery and a low-friction way to try the package without writing code. It loads one of the bundled datasets, or a CSV you upload, draws the chosen plot, shows the exact Python call that produced it, and offers a colour-vision toggle that re-renders the figure as each deficiency would see it.
What it puts on screen¶
The sidebar holds the data and the two accessibility controls. The main pane holds the plot family, the plot, its variables, the figure and the call that produced it. Here it is with the crop-yield trial loaded and an empirical cumulative distribution split by treatment.

The call beside the figure is the point of the whole pane. Whatever you arrive at by clicking, you can paste into a script and get the same figure back.
The colour-vision selector¶
Changing 'Simulate vision' in the sidebar re-renders the figure as a reader with that deficiency would see it, through the same Machado-2009 simulation the accessibility page reports on. Below is the identical plot with the selector set to deuteranopia. The blue is barely touched and the orange has moved towards mustard. Surviving that shift is what the palette is chosen for, and the two curves stay as easy to tell apart as before.

Run it¶
The app lives in the repository rather than the wheel, so run it from a clone:
git clone https://github.com/pablobernabeu/depictr-py
cd depictr-py
pip install -e ".[app]"
streamlit run app/streamlit_app.py
The app runs on your own machine, so nothing you load leaves it. Every plot it draws is a plotnine object from the same functions documented in the API reference, so anything you find there can be reproduced in a script with the call the app shows you.