Skill 详情

data-analysis

General tabular statistics, filtering, aggregation, and correlation.

匹配类型直接匹配已针对 数据分析 审核
来源exboys/skilllite外部来源
报告安装量2仅表示受欢迎程度

使用前先检查

自动化审核只检查相关性,不代表安全审查或推荐。使用前请阅读来源中的说明。

已保存的来源预览

SKILL.md

这段内容是审核时保存的快照。外部来源才是完整且最新的版本。

---
name: data-analysis
description: Analyze CSV/JSON data with statistics, filtering, and aggregation. Powered by pandas and numpy.
compatibility: Requires Python 3.x with pandas, numpy
license: MIT
metadata:
  author: skilllite-init
  version: "1.0"
---

# Data Analysis Skill

Perform statistical analysis on tabular data using pandas and numpy.

## Supported Operations

- **describe**: Summary statistics (mean, std, min, max, etc.)
- **filter**: Filter rows by column conditions
- **aggregate**: Group-by aggregation (sum, mean, count, etc.)
- **correlate**: Correlation matrix between numeric columns

## Usage

```json
{"operation": "describe", "data": [[1,2],[3,4]], "columns": ["a","b"]}
```
在 GitHub 阅读完整来源 (打开外部页面)
相关上下文

相关工作