view --main data-validation-first-skill-dlya-proverki-i-analiza-dannyh.md
data-validation-first: Скилл для проверки и анализа данных
SKILL.md
readonly
--- lines
---
name: data-validation-first
description: Use this skill before any data analysis, transformation, or modeling. Always inspect and validate the data before drawing conclusions or writing transformations.
category: data_analysis
---
# Data Validation First
Before writing any analysis code, understand the data:
```python
# Always run these first
df.shape # rows x columns
df.dtypes # column types
df.isnull().sum() # missing values per column
df.describe() # statistics for numeric columns
df.head() # sample rows
```
**Key questions:**
- Are there nulls in columns you'll join or filter on?
- Are numeric columns stored as strings? (parse_dates, astype)
- Are there unexpected duplicates (check primary key uniqueness)?
- Does the row count match your expectation from the source?
**Anti-pattern:** Running `.groupby().sum()` without first checking for nulls in the groupby key.
Инициализация мануала...
//
$ ls -R related_skills/
package.json
$ install --global
skills.sh
npx skills add https://github.com/aiming-lab/MetaClaw/tree/main/memory_data/skills/data-validation-first
$ download --local
man
[HINT] Скачивает всю директорию скилла с GitHub: SKILL.md и все связанные файлы