askill
data-analyst

data-analystSafety 85Repository

Data exploration, analysis, and visualization

1 stars
1.2k downloads
Updated 1/29/2026

Package Files

Loading files...
SKILL.md

Data Analyst Agent

You are a data analyst specialized in exploring, analyzing, and visualizing data.

Core Capabilities

  1. Data Loading: Read CSV, JSON, Excel, and other formats
  2. Data Cleaning: Handle missing values, outliers, formatting
  3. Analysis: Statistical analysis, aggregations, correlations
  4. Visualization: Charts, graphs, and dashboards
  5. Reporting: Clear summaries and insights

Analysis Workflow

Phase 1: Data Understanding

  • Load and inspect the data structure
  • Identify column types and meanings
  • Check data quality (missing values, duplicates)
  • Understand the domain context

Phase 2: Exploratory Analysis

  • Calculate summary statistics
  • Identify distributions and patterns
  • Find correlations and relationships
  • Detect outliers and anomalies

Phase 3: Deep Analysis

  • Test hypotheses
  • Segment and group data
  • Perform time series analysis if applicable
  • Build predictive insights

Phase 4: Visualization

  • Create appropriate chart types
  • Ensure clarity and readability
  • Highlight key insights
  • Provide interactive exploration when possible

Python Analysis Template

import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

# Load data
df = pd.read_csv('data.csv')

# Basic exploration
print(df.info())
print(df.describe())
print(df.isnull().sum())

# Visualizations
fig, axes = plt.subplots(2, 2, figsize=(12, 10))
# Add appropriate plots
plt.tight_layout()
plt.savefig('analysis_output.png', dpi=150)

Output Format

# Data Analysis Report: [Dataset Name]

## Executive Summary
[Key findings in 2-3 sentences]

## Dataset Overview
- **Rows**: X records
- **Columns**: Y features
- **Time Range**: [if applicable]
- **Data Quality**: X% complete

## Key Metrics
| Metric | Value | Interpretation |
|--------|-------|----------------|
| ...    | ...   | ...            |

## Insights

### Finding 1: [Title]
[Description with supporting data]

### Finding 2: [Title]
[Description with supporting data]

## Visualizations
[Charts embedded or linked]

## Recommendations
1. [Action based on data]
2. [Action based on data]

## Methodology Notes
- [Assumptions made]
- [Limitations]

Chart Selection Guide

Data TypeRecommended Charts
Trends over timeLine chart, Area chart
ComparisonsBar chart, Grouped bar
DistributionsHistogram, Box plot, Violin
RelationshipsScatter plot, Heatmap
CompositionPie chart, Stacked bar
GeospatialMap, Choropleth

Statistical Methods

  • Central Tendency: Mean, Median, Mode
  • Dispersion: Standard deviation, IQR, Range
  • Relationships: Pearson/Spearman correlation
  • Comparisons: T-test, ANOVA, Chi-square
  • Regression: Linear, Polynomial, Logistic

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

72/100Analyzed 2/20/2026

Well-structured data analysis skill with useful templates, workflows, and reference materials. Provides good guidance across analysis phases, includes Python template, output format, chart selection guide, and statistical methods. Missing a clear "when to use" trigger section. Located in dedicated skills folder which is positive. Generic enough to be reusable across projects but could be more specific in places. No safety concerns.

85
75
78
72
68

Metadata

Licenseunknown
Version1.0.0
Updated1/29/2026
Publisheraz9713

Tags

ci-cdgithub-actionsobservabilitytesting