用于统计分析数据分布、趋势、异常与显著性检验,辅助得出可靠结论
该技能材料显示其为纯提示词型统计分析说明,无需密钥、无远程端点、未声明本地执行或数据读写能力,整体为低风险。供应链方面虽有开源可审计的正面证据,但社区采用与维护信息有限,建议仍做基础来源核验。
材料明确标注“需要的密钥/环境变量:无”,未见 API key、token 或其他敏感凭证需求,凭证泄露与滥用面较小。
材料标注“远程端点 host:无”,且该技能被系统识别为 prompt-only;未见向外部服务发送用户数据或连接第三方主机的描述。
从描述与 README 看,该技能主要提供统计方法与分析指导,未声明会在本机启动进程、执行脚本或调用系统能力;文档中的代码片段更像示例而非执行要求。
未见要求读取/写入本地文件、数据库、剪贴板或其他资源的说明;作为纯提示词技能,其数据访问范围未超出普通对话上下文。
来源为 GitHub 开源仓库,具备可审计性,这是明显的降风险因素;但许可证未声明、社区采用为 0 star、维护状态未知,因此仍建议核验仓库归属、提交历史与实际内容一致性。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "statistical-analysis" 技能: 1. 下载 https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/data/skills/statistical-analysis/SKILL.md 2. 保存为 ~/.claude/skills/statistical-analysis/SKILL.md 3. 装好后重载技能,告诉我可以用了
请对这份问卷数据做统计分析:先给出描述性统计,再比较实验组和对照组的均值差异是否显著,说明应使用的检验方法、p 值含义,并用通俗语言解释结论。
包含描述性统计、显著性检验结果、方法说明和易懂结论的分析报告。
请分析这组月度销售数据,找出异常值和异常波动月份,说明你使用的异常检测方法,并判断这些异常是否可能影响整体趋势判断。
给出异常值列表、检测依据、趋势解读及对业务判断的影响说明。
我有广告投入和转化率两列数据,请计算它们的相关性,判断相关强度与方向,说明是否具有统计显著性,并提醒我相关不等于因果。
输出相关系数、显著性结果、关系解释以及分析限制说明。
Descriptive statistics, trend analysis, outlier detection, hypothesis testing, and guidance on when to be cautious about statistical claims.
Choose the right measure of center based on the data:
| Situation | Use | Why |
|---|---|---|
| Symmetric distribution, no outliers | Mean | Most efficient estimator |
| Skewed distribution | Median | Robust to outliers |
| Categorical or ordinal data | Mode | Only option for non-numeric |
| Highly skewed with outliers (e.g., revenue per user) | Median + mean | Report both; the gap shows skew |
Always report mean and median together for business metrics. If they diverge significantly, the data is skewed and the mean alone is misleading.
Report key percentiles to tell a richer story than mean alone:
p1: Bottom 1% (floor / minimum typical value)
p5: Low end of normal range
p25: First quartile
p50: Median (typical user)
p75: Third quartile
p90: Top 10% / power users
p95: High end of normal range
p99: Top 1% / extreme users
Example narrative: "The median session duration is 4.2 minutes, but the top 10% of users spend over 22 minutes per session, pulling the mean up to 7.8 minutes."
Characterize every numeric distribution you analyze:
Moving averages to smooth noise:
# 7-day moving average (good for daily data with weekly seasonality)
df['ma_7d'] = df['metric'].rolling(window=7, min_periods=1).mean()
# 28-day moving average (smooths weekly AND monthly patterns)
df['ma_28d'] = df['metric'].rolling(window=28, min_periods=1).mean()
Period-over-period comparison:
Growth rates:
Simple growth: (current - previous) / previous
CAGR: (ending / beginning) ^ (1 / years) - 1
Log growth: ln(current / previous) -- better for volatile series
Check for periodic patterns:
For business analysts (not data scientists), use straightforward methods:
Always communicate uncertainty. Provide a range, not a point estimate:
…
帮助开发者将 Zoom 会议能力嵌入网页应用,支持完整界面或组件化集成。
生成带权重的销售预测,输出情景拆解、承诺分层与缺口分析。
帮助你为月末结账准备合规会计分录、借贷方向及支持材料。
帮助分析薪酬水平、职级带宽与股权方案,识别竞争力、异常点和留才风险。
帮助团队跟踪候选人招聘进度,统计各阶段人数并更新招聘状态。
研究竞争对手并生成定位、话术、机会与威胁对比分析
帮助你快速查询指标、分析趋势成因,并生成面向干系人的数据报告。
通过自然语言调用统计分析、概率分布与数据处理能力,快速完成数据分析任务
用于分析文本统计指标与可读性,帮助优化内容质量与阅读体验。
在分享分析结论前,检查方法、计算、偏差与结论是否可靠
通过 FastMCP 接口执行描述统计、假设检验与回归等综合统计分析。
快速剖析新数据集的结构、质量与分布特征,辅助后续分析决策