From ds
Provides systematic checklist for exploratory data analysis on tabular datasets: structure, missing data, duplicates, distributions, correlations, target analysis. Use when starting EDA.
npx claudepluginhub andikarachman/data-science-plugin --plugin dsThis skill uses the workspace's default tool permissions.
Systematic checklist for exploratory data analysis. Work through each section in order. Check off items as you complete them.
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.
Explores datasets interactively: lists tables with stats, previews rows and schemas, shows column distributions, flags quality issues with SWD-styled charts.
Share bugs, ideas, or general feedback.
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()