home / skills / pluginagentmarketplace / custom-plugin-data-analyst / foundations

foundations skill

/skills/foundations

This skill helps you master data analytics fundamentals, spreadsheet techniques, and data collection methods to improve data-driven decision making.

npx playbooks add skill pluginagentmarketplace/custom-plugin-data-analyst --skill foundations

Review the files below or copy the command above to add this skill to your agents.

Files (7)
SKILL.md
2.2 KB
---
name: data-analytics-foundations
description: Core data analytics concepts, Excel/Google Sheets fundamentals, and data collection techniques
version: "2.0.0"
sasmp_version: "2.0.0"
bonded_agent: 01-data-analytics-foundations
bond_type: PRIMARY_BOND

# Skill Configuration
config:
  atomic: true
  retry_enabled: true
  max_retries: 3
  backoff_strategy: exponential

# Parameter Validation
parameters:
  skill_level:
    type: string
    required: true
    enum: [beginner, intermediate, advanced]
    default: beginner
  focus_area:
    type: string
    required: false
    enum: [excel, sheets, data_quality, collection, all]
    default: all

# Observability
observability:
  logging_level: info
  metrics: [usage_count, success_rate, completion_time]
---

# Data Analytics Foundations Skill

## Overview
Master the foundational concepts of data analytics including data types, collection methods, spreadsheet fundamentals, and basic data manipulation techniques.

## Core Topics

### Data Fundamentals
- Understanding data types (quantitative, qualitative, structured, unstructured)
- Data sources and collection methods
- Data quality dimensions (accuracy, completeness, consistency, timeliness)

### Spreadsheet Proficiency
- Excel fundamentals and advanced formulas
- Google Sheets collaboration features
- Data cleaning and transformation in spreadsheets
- Pivot tables and data summarization

### Data Collection
- Survey design and implementation
- Web scraping basics
- API data extraction
- Database querying fundamentals

## Learning Objectives
- Understand core data analytics terminology and concepts
- Master Excel and Google Sheets for data analysis
- Implement effective data collection strategies
- Apply data quality assessment techniques

## Error Handling

| Error Type | Cause | Recovery |
|------------|-------|----------|
| Formula error | Invalid syntax | Validate formula structure |
| Data type mismatch | Wrong input format | Convert data types explicitly |
| Missing data | Incomplete dataset | Apply imputation or filtering |
| Performance issue | Large dataset | Use data sampling or optimization |

## Related Skills
- databases-sql (for advanced data querying)
- statistics (for data analysis techniques)
- visualization (for presenting insights)

Overview

This skill teaches core data analytics concepts, spreadsheet fundamentals, and practical data collection techniques for everyday analysis. It focuses on data types, quality dimensions, Excel/Google Sheets proficiency, and basic methods for acquiring data from surveys, APIs, and web sources. The goal is to equip practitioners with repeatable workflows for cleaning, summarizing, and preparing data for analysis.

How this skill works

The skill inspects common data scenarios and provides concrete steps to identify data types, assess data quality, and apply cleaning or transformation patterns in spreadsheets. It demonstrates formula strategies, pivot table workflows, and collaboration features in Google Sheets, plus basic scripts and queries for pulling data from APIs, web pages, and databases. Error-handling guidance covers formula fixes, type conversions, missing data approaches, and performance workarounds.

When to use it

  • Preparing raw datasets for analysis or reporting
  • Designing and running surveys or extracting data from APIs
  • Cleaning and transforming data inside Excel or Google Sheets
  • Summarizing large tables with pivot tables and formulas
  • Assessing data quality before modeling or visualization

Best practices

  • Start by classifying variables (quantitative vs qualitative) and expected formats
  • Document data sources, collection dates, and processing steps for reproducibility
  • Prefer explicit data-type conversions to avoid silent errors
  • Use pivot tables and grouped summaries before building models
  • Sample large datasets to prototype formulas and optimize performance

Example use cases

  • Build a clean customer transaction table from exported CSVs and an API feed
  • Design a survey, collect responses, and prepare results for pivot-table analysis
  • Automate regular pulls from a web API into Google Sheets and flag anomalies
  • Scrape basic tabular data from a public website and normalize fields for analysis
  • Troubleshoot formula errors and resolve type mismatches in a shared spreadsheet

FAQ

Which tool should I use for quick analysis: Excel or Google Sheets?

Use Excel for heavy computation and advanced formulas; choose Google Sheets for real-time collaboration and lightweight automation. Start in Sheets for shared workflows and move to Excel if you hit performance limits.

How do I handle missing or inconsistent data?

First identify patterns of missingness, then apply simple imputation, filtering, or flagging depending on the analysis. Always record the method used and test sensitivity of results to those choices.