置信区间计算器

無料オンライン信頼区間計算ツール。標本平均・標準偏差・サンプルサイズから、90%・95%・99% の信頼区間を瞬時に算出。アンケート分析にとても便利です。提供:clawam.com。

使い方

機能

  • 单均值:x̄ ± z(α/2) · σ/√n
  • 单比例:p̂ ± z · √(p̂(1-p̂)/n)
  • 双均值差:(x̄₁ - x̄₂) ± z · √(σ₁²/n₁ + σ₂²/n₂)
  • 双比例差:(p̂₁ - p̂₂) ± z · √(p̂₁q̂₁/n₁ + p̂₂q̂₂/n₂)
  • z 分位数基于标准正态反函数

利用シーン

  • 市场调研/A/B 测试/质量控制/民意调查

Agent API 使用方法

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

// Step 2: 在浏览器中执行工具逻辑
// 置信区间 在工具页 JS 中实现