Show HN: Buckaroo – Data table UI for Notebooks
Published on: 2025-07-08 16:56:18
Buckaroo - The Data Table for Jupyter
Buckaroo is a modern data table for Jupyter that expedites the most common exploratory data analysis tasks. The most basic data analysis task - looking at the raw data, is cumbersome with the existing pandas tooling. Buckaroo starts with a modern performant data table, is sortable, has value formatting, and scrolls infinitely. On top of the core table experience extra features like summary stats, histograms, smart sampling, auto-cleaning, and a low code UI are added. All of the functionality has sensible defaults that can be overridden to customize the experience for your workflow.
Try it now with Marimo in your browser
Play with Buckaroo without any installation. Full Tour
Quick start
run pip install buckaroo then restart your jupyter server
The following code shows Buckaroo on a simple dataframe
import pandas as pd import buckaroo pd.DataFrame({'a':[1, 2, 10, 30, 50, 60, 50], 'b': ['foo', 'foo', 'bar', pd.NA, pd.NA, pd.NA, pd. NA]})
When
... Read full article.