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

data-analysis数据分析

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

28,224

周安装

1,233

GitHub Stars

89

下载量

9,888
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/claude-office-skills/skills --skill data-analysis

简介

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。

  • 适合清洗字段、汇总数据、发现异常、生成统计口径或转成可读说明。
  • 使用时需确认数据来源、字段含义和时间范围,避免将样本当全量事实。
  • 涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。
  • 安装前建议核对仓库路径与宿主兼容性,确保运行环境支持相关依赖。

SKILL.md

Data Analysis Assistant

Analyze data in spreadsheets, uncover insights, and create compelling visualizations.

Overview

This skill helps you:

  • Understand and explore your data
  • Perform statistical analysis
  • Generate insights and recommendations
  • Create charts and visualizations
  • Write formulas and queries

How to Use

Getting Started

  1. Share your spreadsheet or data file
  2. Describe what you want to analyze
  3. Get insights, formulas, or visualizations

Analysis Types

Exploratory Analysis

"What patterns do you see in this data?"
"Give me an overview of this dataset"
"What are the key statistics?"

Specific Questions

"What was the total revenue by region?"
"Which products had the highest growth?"
"Is there a correlation between X and Y?"

Visualization Requests

"Create a chart showing sales trends"
"Make a comparison chart of Q1 vs Q2"
"Show the distribution of customer ages"

Output Formats

Data Overview

## Dataset Overview

**Rows**: 1,234
**Columns**: 15
**Date Range**: Jan 2025 - Dec 2025

### Column Summary
| Column | Type | Non-null | Unique | Sample Values |
|--------|------|----------|--------|---------------|
| date | Date | 100% | 365 | 2025-01-01 |
| revenue | Number | 98% | 890 | $1,234.56 |
| region | Text | 100% | 5 | North, South |

### Data Quality Issues
- [X] rows have missing values in [column]
- [Y] potential duplicates detected

Statistical Analysis

## Statistical Summary

### [Metric Name]
- **Mean**: X
- **Median**: Y
- **Std Dev**: Z
- **Min/Max**: A / B

### Key Findings
1. [Finding with statistical support]
2. [Finding with statistical support]

### Recommendations
- [Action based on analysis]

Insight Report

## Analysis Report: [Topic]

### Executive Summary
[2-3 sentence overview of key findings]

### Key Metrics
| Metric | Value | Change |
|--------|-------|--------|
| Total Revenue | $X | +Y% |
| Avg Order Value | $Z | -W% |

### Trends
1. **[Trend 1]**: [Description with data]
2. **[Trend 2]**: [Description with data]

### Recommendations
1. [Actionable recommendation]
2. [Actionable recommendation]

Common Analysis Workflows

Sales Analysis

1. "Show total sales by month"
2. "Which products are top performers?"
3. "What's the customer segment breakdown?"
4. "Compare this year vs last year"
5. "Forecast next quarter based on trends"

Customer Analysis

1. "What's the customer distribution by segment?"
2. "Calculate customer lifetime value"
3. "Which customers are at risk of churning?"
4. "What's the acquisition cost vs LTV ratio?"

Financial Analysis

1. "Calculate profit margins by product"
2. "What's the expense breakdown?"
3. "Show cash flow trends"
4. "Compare budget vs actual"

Formula Generation

Request Formulas

"Write a formula to calculate year-over-year growth"
"Create a VLOOKUP to match customer data"
"Make a dynamic sum based on criteria"

Formula Output

## Formula: [Purpose]

### Excel/Google Sheets

=SUMIFS(Sales[Amount], Sales[Region], "North", Sales[Date], ">="&DATE(2025,1,1))


### Explanation

- `SUMIFS`: Sums values meeting multiple criteria
- First argument: Column to sum
- Subsequent pairs: Criteria column + criteria value

### Usage

Place in cell [X] where you want the result.

Visualization Recommendations

Choose the Right Chart

Data TypeBest Chart
Trends over timeLine chart
Part of wholePie/Donut chart
ComparisonBar chart
DistributionHistogram
CorrelationScatter plot
GeographicMap chart

Chart Specifications

## Recommended Chart: [Type]

**Data Series**:
- X-axis: [Column] (e.g., Date)
- Y-axis: [Column] (e.g., Revenue)
- Series: [Column] (e.g., Region)

**Formatting**:
- Title: "[Descriptive title]"
- Colors: Use consistent color scheme
- Labels: Show values on data points

**Chart Description**:
[What this chart shows and why it's useful]

Advanced Analysis

Pivot Table Design

## Pivot Table: [Purpose]

**Rows**: [Field 1], [Field 2]
**Columns**: [Field 3]
**Values**: SUM of [Field 4], AVG of [Field 5]
**Filters**: [Field 6]

Expected Output:
| Region | Q1 | Q2 | Q3 | Q4 | Total |
|--------|----|----|----|----|-------|
| North | $X | $X | $X | $X | $X |
| South | $X | $X | $X | $X | $X |

Cohort Analysis

## Cohort Analysis

**Cohort Definition**: Customers grouped by [first purchase month]
**Metric**: [Retention rate / Revenue / etc.]
**Time Period**: [12 months]

| Cohort | M0 | M1 | M2 | M3 | ... |
|--------|-----|-----|-----|-----|-----|
| Jan 25 | 100%| 45% | 32% | 28% | ... |
| Feb 25 | 100%| 48% | 35% | 30% | ... |

Best Practices

For Better Analysis

  1. Clean data first: Handle missing values, duplicates
  2. Define metrics clearly: What exactly are you measuring?
  3. Consider context: Industry benchmarks, seasonality
  4. Validate findings: Cross-check with other data sources

For Better Visualizations

  1. Keep it simple: One main message per chart
  2. Label clearly: Title, axes, legend
  3. Use appropriate scale: Don't truncate misleadingly
  4. Consider colorblind users: Use patterns or distinct colors

Limitations

  • Cannot directly execute code on your data
  • Large datasets may need sampling
  • Complex statistical models need specialized tools
  • Real-time data requires live connections
  • Cannot guarantee 100% accuracy on OCR'd data

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.47%
按下载量换算3,408

Claude

30.4%
按下载量换算3,006

Cursor

15.78%
按下载量换算1,560

Gemini CLI

9.38%
按下载量换算927

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills