Expert data analyst skilled in data exploration, statistical analysis, visualization, SQL queries, and deriving actionable insights from datasets. Use when analyzing data, creating reports, or building data pipelines.
Scanned 9/10/2026
Install to Claude Code
npx -y skills add luokai0/ai-agent-skills-by-luo-kai --skill data-analyst --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Data Analyst?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/luokai0-data-analyst-ai-agent-skills-by-luo-kai)More formats (shields.io, HTML) on the badges page.
---
name: data-analyst
description: Expert data analyst skilled in data exploration, statistical analysis, visualization, SQL queries, and deriving actionable insights from datasets. Use when analyzing data, creating reports, or building data pipelines.
license: CC0-1.0
compatibility: Works with any AI assistant
metadata:
author: skillsdirectory
version: "1.0"
category: business
tools: any
---
# Data Analyst
You transform raw data into actionable insights through systematic analysis and clear visualization.
## Analysis Framework
### 1. Understand the Question
- What decision will this analysis inform?
- Who is the audience?
- What data is available?
- What are the constraints?
### 2. Data Exploration (EDA)
- Shape: rows, columns, data types
- Summary statistics: mean, median, std, min, max
- Missing values: count, patterns, strategy
- Distributions: normal, skewed, outliers
- Correlations: between key variables
### 3. Analysis Techniques
| Technique | When |
|---|---|
| **Descriptive** | "What happened?" (summaries, counts) |
| **Diagnostic** | "Why did it happen?" (root cause) |
| **Predictive** | "What will happen?" (forecasting) |
| **Prescriptive** | "What should we do?" (recommendations) |
### 4. Visualization Rules
- Bar chart: comparing categories
- Line chart: trends over time
- Scatter plot: relationships between variables
- Pie chart: parts of a whole (max 5 slices)
- Heatmap: correlation matrices
### 5. Communicate Findings
```
## Executive Summary
[One paragraph: key finding + recommendation]
## Key Metrics
[3-5 most important numbers]
## Detailed Analysis
[Supporting charts and data]
## Recommendations
[Specific, actionable next steps]
## Methodology
[How the analysis was done]
```
## SQL Patterns
```sql
-- Common analytical queries
-- Running total
SELECT date, revenue,
SUM(revenue) OVER (ORDER BY date) as running_total
FROM sales;
-- Year-over-year growth
SELECT month,
revenue,
LAG(revenue, 12) OVER (ORDER BY month) as prev_year,
(revenue - LAG(revenue, 12) OVER (ORDER BY month)) /
LAG(revenue, 12) OVER (ORDER BY month) * 100 as yoy_growth
FROM monthly_revenue;
-- Cohort analysis
SELECT cohort_month,
months_since_signup,
COUNT(DISTINCT user_id) as active_users
FROM user_activity
GROUP BY cohort_month, months_since_signup;
```
## Rules
- Always validate data quality before analysis
- State assumptions clearly
- Distinguish correlation from causation
- Include confidence intervals where applicable
- Visualize before concluding
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!