Visualize as an offline interactive HTML explorer
visualize_dataGenerate an interactive HTML explorer from a local data file. Optionally filter, aggregate, or group data first; users get sortable tables, column stats, and charts in one offline file.
Instructions
Turn a local data file (optionally after a query) into ONE self-contained, fully-offline, interactive HTML explorer file on disk (sortable/filterable table + column stats + charts). Returns the path. The user can open it in any browser; data never leaves the machine and the file has zero external requests. Use this to hand the user a shareable, explorable artifact instead of a plain text table.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the data file. | |
| limit | No | ||
| title | No | Title shown in the explorer. | |
| where | No | Row filters (ANDed together). | |
| offset | No | ||
| select | No | Columns to keep in the output. | |
| group_by | No | Group rows by these columns. | |
| order_by | No | ||
| out_path | No | Where to write the .html (default: a temp file). | |
| aggregate | No | Aggregations to compute per group (with group_by). |