Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

stats-methods统计方法

Agent Skill

stats-methods 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

428

周安装

18

GitHub Stars

55

下载量

150
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:stats-methods(统计方法)
来源仓库:https://github.com/vm0-ai/vm0-skills
仓库路径:skills/stats-methods
安装命令:
npx skills add https://github.com/vm0-ai/vm0-skills --skill stats-methods
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/vm0-ai/vm0-skills --skill stats-methods

简介

stats-methods 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 属于研究检索类技能,适用于信息聚合与筛选场景。

SKILL.md

Summarizing Numeric Data

Choosing a Center Metric

Data CharacteristicRecommended MeasureRationale
Symmetric, outlier-freeMeanMaximally efficient estimator
Asymmetric or outlier-heavyMedianUnaffected by extreme values
Non-numeric or rankedModeSole option for categorical data
Business KPIs like revenue per userBoth mean and medianThe gap between them reveals skewness

Guideline: For any business metric, present the mean alongside the median. When they differ substantially, the distribution is skewed and the mean by itself will mislead.

Quantifying Variability

  • Standard deviation: Typical distance from the mean; best suited to bell-shaped data.
  • IQR (interquartile range): Gap between the 25th and 75th percentiles; resistant to extreme values.
  • Coefficient of variation: Standard deviation divided by the mean; enables apples-to-apples variability comparison across different scales.
  • Range: Maximum minus minimum; gives a quick but outlier-sensitive view of data spread.

Telling the Story with Percentiles

Go beyond averages by reporting a percentile ladder:

p1:   Floor of the distribution (bottom 1%)
p5:   Lower boundary of typical values
p25:  First quartile
p50:  Median — the representative observation
p75:  Third quartile
p90:  Top 10% threshold (heavy users, premium tier)
p95:  Upper boundary of typical values
p99:  Extreme top 1%

Sample insight: "Half of all sessions last under 4.2 minutes, yet the top decile exceeds 22 minutes, which pushes the average to 7.8 minutes."

Characterizing Distributions

For every numeric column, document:

  • Shape: Gaussian, right-tailed, left-tailed, bimodal, uniform, heavy-tailed
  • Center: Mean vs. median and the magnitude of their difference
  • Spread: Standard deviation or IQR as appropriate
  • Extremes: Count and severity of outliers
  • Boundaries: Natural limits such as zero floors or 100% ceilings

Trend Analysis and Projection

Smoothing Noisy Time Series

# Weekly smoother — useful for daily data with weekday/weekend cycles
df['smooth_7'] = df['metric'].rolling(window=7, min_periods=1).mean()

# Four-week smoother — irons out both weekly and monthly rhythms
df['smooth_28'] = df['metric'].rolling(window=28, min_periods=1).mean()

Period Comparisons

  • Week-over-week: Same weekday, one week apart
  • Month-over-month: Calendar month versus prior calendar month
  • Year-over-year: The gold standard for businesses with seasonal patterns
  • Same-calendar-day: Matches the exact date from the prior year

Measuring Growth

Simple rate:   (current - prior) / prior
CAGR:          (final / initial) ^ (1 / n_years) - 1
Log rate:      ln(current / prior)   # more stable for volatile series

Spotting Seasonal Cycles

  1. Visually inspect the raw series first
  2. Aggregate by day-of-week to surface weekly rhythms
  3. Aggregate by calendar month to surface annual rhythms
  4. Always use year-over-year or matched-period comparisons to separate trend from seasonality

Lightweight Forecasting Approaches

For analysts who need quick projections rather than full modeling:

  • Naive: Forecast equals the most recent observation. Serves as the minimum-viable baseline.
  • Seasonal naive: Forecast equals the value from the same period in the prior cycle.
  • Linear extrapolation: Fit a straight line to recent history. Only appropriate when the trend is clearly linear.
  • Trailing average: Use a rolling mean as the projected value.

Always express forecasts as ranges, not point estimates:

  • Good: "Next month should bring 10,000 to 12,000 registrations based on the trailing quarter"
  • Misleading: "Next month will yield exactly 11,234 registrations"

Hand off to a specialist when the pattern is non-linear, multiple seasonal cycles overlap, external drivers (ad spend, holidays) matter, or when forecast precision drives resource decisions.

Detecting and Handling Outliers

Identification Techniques

Z-score approach (assumes approximate normality):

z = (df['val'] - df['val'].mean()) / df['val'].std()
outliers = df[abs(z) > 3]  # beyond 3 standard deviations

IQR fence approach (works regardless of distribution shape):

q1 = df['val'].quantile(0.25)
q3 = df['val'].quantile(0.75)
iqr = q3 - q1
lo = q1 - 1.5 * iqr
hi = q3 + 1.5 * iqr
outliers = df[(df['val'] < lo) | (df['val'] > hi)]

Percentile cutoff approach (most straightforward):

outliers = df[(df['val'] < df['val'].quantile(0.01)) |
              (df['val'] > df['val'].quantile(0.99))]

What to Do with Outliers

Never strip outliers automatically. Follow this decision process:

  1. Diagnose: Is this a recording error, a legitimately extreme observation, or a sign of a separate population?
  2. Errors: Correct or exclude (e.g., negative ages, epoch-zero timestamps)
  3. Legitimate extremes: Retain but switch to robust summaries (median, IQR)
  4. Distinct populations: Analyze separately (e.g., enterprise accounts vs. self-serve)

Document every exclusion: "We set aside 47 records (0.3% of the dataset) with order values above $50K; these bulk enterprise transactions are covered in a separate section."

Detecting Anomalies in Time Series

  1. Establish an expected baseline (rolling average or year-ago value)
  2. Compute the residual: actual minus expected
  3. Flag residuals exceeding 2-3 standard deviations of historical residuals
  4. Differentiate one-off spikes (point anomalies) from lasting shifts (change points)

Hypothesis Testing Essentials

When It Applies

Use formal testing whenever you need to distinguish a real signal from random noise:

  • Evaluating A/B experiment results
  • Measuring the impact of a product change (before vs. after)
  • Comparing metrics across customer segments

Step-by-Step Process

  1. State the null (H0): No difference exists (default position)
  2. State the alternative (H1): A difference exists
  3. Set the significance threshold (alpha): 0.05 is standard (5% false-positive tolerance)
  4. Calculate the test statistic and p-value
  5. Decide: p < alpha means sufficient evidence to reject H0

Selecting the Right Test

QuestionAppropriate TestConditions
Two group means differ?Independent samples t-testRoughly normal, two groups
Two conversion rates differ?Proportions z-testBinary outcomes
Same entities measured twice?Paired t-testPre/post on identical subjects
Three or more group means?ANOVAMultiple variants or segments
Non-normal data, two groups?Mann-Whitney USkewed or ordinal metrics
Two categorical variables related?Chi-squared testFrequency table data

Beyond p-values: Practical Impact

A statistically significant result only means the effect is unlikely due to chance. It does not guarantee the effect matters in practice. Always accompany test results with:

  • Effect magnitude: "Variant B lifted conversion by 0.3 percentage points"
  • Confidence interval: The plausible range of the true effect
  • Business translation: Revenue, user, or efficiency implications

Sample Size Awareness

  • Small samples yield unreliable conclusions even when p-values look good
  • Proportions require roughly 30 or more events per group for baseline reliability
  • Detecting subtle effects (e.g., a 1-point conversion shift) can demand thousands of observations per arm
  • When data is limited, say so: "With 200 observations per group, effects smaller than X% would likely go undetected"

Guarding Against Statistical Pitfalls

Correlation vs. Causation

Whenever a correlation surfaces, explicitly evaluate:

  • Reverse direction: Perhaps B drives A rather than A driving B
  • Hidden third factor: Some unmeasured variable C could be behind both
  • Coincidence: Enough variable pairs will show spurious associations

Safe phrasing: "Users who adopt feature X exhibit 30% higher retention" Unsafe phrasing: "Feature X causes 30% higher retention" (requires experimental evidence)

The Multiple Testing Trap

Running many tests inflates false positives:

  • At alpha = 0.05, testing 20 metrics yields roughly one spurious hit by chance
  • If you explored numerous segments before finding the "interesting" one, acknowledge that
  • Apply Bonferroni correction (alpha / number of tests) or transparently report total tests conducted

Simpson's Paradox

An overall trend can invert when you break the data into subgroups:

  • Verify that aggregate conclusions hold within each key segment
  • Classic scenario: total conversion rises while every segment's conversion falls, because traffic shifted toward a naturally higher-converting segment

Survivorship Bias

Your dataset only contains entities that persisted long enough to be recorded:

  • Studying current users ignores everyone who already left
  • Profiling winning products overlooks the failures
  • Routinely ask: "Who is absent from this data, and would including them change the conclusion?"

Ecological Fallacy

Group-level patterns may not describe individuals:

  • "Nations with higher X tend to have higher Y" does not mean the same holds per person
  • Resist applying aggregate statistics to individual-level predictions

Illusory Precision

Overly specific numbers suggest unjustified confidence:

  • "Churn will be 4.73% next quarter" implies an accuracy that rarely exists
  • Prefer honest ranges: "Churn is likely between 4% and 6%"
  • Round to the level of certainty you actually possess

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.84%
按下载量换算49

Claude

31.76%
按下载量换算48

Cursor

20.63%
按下载量换算31

Gemini CLI

10.31%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills