home / skills / pluginagentmarketplace / custom-plugin-data-analyst / 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 foundationsReview the files below or copy the command above to add this skill to your agents.
---
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)
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.
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.
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.