Install
openclaw skills install jpeng-data-analyzerData analysis and visualization skill. Supports CSV, Excel, JSON data with statistical analysis, charts, and reports.
openclaw skills install jpeng-data-analyzerAnalyze datasets and generate visualizations with statistical insights.
python3 scripts/analyze.py \
--input ./data.csv \
--output ./report/
python3 scripts/analyze.py \
--input ./data.csv \
--chart bar \
--x "category" \
--y "sales" \
--output ./chart.png
python3 scripts/analyze.py \
--input ./data.csv \
--stats \
--columns "age,income,score"
python3 scripts/analyze.py \
--input ./data.csv \
--correlation \
--output ./correlation_matrix.png
python3 scripts/analyze.py \
--input ./data.csv \
--transform "normalize" \
--columns "price,quantity" \
--output ./normalized.csv
{
"success": true,
"rows": 1000,
"columns": 10,
"stats": {
"mean": {"age": 35.2, "income": 55000},
"std": {"age": 12.3, "income": 15000}
},
"charts": ["./chart1.png", "./chart2.png"],
"report": "./report.html"
}