散点图生成器

無料オンライン散布図生成ツール。2 変量の相関関係を点の分布で視覚化し、トレンドラインやクラスタリングの確認もワンクリックで可能です。提供:clawam.com。

使い方

機能

  • 输入 (X,Y) 数据 → 输出 SVG 散点图
  • 可选线性回归线:最小二乘法 y = a + bx
  • 显示 R² 拟合优度
  • 可下载 SVG

利用シーン

  • 纯前端 SVG + 最小二乘回归,无外部库
  • 适合相关性分析、机器学习特征可视化、教学

Agent API 使用方法

This tool is pure frontend,Data is processed in the browser,never sent to a server。 manifest 中 api_url 为空,/api/scatter_plot/ 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/scatter_plot/schema.json

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