data-validation-first

Data Validation First

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "data-validation-first" with this command: npx skills add aiming-lab/metaclaw/aiming-lab-metaclaw-data-validation-first

Data Validation First

Before writing any analysis code, understand the data:

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.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

graceful-error-recovery

No summary provided by upstream source.

Repository SourceNeeds Review
General

uncertainty-acknowledgment

No summary provided by upstream source.

Repository SourceNeeds Review
General

structured-progress-update

No summary provided by upstream source.

Repository SourceNeeds Review
General

plan-before-multi-step-execution

No summary provided by upstream source.

Repository SourceNeeds Review