From ds
Provides systematic checklist for exploratory data analysis on tabular datasets: structure, missing data, duplicates, distributions, correlations, target analysis. Use when starting EDA.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ds:eda-checklistThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematic checklist for exploratory data analysis. Work through each section in order. Check off items as you complete them.
Systematic checklist for exploratory data analysis. Work through each section in order. Check off items as you complete them.
Role in ds plugin: This skill provides the systematic methodology for tabular EDA -- what to check and in what order. It is invoked by /ds:eda at step 6 (Data Quality Checks). The exploratory-data-analysis skill handles file type detection and format-specific analysis for non-tabular scientific formats. These skills are complementary: eda-checklist answers "what to check in tabular data" while exploratory-data-analysis answers "how to analyze any file format."
df.isnull().mean() and sort descendingdf.duplicated().sum()npx claudepluginhub andikarachman/data-science-plugin --plugin dsProfiles datasets for data quality issues: missing values, outliers, class imbalance, correlation problems, and schema drift. Provides detection methods and actionable recommendations.
Generates data profiles for pandas DataFrames with column stats, correlations, and missing patterns. Use for EDA and data discovery on new datasets.
Profiles tables or files (CSV, Excel, Parquet, JSON) to reveal shape, null rates, column distributions, top values, percentiles, data quality issues, and column categories.