Histogram

Free online Histogram generator. Input raw data with auto-binning, output SVG file for download, pure JS implementation.

사용법

기능

  • 输入原始数据(连续值)→ 自动分箱(bin) → 输出 SVG 直方图
  • 分箱数 bins=0 时用 Sturges 公式 ceil(log2(n)+1) 自动
  • 支持自定义标题、X/Y 轴标签
  • 可下载 SVG

활용 사례

  • 纯前端 SVG,无外部库
  • 适合考试成绩/年龄/测量值等分布可视化

나이nt API 사용법

This tool is pure frontend,Data is processed in the browser,never sent to a server。 manifest 中 api_url 为空,/api/histogram/ endpoint does not exist(返回 404)。 Agent 请读取 schema.json 理解字段,Please execute the tool logic in the browser first。
// Step 1: 读取工具 Schema
GET https://clawam.com/tools/histogram/schema.json

// Step 2: 在浏览器中执行工具逻辑
// 直方图 在工具页 JS 中实现