Install
openclaw skills install data-visualizerTerminal ASCII chart toolkit. Create bar charts, sparklines, histograms, and gauges from CSV or JSON data in the terminal.
openclaw skills install data-visualizerTerminal data visualization toolkit — create ASCII bar charts, sparklines, histograms, heatmaps, gauges, treemaps from data. Process CSV/JSON files with stats summaries, correlations, normalization, and pivoting. Export to SVG and HTML.
barDraw a horizontal bar chart from label:value pairs.
scripts/script.sh bar "Sales:42" "Revenue:87" "Profit:31"
histogramShow frequency distribution of numeric values as a histogram.
scripts/script.sh histogram 10 15 20 20 25 30 30 30 35 40
sparklineRender an inline sparkline chart from a series of values.
scripts/script.sh sparkline 4 8 15 16 23 42 38 29 18 10
heatmapDisplay a color-coded heat grid from row/column data.
scripts/script.sh heatmap 3 4 1 5 9 2 8 3 7 4 6 1
treemapShow proportional blocks for part-to-whole comparisons.
scripts/script.sh treemap "Chrome:65" "Safari:18" "Firefox:10" "Edge:7"
gaugeDisplay a gauge meter showing a value against a maximum.
scripts/script.sh gauge 73 100 "CPU Usage"
matrixRender a CSV file as a formatted matrix/table view.
scripts/script.sh matrix data.csv
summarizeCompute min/max/average/median statistics for each numeric column in a CSV file.
scripts/script.sh summarize sales.csv
distributionShow the value distribution of numeric data in a CSV file across bins.
scripts/script.sh distribution scores.csv 8
correlateCompute a Pearson correlation matrix across all numeric columns in a CSV file.
scripts/script.sh correlate metrics.csv
normalizeNormalize all numeric columns to 0-1 range and output as CSV.
scripts/script.sh normalize raw_data.csv > normalized.csv
pivotGroup rows by a column and aggregate numeric values (sum, avg, min, max).
scripts/script.sh pivot sales.csv region
from-csvAuto-visualize a CSV file with summary statistics.
scripts/script.sh from-csv data.csv
from-jsonAuto-visualize a JSON file — shows structure, keys, and numeric column summaries.
scripts/script.sh from-json data.json
to-svgExport CSV data as an SVG bar chart.
scripts/script.sh to-svg sales.csv
to-htmlExport CSV data as an HTML table with styling.
scripts/script.sh to-html report.csv
helpscripts/script.sh help
versionscripts/script.sh version
# Quick terminal charts
scripts/script.sh bar "Q1:120" "Q2:185" "Q3:210" "Q4:170"
scripts/script.sh sparkline 10 20 30 25 40 35 50 45
scripts/script.sh gauge 78 100 "Memory"
# CSV analysis pipeline
scripts/script.sh summarize data.csv
scripts/script.sh correlate data.csv
scripts/script.sh pivot data.csv category
# Export
scripts/script.sh to-svg data.csv
scripts/script.sh to-html data.csv
| Variable | Required | Description |
|---|---|---|
DATAVIZ_DIR | No | Data directory (default: ~/.local/share/data-visualizer/) |
History logged in ~/.local/share/data-visualizer/history.log.
Powered by BytesAgain | bytesagain.com | hello@bytesagain.com