Analyze data with statistics, trends, outliers, correlations, and significance tests.
The material indicates a prompt-only statistical analysis skill with no required secrets, no remote endpoints, and no stated local execution or data access capabilities, so overall risk is low. Supply-chain risk is also low-to-moderate thanks to open-source visibility, though limited adoption and unknown maintenance suggest basic source verification is still prudent.
The material explicitly states that no keys or environment variables are required, and no API keys, tokens, or other sensitive credentials are mentioned, so credential exposure and abuse risk is low.
The material lists no remote host endpoints, and the skill is classified as prompt-only; there is no indication of sending user data to external services or connecting to third-party hosts.
Based on the description and README, this skill mainly provides statistical methods and analysis guidance, with no stated ability to launch local processes, execute scripts, or invoke system capabilities; code snippets appear illustrative rather than executable requirements.
There is no indication that the skill reads or writes local files, databases, clipboard contents, or other resources; as a prompt-only skill, its data access appears limited to normal conversation context.
The source is an open-source GitHub repository, which provides auditability and is a meaningful risk-reducing factor; however, the license is unspecified, community adoption is 0 stars, and maintenance status is unknown, so repository ownership, commit history, and content integrity should still be verified.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "statistical-analysis" skill from askskill: 1. Download https://raw.githubusercontent.com/anthropics/knowledge-work-plugins/main/data/skills/statistical-analysis/SKILL.md 2. Save it as ~/.claude/skills/statistical-analysis/SKILL.md 3. Reload skills and tell me it's ready
Please analyze this survey dataset statistically: first provide descriptive statistics, then test whether the mean difference between the experiment and control groups is significant, explain the appropriate test, the meaning of the p-value, and summarize the conclusion in plain language.
An analysis report with descriptive statistics, significance test results, method notes, and a plain-language conclusion.
Please analyze this monthly sales dataset, identify outliers and unusually volatile months, explain the outlier detection method you use, and assess whether these anomalies could affect the overall trend interpretation.
A report listing outliers, detection rationale, trend interpretation, and their impact on business conclusions.
I have two columns of data: ad spend and conversion rate. Please calculate their correlation, assess the strength and direction, explain whether it is statistically significant, and remind me that correlation does not imply causation.
Outputs the correlation coefficient, significance result, relationship interpretation, and analysis limitations.
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:
…
Create stakeholder updates tailored to audience, cadence, and communication goals.
Review an analysis for methodology, accuracy, bias, and evidence support.
Generate people analytics reports on headcount, attrition, diversity, and org health.
Identify, categorize, and prioritize technical debt for smarter refactoring decisions.
Choose the right Zoom surface for a product use case with clear tradeoffs.
Turn an approved brief into social assets, copy, and a staged campaign.
Answer metric questions, analyze trends, compare segments, and draft data reports.
Quickly compute data metrics and descriptive statistics with clear analytical outputs.
Run statistical analysis, probability calculations, and data processing through natural language.
Run descriptive statistics, hypothesis tests, regression, and broader statistical analysis via FastMCP.
Profile new datasets to assess structure, quality, distributions, and analysis priorities.
Review product metrics, spot trends, and get actionable improvement recommendations.